> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cowagent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# スキルのインストール

> 統一コマンドで多様なソースからスキルをインストール

CowAgent は統一された `install` コマンドで、**Cow スキル広場、GitHub、ClawHub** および任意の URL からスキルをインストールできます。チャットでは `/skill install`、ターミナルでは `cow skill install` を使用します。

## スキル広場からインストール

スキル広場を閲覧してインストール：

```text theme={null}
/skill list --remote
/skill install pptx
```

## GitHub からインストール

リポジトリからの一括インストールとサブディレクトリ指定に対応：

```text theme={null}
/skill install larksuite/cli
/skill install https://github.com/larksuite/cli/tree/main/skills/lark-im
```

## ClawHub からインストール

```text theme={null}
/skill install clawhub:baidu-search
```

## URL からインストール

zip アーカイブと SKILL.md ファイルリンクに対応：

```text theme={null}
/skill install https://cdn.link-ai.tech/skills/pptx.zip
/skill install https://example.com/path/to/SKILL.md
```

## スキルの管理

```text theme={null}
/skill list                  # インストール済みスキルを表示
/skill info pptx             # スキルの詳細を表示
/skill enable pptx           # スキルを有効化
/skill disable pptx          # スキルを無効化
/skill uninstall pptx        # スキルをアンインストール
```

<Tip>
  上記のすべてのコマンドは、ターミナルでは `/skill` を `cow skill` に置き換えて使用できます。完全なコマンドドキュメントは[スキル管理コマンド](/ja/cli/skill)を参照してください。
</Tip>
