Multiagent setup
npx -y skills add shoji9x9/skills --skill multiagent-setupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
マルチエージェント環境(Claude Code / Codex / GitHub Copilot)向けのスキル・ルール・Hooks・ドキュメントのセットアップに必ず使用すること。スキルの作成・更新・削除、ルールの追加・管理、Hooksの設定、CLAUDE.md・AGENTS.md・.github/copilot-instructions.mdなどのドキュメントの整備・整理・分割・集約、プロジェクトのマルチエージェント初期化で参照する。加えて、知識・規約・処理を新たに追加する、またはドキュメントを整理・再配置するときに、それを skill / rule / hook / ドキュメントのどれに落とすか(rule なら paths を最小スコープに、ドキュメントなら基底ドキュメントか個別かを選ぶ)を判断する場面でも必ず参照する。
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.1 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
Multiagent Setup
Claude Code / Codex / GitHub Copilot の3エージェントが共有できるプロジェクト構造を整備するスキル。
前提
- ツール:
gh(gh skill拡張),git - 前提スキル: なし(スキル作成後の検証に
skill-creatorを使えるが任意) - MCP: なし
- シェル: bash(POSIX 互換シェル)。コマンド例(シンボリックリンク作成等)は bash 前提のため、Windows では WSL / Git Bash 等の bash 環境で実行する
- node / pnpm / python などのランタイムは不要。
基本原則
.agents/ディレクトリを実体の保管場所とし、各エージェント固有のディレクトリへはシンボリックリンクを作成する。同一ファイルを複数箇所に複製しない。- スコープはプロジェクトレベルのみ。 ユーザー設定(
~/.claude/、~/.codex/等)は対象外。
フロー
Step 1: コンポーネントの特定
ユーザーのメッセージから操作対象を推論する。
| ユーザーの意図 | コンポーネント |
|---|---|
| スキルを作成 / 追加 / 更新 / 削除 | スキル |
| ルールを作成 / 追加 / 更新 / 削除 | ルール |
| Hooks を設定 / 追加 / 更新 | Hooks |
| ドキュメントを整備 / 整理 / 分割 / 集約 / 再配置 / 初期化 / 作成 | ドキュメント |
| プロジェクトを初期化 / セットアップ | 全コンポーネント |
意図が不明または複数該当する場合は AskUserQuestion で確認する。
追加したい知識・規約・処理を skill / rule / hook / ドキュメントのどれに落とすか迷う場合は、references/component-selection.md の判断基準に従う。
Step 2: 対象エージェントの確認
プロジェクトの現状を確認する:
ls -d .agents .claude .github .codex 2>/dev/null
対象エージェントが明示されていない場合は AskUserQuestion で確認する。
Step 3: コンポーネントの実行
SKILL.md と同じディレクトリの references/ にある対応コンポーネントファイルを Read ツールで読み込み、手順に従って実行する:
- コンポーネント選択基準(どのコンポーネントか迷う場合にまず参照する判断基準) →
references/component-selection.md - スキル設定 →
references/skills.md - ルール設定 →
references/rules.md - Hooks 設定 →
references/hooks.md - ドキュメント整備 →
references/docs.md
コンポーネントファイルは SKILL.md と同じディレクトリの references/ 配下にある。インストール先に応じて以下を試みる:
~/.claude/skills/multiagent-setup/references/<file>.md.claude/skills/multiagent-setup/references/<file>.md.agents/skills/multiagent-setup/references/<file>.md
Step 4: 後処理
スキルを作成した場合: skill-creator スキルが利用可能であれば、スキルの検証・改善を提案する。利用不可の場合はスキップする。
ドキュメントを整備した場合: references/docs.md の指示に従う。
Gives 0 of the 12 instructions most project setup skills give in ~1.1k tokens
Counted across 999 of the 1,637 authors here whose files we hold, read 2026-08-06
- ask one question at a timein 29 of 999, across 28 files
- detect the package manager from lockfilesin 28 of 999, across 9 files
- present findings to the userin 25 of 999, across 4 files
- explore current repo statein 24 of 999, across 3 files
- update the agent skills block in place if it existsin 24 of 999, across 3 files
- install husky lint-staged and prettierin 23 of 999, across 4 files
- create the lintstagedrc filein 22 of 999, across 3 files
- commit all changed filesin 22 of 999, across 3 files
- run lint-staged to verify it worksin 22 of 999, across 3 files
- initialize huskyin 21 of 999, across 2 files
- create the husky pre-commit filein 21 of 999, across 2 files
- create a prettierrc file if missingin 21 of 999, across 2 files
Said here and by no other author read
- Store files in the shared agents directory
- Infer the target component from the user message
- Follow component selection criteria when unsure
- Check existing project directories before proceeding
- Confirm target agents if not explicitly specified
- Propose skill validation after creating a skill
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.