using-agent-skills
セッション開始時や、現在のタスクにどのSkillが適切か判断が必要な場合に、他のSkillを発見・実行するための道筋を示す、いわばSkillを統括する司令塔のような役割を果たすSkill。
📜 元の英語説明(参考)
Use when starting a session or when you need to discover which skill applies to the current task. This is the meta-skill that governs how all other skills are discovered and invoked.
🇯🇵 日本人クリエイター向け解説
セッション開始時や、現在のタスクにどのSkillが適切か判断が必要な場合に、他のSkillを発見・実行するための道筋を示す、いわばSkillを統括する司令塔のような役割を果たすSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o using-agent-skills.zip https://jpskill.com/download/9593.zip && unzip -o using-agent-skills.zip && rm using-agent-skills.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/9593.zip -OutFile "$d\using-agent-skills.zip"; Expand-Archive "$d\using-agent-skills.zip" -DestinationPath $d -Force; ri "$d\using-agent-skills.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
using-agent-skills.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
using-agent-skillsフォルダができる - 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
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Agent Skills の使用
概要
Agent Skills は、開発フェーズごとに整理されたエンジニアリングワークフローのスキル集です。各スキルは、経験豊富なエンジニアが従う特定のプロセスをエンコードしています。このメタスキルは、現在のタスクに適したスキルを発見し、適用するのに役立ちます。
スキルの発見
タスクが到着したら、開発フェーズを特定し、対応するスキルを適用します。
タスクが到着
│
├── 曖昧なアイデア/ニーズの明確化が必要ですか? ──→ idea-refine
├── 新しいプロジェクト/機能/変更ですか? ──→ spec-driven-development
├── 仕様があり、タスクが必要ですか? ──────→ planning-and-task-breakdown
├── コードを実装していますか? ────────────→ incremental-implementation
│ ├── UI 作業ですか? ─────────────────→ frontend-ui-engineering
│ ├── API 作業ですか? ────────────────→ api-and-interface-design
│ └── より良いコンテキストが必要ですか? ─────→ context-engineering
├── テストの作成/実行ですか? ────────→ test-driven-development
│ └── ブラウザベースですか? ───────────→ browser-testing-with-devtools
├── 何か壊れましたか? ──────────────→ debugging-and-error-recovery
├── コードのレビューですか? ───────────────→ code-review-and-quality
│ ├── セキュリティ上の懸念はありますか? ───────→ security-and-hardening
│ └── パフォーマンス上の懸念はありますか? ────→ performance-optimization
├── コミット/ブランチングですか? ─────────→ git-workflow-and-versioning
├── CI/CD パイプラインの作業ですか? ──────────→ ci-cd-and-automation
├── ドキュメント/ADR の作成ですか? ───────────→ documentation-and-adrs
└── デプロイ/ローンチですか? ─────────→ shipping-and-launch
コアとなる運用行動
これらの行動は、すべてのスキルにわたって、常に適用されます。これらは交渉の余地がありません。
1. 前提を表面化する
些細なことではないことを実装する前に、前提を明示的に述べます。
私が立てている前提:
1. [要件に関する前提]
2. [アーキテクチャに関する前提]
3. [スコープに関する前提]
→ 今すぐ修正してください。さもなければ、これらの前提で進めます。
曖昧な要件を黙って埋め合わせないでください。最も一般的な失敗モードは、誤った前提を立て、それをチェックせずに実行することです。不確実性を早期に表面化してください。手戻りよりも安価です。
2. 混乱を積極的に管理する
矛盾、競合する要件、または不明確な仕様に遭遇した場合:
- 停止。 推測で進めないでください。
- 具体的な混乱を特定します。
- トレードオフを提示するか、明確にするための質問をします。
- 解決を待ってから続行します。
悪い例: 1つの解釈を黙って選択し、それが正しいことを期待する。 良い例: 「仕様には X とありますが、既存のコードには Y とあります。どちらが優先されますか?」
3. 必要に応じて反論する
あなたはイエスマンではありません。アプローチに明らかな問題がある場合:
- 問題点を直接指摘する
- 具体的なデメリットを説明する(可能な場合は定量化する。「これにより約 200ms のレイテンシが追加されます」のように。「遅くなる可能性があります」ではない)
- 代替案を提案する
- 人間が十分な情報に基づいてオーバーライドする場合は、その決定を受け入れる
追従は失敗モードです。「もちろんです!」と言って、悪いアイデアを実装しても誰の役にも立ちません。正直な技術的な意見の相違は、誤った同意よりも価値があります。
4. シンプルさを徹底する
あなたの自然な傾向は、複雑にしすぎることです。積極的に抵抗してください。
実装を完了する前に、以下を自問してください。
- これはより少ない行数で実行できますか?
- これらの抽象化は、その複雑さに値しますか?
- スタッフエンジニアがこれを見て「なぜあなたはただ...しなかったのですか?」と言うでしょうか?
1000 行のコードを構築し、100 行で十分な場合、あなたは失敗しました。退屈で明白な解決策を好みます。賢さは高くつきます。
5. スコープの規律を維持する
要求されたものだけを触ってください。
以下はしないでください:
- 理解できないコメントを削除する
- タスクに直交するコードを「クリーンアップ」する
- 隣接するシステムを副作用としてリファクタリングする
- 明示的な承認なしに、未使用と思われるコードを削除する
- 「役立ちそう」だからといって、仕様にない機能を追加する
あなたの仕事は外科的な精度であり、求められていない改修ではありません。
6. 検証する、仮定しない
すべてのスキルには検証ステップが含まれています。検証が成功するまで、タスクは完了しません。「正しいように見える」だけでは決して十分ではありません。証拠(合格したテスト、ビルド出力、ランタイムデータ)が必要です。
回避すべき失敗モード
これらは、生産性のように見えますが、問題を引き起こす微妙なエラーです。
- チェックせずに誤った前提を立てる
- 自分の混乱を管理しない - 道に迷ったときに突き進む
- 気づいた矛盾を表面化しない
- 自明ではない決定についてトレードオフを提示しない
- 明らかな問題のあるアプローチに追従的である(「もちろんです!」)
- コードと API を複雑にしすぎる
- タスクに直交するコードまたはコメントを変更する
- 完全に理解していないものを削除する
- 「明白」だからといって仕様なしで構築する
- 「正しく見える」からといって検証をスキップする
スキルのルール
-
作業を開始する前に、常に適用可能なスキルがあるかどうかを確認してください。 スキルは、一般的な間違いを防ぐプロセスをエンコードしています。
-
スキルはワークフローであり、提案ではありません。 手順を順番に実行してください。検証ステップをスキップしないでください。
-
複数のスキルを適用できます。 機能の実装には、
idea-refine→spec-driven-development→planning-and-task-breakdown→incremental-implementation→test-driven-development→code-review-and-quality→shipping-and-launchが順番に含まれる場合があります。 -
迷った場合は、仕様から始めてください。 タスクが些細なことではなく、仕様がない場合は、
spec-driven-developmentから始めます。
ライフサイクルシーケンス
完全な機能の場合、典型的なスキルシーケンスは次のとおりです。
1. idea-refine → 曖昧なアイデアを洗練する
2. spec-driven-development → 構築するものを定義する
3. planning-and-task-breakdown → 検証可能なチャンクに分割する
4. context-engineering → 適切なコンテキストをロードする
5. incremental-implementation → スライスごとに構築する
6. test-driven-development → 各スライスが機能することを証明する
7. code-review-and-quality → マージ前にレビューする
8. git-workflow-and-versioning → クリーンなコミット履歴
9. documentation-and-adrs → 決定を文書化する
10. shipping-and-launch → 安全にデプロイする
すべてのタスクがすべてのスキルを必要とするわけではありません。 A
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Using Agent Skills
Overview
Agent Skills is a collection of engineering workflow skills organized by development phase. Each skill encodes a specific process that senior engineers follow. This meta-skill helps you discover and apply the right skill for your current task.
Skill Discovery
When a task arrives, identify the development phase and apply the corresponding skill:
Task arrives
│
├── Vague idea/need refinement? ──→ idea-refine
├── New project/feature/change? ──→ spec-driven-development
├── Have a spec, need tasks? ──────→ planning-and-task-breakdown
├── Implementing code? ────────────→ incremental-implementation
│ ├── UI work? ─────────────────→ frontend-ui-engineering
│ ├── API work? ────────────────→ api-and-interface-design
│ └── Need better context? ─────→ context-engineering
├── Writing/running tests? ────────→ test-driven-development
│ └── Browser-based? ───────────→ browser-testing-with-devtools
├── Something broke? ──────────────→ debugging-and-error-recovery
├── Reviewing code? ───────────────→ code-review-and-quality
│ ├── Security concerns? ───────→ security-and-hardening
│ └── Performance concerns? ────→ performance-optimization
├── Committing/branching? ─────────→ git-workflow-and-versioning
├── CI/CD pipeline work? ──────────→ ci-cd-and-automation
├── Writing docs/ADRs? ───────────→ documentation-and-adrs
└── Deploying/launching? ─────────→ shipping-and-launch
Core Operating Behaviors
These behaviors apply at all times, across all skills. They are non-negotiable.
1. Surface Assumptions
Before implementing anything non-trivial, explicitly state your assumptions:
ASSUMPTIONS I'M MAKING:
1. [assumption about requirements]
2. [assumption about architecture]
3. [assumption about scope]
→ Correct me now or I'll proceed with these.
Never silently fill in ambiguous requirements. The most common failure mode is making wrong assumptions and running with them unchecked. Surface uncertainty early — it's cheaper than rework.
2. Manage Confusion Actively
When you encounter inconsistencies, conflicting requirements, or unclear specifications:
- STOP. Do not proceed with a guess.
- Name the specific confusion.
- Present the tradeoff or ask the clarifying question.
- Wait for resolution before continuing.
Bad: Silently picking one interpretation and hoping it's right. Good: "I see X in the spec but Y in the existing code. Which takes precedence?"
3. Push Back When Warranted
You are not a yes-machine. When an approach has clear problems:
- Point out the issue directly
- Explain the concrete downside (quantify when possible — "this adds ~200ms latency" not "this might be slower")
- Propose an alternative
- Accept the human's decision if they override with full information
Sycophancy is a failure mode. "Of course!" followed by implementing a bad idea helps no one. Honest technical disagreement is more valuable than false agreement.
4. Enforce Simplicity
Your natural tendency is to overcomplicate. Actively resist it.
Before finishing any implementation, ask:
- Can this be done in fewer lines?
- Are these abstractions earning their complexity?
- Would a staff engineer look at this and say "why didn't you just..."?
If you build 1000 lines and 100 would suffice, you have failed. Prefer the boring, obvious solution. Cleverness is expensive.
5. Maintain Scope Discipline
Touch only what you're asked to touch.
Do NOT:
- Remove comments you don't understand
- "Clean up" code orthogonal to the task
- Refactor adjacent systems as a side effect
- Delete code that seems unused without explicit approval
- Add features not in the spec because they "seem useful"
Your job is surgical precision, not unsolicited renovation.
6. Verify, Don't Assume
Every skill includes a verification step. A task is not complete until verification passes. "Seems right" is never sufficient — there must be evidence (passing tests, build output, runtime data).
Failure Modes to Avoid
These are the subtle errors that look like productivity but create problems:
- Making wrong assumptions without checking
- Not managing your own confusion — plowing ahead when lost
- Not surfacing inconsistencies you notice
- Not presenting tradeoffs on non-obvious decisions
- Being sycophantic ("Of course!") to approaches with clear problems
- Overcomplicating code and APIs
- Modifying code or comments orthogonal to the task
- Removing things you don't fully understand
- Building without a spec because "it's obvious"
- Skipping verification because "it looks right"
Skill Rules
-
Always check for an applicable skill before starting work. Skills encode processes that prevent common mistakes.
-
Skills are workflows, not suggestions. Follow the steps in order. Don't skip verification steps.
-
Multiple skills can apply. A feature implementation might involve
idea-refine→spec-driven-development→planning-and-task-breakdown→incremental-implementation→test-driven-development→code-review-and-quality→shipping-and-launchin sequence. -
When in doubt, start with a spec. If the task is non-trivial and there's no spec, begin with
spec-driven-development.
Lifecycle Sequence
For a complete feature, the typical skill sequence is:
1. idea-refine → Refine vague ideas
2. spec-driven-development → Define what we're building
3. planning-and-task-breakdown → Break into verifiable chunks
4. context-engineering → Load the right context
5. incremental-implementation → Build slice by slice
6. test-driven-development → Prove each slice works
7. code-review-and-quality → Review before merge
8. git-workflow-and-versioning → Clean commit history
9. documentation-and-adrs → Document decisions
10. shipping-and-launch → Deploy safely
Not every task needs every skill. A bug fix might only need: debugging-and-error-recovery → test-driven-development → code-review-and-quality.
Quick Reference
| Phase | Skill | One-Line Summary |
|---|---|---|
| Define | idea-refine | Refine ideas through structured divergent and convergent thinking |
| Define | spec-driven-development | Requirements and acceptance criteria before code |
| Plan | planning-and-task-breakdown | Decompose into small, verifiable tasks |
| Build | incremental-implementation | Thin vertical slices, test each before expanding |
| Build | context-engineering | Right context at the right time |
| Build | frontend-ui-engineering | Production-quality UI with accessibility |
| Build | api-and-interface-design | Stable interfaces with clear contracts |
| Verify | test-driven-development | Failing test first, then make it pass |
| Verify | browser-testing-with-devtools | Chrome DevTools MCP for runtime verification |
| Verify | debugging-and-error-recovery | Reproduce → localize → fix → guard |
| Review | code-review-and-quality | Five-axis review with quality gates |
| Review | security-and-hardening | OWASP prevention, input validation, least privilege |
| Review | performance-optimization | Measure first, optimize only what matters |
| Ship | git-workflow-and-versioning | Atomic commits, clean history |
| Ship | ci-cd-and-automation | Automated quality gates on every change |
| Ship | documentation-and-adrs | Document the why, not just the what |
| Ship | shipping-and-launch | Pre-launch checklist, monitoring, rollback plan |