Skip to content

Instantly share code, notes, and snippets.

@hitode909
Created March 24, 2026 07:23
Show Gist options
  • Select an option

  • Save hitode909/2092fa2bd1cc201fb6afb08ff56c3a4a to your computer and use it in GitHub Desktop.

Select an option

Save hitode909/2092fa2bd1cc201fb6afb08ff56c3a4a to your computer and use it in GitHub Desktop.
cmuxスキルのインストール方法(2026-03時点)

cmuxスキルのインストール方法

前提

  • cmux公式にはスキルのインストールコマンドや自動注入機能はまだない(2026-03時点)
  • Discussion #1370でアプリバンドル、Issue #1547でレジストリ機能が要望されているが未実装

手動インストール手順

  1. cmuxリポジトリの skills/ ディレクトリからSKILL.mdを取得する
  2. 自プロジェクトの .claude/skills/ に配置する
# 例: cmux本体の操作スキルをインストール
mkdir -p .claude/skills/cmux
curl -o .claude/skills/cmux/SKILL.md \
  https://raw.githubusercontent.com/manaflow-ai/cmux/main/skills/cmux/SKILL.md

同梱されているスキル一覧

スキル 内容
skills/cmux/SKILL.md cmux本体の操作(Window/Workspace/Pane/Surfaceの4階層管理)
skills/cmux-browser/SKILL.md WKWebViewベースの組み込みブラウザ自動化
skills/cmux-markdown/SKILL.md Markdownビューワー(※v0.61.0では未実装)
skills/cmux-debug-windows/SKILL.md デバッグウィンドウ管理(開発者向け)
skills/release/SKILL.md リリースワークフロー(開発者向け)

実用上は cmuxcmux-browser の2つが主に必要。

注意点

  • cmux-markdown はSKILL.mdに記載があるが、v0.61.0では Unknown command: markdown で動かない
  • スキルはCLIの機能ではなく、SKILL.mdファイルをClaude Codeなどのエージェントに読ませる方式

サードパーティツール

  • skillport — 任意のAIエージェントにAgent Skillsを持ち込めるツール

参考

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment