mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-06-02 00:57:41 +08:00
66 lines
1.9 KiB
Plaintext
66 lines
1.9 KiB
Plaintext
---
|
|
title: Install Skills
|
|
description: Install skills from multiple sources with a single command
|
|
---
|
|
|
|
CowAgent supports installing skills from [Cow Skill Hub](https://skills.cowagent.ai/), GitHub, ClawHub, LinkAI, and any URL via a unified `install` command. Use `/skill install` in chat or `cow skill install` in the terminal.
|
|
|
|
## From the Skill Hub
|
|
|
|
Browse all available skills at [skills.cowagent.ai](https://skills.cowagent.ai/) and install by name:
|
|
|
|
```text
|
|
/skill list --remote
|
|
/skill install pptx
|
|
```
|
|
|
|
## From GitHub
|
|
|
|
Any GitHub-hosted skill can be installed directly. Supports both repository-level batch install and subdirectory-level single install:
|
|
|
|
```text
|
|
/skill install larksuite/cli
|
|
/skill install https://github.com/larksuite/cli/tree/main/skills/lark-im
|
|
```
|
|
|
|
## From ClawHub
|
|
|
|
All [ClawHub](https://clawhub.ai/) skills (40k+) can be installed with a single command:
|
|
|
|
```text
|
|
/skill install clawhub:<name>
|
|
```
|
|
|
|
## From LinkAI
|
|
|
|
All public resources on [LinkAI](https://link-ai.tech/console) (10k+ apps / workflows / plugins), as well as your own resources (apps, workflows, knowledge bases, databases, plugins), can be installed via:
|
|
|
|
```text
|
|
/skill install linkai:<code>
|
|
```
|
|
|
|
> Every resource created on the LinkAI platform has a unique `code`. Find it on each resource's page in the [console](https://link-ai.tech/console).
|
|
|
|
## From URL
|
|
|
|
Supports zip archives and SKILL.md file links:
|
|
|
|
```text
|
|
/skill install https://cdn.link-ai.tech/skills/pptx.zip
|
|
/skill install https://example.com/path/to/SKILL.md
|
|
```
|
|
|
|
## Manage Skills
|
|
|
|
```text
|
|
/skill list # View installed skills
|
|
/skill info pptx # View skill details
|
|
/skill enable pptx # Enable a skill
|
|
/skill disable pptx # Disable a skill
|
|
/skill uninstall pptx # Uninstall a skill
|
|
```
|
|
|
|
<Tip>
|
|
All commands above work in the terminal by replacing `/skill` with `cow skill`. See [Skill Management Commands](/en/cli/skill) for full documentation.
|
|
</Tip>
|