squad-agents
Build AI agent teams that collaborate on projects using Squad framework. Use when: orchestrating multiple specialized agents, building collaborative AI workflows, delegating complex tasks across agent teams.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o squad-agents.zip https://jpskill.com/download/15410.zip && unzip -o squad-agents.zip && rm squad-agents.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15410.zip -OutFile "$d\squad-agents.zip"; Expand-Archive "$d\squad-agents.zip" -DestinationPath $d -Force; ri "$d\squad-agents.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
squad-agents.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
squad-agentsフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Squad Agents
Overview
Squad gives you an AI development team through GitHub Copilot. Describe what you're building and get a team of specialists — frontend, backend, tester, lead — that live in your repo as files. Each team member runs in its own context, reads only its own knowledge, writes back what it learned, and persists across sessions.
Instructions
Installation
npm install -g @bradygaster/squad-cli
Initialize in Your Project
cd your-project
git init # if not already a repo
squad init
This creates .squad/team.md in your project root.
Authenticate GitHub
gh auth login
gh auth status # verify: "Logged in to github.com"
Launch with Copilot
copilot --agent squad --yolo
Then describe your project to generate the team:
I'm starting a new project. Set up the team.
Here's what I'm building: a recipe sharing app with React and Node.
Core Commands
| Command | Description |
|---|---|
squad init |
Scaffold Squad in the current directory |
squad upgrade |
Update Squad-owned files; never touches team state |
squad status |
Show active squad and status |
squad triage |
Watch issues and auto-triage to team members |
squad doctor |
Diagnose setup issues |
squad nap |
Compress, prune, archive context |
squad export |
Export squad to portable JSON snapshot |
squad import <file> |
Import squad from export file |
Inter-Agent Communication
Agents communicate through shared files in .squad/:
.squad/
├── team.md # Team composition and roles
├── decisions/ # Shared decision log (architecture records)
├── context/ # Per-member private context
└── handoffs/ # Task handoff documents
Decision records capture architectural choices. Handoffs pass work between agents with structured context (endpoints, schemas, notes).
Context Hygiene
squad nap # Standard compression
squad nap --deep # Aggressive pruning
squad nap --dry-run # Preview what would change
Examples
Example 1: Full-Stack Web App Team
A developer initializes Squad for a recipe-sharing application:
cd ~/projects/recipe-app
npm init -y && git init
npm install -g @bradygaster/squad-cli
squad init
copilot --agent squad --yolo
Prompt: "Build a recipe sharing app with React frontend and Express API. I need auth, CRUD for recipes, and image uploads."
Squad creates 4 team members:
- Chef (Lead) — architecture decisions, task breakdown, coordinates others
- Plater (Frontend) — React components, routing, styling with Tailwind
- Saucier (Backend) — Express routes, PostgreSQL models, auth with JWT
- Taster (Tester) — Jest unit tests, Playwright E2E tests, edge cases
Chef breaks the project into GitHub issues and assigns them. Saucier builds the API endpoints and writes a handoff: POST /api/recipes accepts {title, ingredients[], steps[], image} with Bearer auth. Plater picks up the handoff and builds the recipe form. Taster writes tests against both.
Example 2: Research and Documentation Team
A team lead uses Squad for a technical research project:
cd ~/projects/llm-benchmark-report
git init && squad init
copilot --agent squad --yolo
Prompt: "Research and write a comprehensive report on LLM inference optimization techniques. Cover quantization, KV-cache, speculative decoding, and batching strategies."
Squad creates:
- Scout (Researcher) — gathers papers, benchmarks, and implementations
- Analyst — processes benchmark data, creates comparison tables
- Scribe (Writer) — produces the report with proper citations
- Editor (Reviewer) — fact-checks claims, ensures consistency
Scout logs a decision record: "Focus on open-weight models (Llama 3, Mistral) for reproducible benchmarks." Analyst creates comparison tables showing throughput vs. latency tradeoffs. Scribe drafts each section. Editor reviews for accuracy and flags unsupported claims. The final report lives in docs/report.md with all sources cited.
Guidelines
- Start small with 2-3 team members and add specialists as the project grows
- Give each agent a well-defined scope to avoid overlapping work
- Use the
decisions/directory for architectural choices to prevent conflicts - Enable auto-triage with
squad triage --interval 5to keep work flowing - Run
squad exportregularly to create snapshots for backup and sharing - Use
squad napperiodically to keep context fresh and within limits - Run
squad doctorif GitHub integration or agent communication breaks - See GitHub Repository for full documentation