Skip to content

Claude How ToClaude How To

Claude コンセプト完全ガイド

スラッシュコマンド、サブエージェント、メモリ、MCP プロトコル、Agent Skills を、表・図・実例とともに包括的にまとめたリファレンスガイドである。


目次

  1. スラッシュコマンド
  2. サブエージェント
  3. メモリ
  4. MCP プロトコル
  5. Agent Skills
  6. プラグイン
  7. フック
  8. チェックポイントと巻き戻し
  9. 高度な機能
  10. 比較と統合

スラッシュコマンド

概要

スラッシュコマンドは、ユーザーが呼び出すショートカットであり、Claude Code が実行できる Markdown ファイルとして保存される。チーム内で頻繁に使うプロンプトやワークフローを標準化するために用いる。

アーキテクチャ

ファイル構造

コマンド配置の比較

配置場所スコープ利用可能範囲ユースケースGit 管理
.claude/commands/プロジェクト固有チームメンバーチームのワークフロー、共有標準✅ あり
~/.claude/commands/個人ユーザー個人プロジェクト横断の個人ショートカット❌ なし
サブディレクトリ名前空間付き親ディレクトリに従うカテゴリ別整理✅ あり

機能と利用シーン

機能対応
シェルスクリプト実行bash scripts/deploy.sh✅ あり
ファイル参照@path/to/file.js✅ あり
Bash 統合$(git log --oneline)✅ あり
引数/pr --verbose✅ あり
MCP コマンド/mcp__github__list_prs✅ あり

実例

例 1:コード最適化コマンド

ファイル: .claude/commands/optimize.md

markdown
---
name: Code Optimization
description: Analyze code for performance issues and suggest optimizations
tags: performance, analysis
---

# Code Optimization

Review the provided code for the following issues in order of priority:

1. **Performance bottlenecks** - identify O(n²) operations, inefficient loops
2. **Memory leaks** - find unreleased resources, circular references
3. **Algorithm improvements** - suggest better algorithms or data structures
4. **Caching opportunities** - identify repeated computations
5. **Concurrency issues** - find race conditions or threading problems

Format your response with:
- Issue severity (Critical/High/Medium/Low)
- Location in code
- Explanation
- Recommended fix with code example

使い方:

bash
# Claude Code に入力
/optimize

# Claude がプロンプトを読み込み、コード入力を待つ

例 2:プルリクエスト補助コマンド

ファイル: .claude/commands/pr.md

markdown
---
name: Prepare Pull Request
description: Clean up code, stage changes, and prepare a pull request
tags: git, workflow
---

# Pull Request Preparation Checklist

Before creating a PR, execute these steps:

1. Run linting: `prettier --write .`
2. Run tests: `npm test`
3. Review git diff: `git diff HEAD`
4. Stage changes: `git add .`
5. Create commit message following conventional commits:
   - `fix:` for bug fixes
   - `feat:` for new features
   - `docs:` for documentation
   - `refactor:` for code restructuring
   - `test:` for test additions
   - `chore:` for maintenance

6. Generate PR summary including:
   - What changed
   - Why it changed
   - Testing performed
   - Potential impacts

使い方:

bash
/pr

# Claude がチェックリストを実行し PR を準備する

例 3:階層型ドキュメント生成コマンド

ファイル: .claude/commands/docs/generate-api-docs.md

markdown
---
name: Generate API Documentation
description: Create comprehensive API documentation from source code
tags: documentation, api
---

# API Documentation Generator

Generate API documentation by:

1. Scanning all files in `/src/api/`
2. Extracting function signatures and JSDoc comments
3. Organizing by endpoint/module
4. Creating markdown with examples
5. Including request/response schemas
6. Adding error documentation

Output format:
- Markdown file in `/docs/api.md`
- Include curl examples for all endpoints
- Add TypeScript types

コマンドのライフサイクル図

ベストプラクティス

✅ 推奨❌ 非推奨
明確で動作指向の名前を付ける一度しか使わない作業をコマンド化する
description にトリガー語を記述するコマンド内に複雑なロジックを組み込む
1 タスクに焦点を絞る重複したコマンドを作る
プロジェクトコマンドはバージョン管理する機密情報をハードコードする
サブディレクトリで整理する長大なコマンド一覧を作る
シンプルで読みやすいプロンプトを書く略語や難解な表現を使う

サブエージェント

概要

サブエージェントは、独立したコンテキストウィンドウとカスタマイズされたシステムプロンプトを持つ専門 AI アシスタントである。関心の分離を保ったままタスクの委譲を可能にする。

アーキテクチャ図

サブエージェントのライフサイクル

サブエージェント設定項目

設定項目用途
name文字列エージェントの識別子code-reviewer
description文字列用途とトリガー語Comprehensive code quality analysis
toolsリスト / 文字列利用可能なツールread, grep, diff, lint_runner
system_promptMarkdown振る舞いの指示カスタムガイドライン

ツールアクセスの階層

実例

例 1:完全なサブエージェント設定

ファイル: .claude/agents/code-reviewer.md

yaml
---
name: code-reviewer
description: Comprehensive code quality and maintainability analysis
tools: read, grep, diff, lint_runner
---

# Code Reviewer Agent

You are an expert code reviewer specializing in:
- Performance optimization
- Security vulnerabilities
- Code maintainability
- Testing coverage
- Design patterns

## Review Priorities (in order)

1. **Security Issues** - Authentication, authorization, data exposure
2. **Performance Problems** - O(n²) operations, memory leaks, inefficient queries
3. **Code Quality** - Readability, naming, documentation
4. **Test Coverage** - Missing tests, edge cases
5. **Design Patterns** - SOLID principles, architecture

## Review Output Format

For each issue:
- **Severity**: Critical / High / Medium / Low
- **Category**: Security / Performance / Quality / Testing / Design
- **Location**: File path and line number
- **Issue Description**: What's wrong and why
- **Suggested Fix**: Code example
- **Impact**: How this affects the system

## Example Review

### Issue: N+1 Query Problem
- **Severity**: High
- **Category**: Performance
- **Location**: src/user-service.ts:45
- **Issue**: Loop executes database query in each iteration
- **Fix**: Use JOIN or batch query

ファイル: .claude/agents/test-engineer.md

yaml
---
name: test-engineer
description: Test strategy, coverage analysis, and automated testing
tools: read, write, bash, grep
---

# Test Engineer Agent

You are expert at:
- Writing comprehensive test suites
- Ensuring high code coverage (>80%)
- Testing edge cases and error scenarios
- Performance benchmarking
- Integration testing

## Testing Strategy

1. **Unit Tests** - Individual functions/methods
2. **Integration Tests** - Component interactions
3. **End-to-End Tests** - Complete workflows
4. **Edge Cases** - Boundary conditions
5. **Error Scenarios** - Failure handling

## Test Output Requirements

- Use Jest for JavaScript/TypeScript
- Include setup/teardown for each test
- Mock external dependencies
- Document test purpose
- Include performance assertions when relevant

## Coverage Requirements

- Minimum 80% code coverage
- 100% for critical paths
- Report missing coverage areas

ファイル: .claude/agents/documentation-writer.md

yaml
---
name: documentation-writer
description: Technical documentation, API docs, and user guides
tools: read, write, grep
---

# Documentation Writer Agent

You create:
- API documentation with examples
- User guides and tutorials
- Architecture documentation
- Changelog entries
- Code comment improvements

## Documentation Standards

1. **Clarity** - Use simple, clear language
2. **Examples** - Include practical code examples
3. **Completeness** - Cover all parameters and returns
4. **Structure** - Use consistent formatting
5. **Accuracy** - Verify against actual code

## Documentation Sections

### For APIs
- Description
- Parameters (with types)
- Returns (with types)
- Throws (possible errors)
- Examples (curl, JavaScript, Python)
- Related endpoints

### For Features
- Overview
- Prerequisites
- Step-by-step instructions
- Expected outcomes
- Troubleshooting
- Related topics

例 2:サブエージェント委譲の実例

markdown
# シナリオ:決済機能の構築

## ユーザーリクエスト
「Stripe と統合した安全な決済処理機能を構築してほしい」

## メインエージェントのフロー

1. **計画フェーズ**
   - 要件を理解する
   - 必要なタスクを特定する
   - アーキテクチャを設計する

2. **コードレビュアー サブエージェントへ委譲**
   - タスク:「決済処理の実装をセキュリティ観点でレビューせよ」
   - コンテキスト:認証、API キー、トークン処理
   - レビュー対象:SQL インジェクション、キー漏洩、HTTPS 強制

3. **テストエンジニア サブエージェントへ委譲**
   - タスク:「決済フローの包括的なテストを作成せよ」
   - コンテキスト:成功・失敗・エッジケース
   - 作成するテスト:正常決済、カード拒否、ネットワーク障害、Webhook

4. **ドキュメントライター サブエージェントへ委譲**
   - タスク:「決済 API エンドポイントを文書化せよ」
   - コンテキスト:リクエスト・レスポンスのスキーマ
   - 成果物:curl 例とエラーコード付きの API ドキュメント

5. **統合**
   - メインエージェントが全ての出力を集約する
   - 結果を統合する
   - 完成したソリューションをユーザーに返す

例 3:ツール権限のスコープ設定

制限的な設定 — 特定コマンドのみ許可

yaml
---
name: secure-reviewer
description: Security-focused code review with minimal permissions
tools: read, grep
---

# Secure Code Reviewer

Reviews code for security vulnerabilities only.

This agent:
- ✅ Reads files to analyze
- ✅ Searches for patterns
- ❌ Cannot execute code
- ❌ Cannot modify files
- ❌ Cannot run tests

This ensures the reviewer doesn't accidentally break anything.

拡張設定 — 実装用に全ツールを許可

yaml
---
name: implementation-agent
description: Full implementation capabilities for feature development
tools: read, write, bash, grep, edit, glob
---

# Implementation Agent

Builds features from specifications.

This agent:
- ✅ Reads specifications
- ✅ Writes new code files
- ✅ Runs build commands
- ✅ Searches codebase
- ✅ Edits existing files
- ✅ Finds files matching patterns

Full capabilities for independent feature development.

サブエージェントのコンテキスト管理

サブエージェントを使うべき場面

シナリオサブエージェント利用理由
多段階の複雑な機能✅ あり関心を分離し、コンテキストの汚染を防ぐ
簡単なコードレビュー❌ なしオーバーヘッドに見合わない
並列タスク実行✅ あり各サブエージェントが独立したコンテキストを持つ
専門知識が必要✅ ありカスタムシステムプロンプトを使える
長時間の解析✅ ありメインコンテキストの枯渇を防ぐ
単一タスク❌ なし不要なレイテンシを生む

Agent Teams

Agent Teams は、関連するタスクに取り組む複数のエージェントを協調動作させる。1 つずつサブエージェントへ委譲するのではなく、メインエージェントが複数のエージェント群をオーケストレーションし、中間結果を共有しつつ共通のゴールへ向かわせる。フロントエンドエージェント・バックエンドエージェント・テストエージェントが並行して動くフルスタック機能開発のような大規模タスクで有効である。


メモリ

概要

メモリは、セッションや会話をまたいで Claude にコンテキストを保持させる仕組みである。形式は 2 種類あり、claude.ai での自動合成と、Claude Code でのファイルシステムベース CLAUDE.md である。

メモリのアーキテクチャ

Claude Code のメモリ階層(7 層)

Claude Code は 7 層からメモリを読み込む。優先度の高い順に:

メモリ配置一覧

階層配置場所スコープ優先度共有用途
1. Managed Policyエンタープライズ管理者組織最高組織内全員コンプライアンス、セキュリティポリシー
2. Project./CLAUDE.mdプロジェクトチーム(Git)チーム標準、アーキテクチャ
3. Project Rules.claude/rules/*.mdプロジェクトチーム(Git)プロジェクト規約のモジュール化
4. User~/.claude/CLAUDE.md個人個人個人の好み
5. User Rules~/.claude/rules/*.md個人個人個人ルールのモジュール化
6. Local.claude/local/CLAUDE.mdローカル共有しないマシン固有設定
7. Auto Memory自動セッション最低個人学習された好み・パターン

Auto Memory

Auto Memory は、セッション中に観察されたユーザーの好みやパターンを自動的に取り込む。Claude はやり取りから学習し、次のような情報を覚える:

  • コーディングスタイルの好み
  • ユーザーがよく行う訂正
  • フレームワーク・ツールの選択
  • コミュニケーションスタイルの好み

Auto Memory はバックグラウンドで動き、手動の設定は不要である。

メモリ更新のライフサイクル

実例

例 1:プロジェクトメモリの構造

ファイル: ./CLAUDE.md

markdown
# Project Configuration

## Project Overview
- **Name**: E-commerce Platform
- **Tech Stack**: Node.js, PostgreSQL, React 18, Docker
- **Team Size**: 5 developers
- **Deadline**: Q4 2025

## Architecture
@docs/architecture.md
@docs/api-standards.md
@docs/database-schema.md

## Development Standards

### Code Style
- Use Prettier for formatting
- Use ESLint with airbnb config
- Maximum line length: 100 characters
- Use 2-space indentation

### Naming Conventions
- **Files**: kebab-case (user-controller.js)
- **Classes**: PascalCase (UserService)
- **Functions/Variables**: camelCase (getUserById)
- **Constants**: UPPER_SNAKE_CASE (API_BASE_URL)
- **Database Tables**: snake_case (user_accounts)

### Git Workflow
- Branch names: `feature/description` or `fix/description`
- Commit messages: Follow conventional commits
- PR required before merge
- All CI/CD checks must pass
- Minimum 1 approval required

### Testing Requirements
- Minimum 80% code coverage
- All critical paths must have tests
- Use Jest for unit tests
- Use Cypress for E2E tests
- Test filenames: `*.test.ts` or `*.spec.ts`

### API Standards
- RESTful endpoints only
- JSON request/response
- Use HTTP status codes correctly
- Version API endpoints: `/api/v1/`
- Document all endpoints with examples

### Database
- Use migrations for schema changes
- Never hardcode credentials
- Use connection pooling
- Enable query logging in development
- Regular backups required

### Deployment
- Docker-based deployment
- Kubernetes orchestration
- Blue-green deployment strategy
- Automatic rollback on failure
- Database migrations run before deploy

## Common Commands

| Command | Purpose |
|---------|---------|
| `npm run dev` | Start development server |
| `npm test` | Run test suite |
| `npm run lint` | Check code style |
| `npm run build` | Build for production |
| `npm run migrate` | Run database migrations |

## Team Contacts
- Tech Lead: Sarah Chen (@sarah.chen)
- Product Manager: Mike Johnson (@mike.j)
- DevOps: Alex Kim (@alex.k)

## Known Issues & Workarounds
- PostgreSQL connection pooling limited to 20 during peak hours
- Workaround: Implement query queuing
- Safari 14 compatibility issues with async generators
- Workaround: Use Babel transpiler

## Related Projects
- Analytics Dashboard: `/projects/analytics`
- Mobile App: `/projects/mobile`
- Admin Panel: `/projects/admin`

例 2:ディレクトリ別メモリ

ファイル: ./src/api/CLAUDE.md

markdown
# API Module Standards

This file overrides root CLAUDE.md for everything in /src/api/

## API-Specific Standards

### Request Validation
- Use Zod for schema validation
- Always validate input
- Return 400 with validation errors
- Include field-level error details

### Authentication
- All endpoints require JWT token
- Token in Authorization header
- Token expires after 24 hours
- Implement refresh token mechanism

### Response Format

All responses must follow this structure:

```json
{
  "success": true,
  "data": { /* actual data */ },
  "timestamp": "2025-11-06T10:30:00Z",
  "version": "1.0"
}
```

### Error responses:
```json
{
  "success": false,
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "User message",
    "details": { /* field errors */ }
  },
  "timestamp": "2025-11-06T10:30:00Z"
}
```

### Pagination
- Use cursor-based pagination (not offset)
- Include `hasMore` boolean
- Limit max page size to 100
- Default page size: 20

### Rate Limiting
- 1000 requests per hour for authenticated users
- 100 requests per hour for public endpoints
- Return 429 when exceeded
- Include retry-after header

### Caching
- Use Redis for session caching
- Cache duration: 5 minutes default
- Invalidate on write operations
- Tag cache keys with resource type

例 3:個人メモリ

ファイル: ~/.claude/CLAUDE.md

markdown
# My Development Preferences

## About Me
- **Experience Level**: 8 years full-stack development
- **Preferred Languages**: TypeScript, Python
- **Communication Style**: Direct, with examples
- **Learning Style**: Visual diagrams with code

## Code Preferences

### Error Handling
I prefer explicit error handling with try-catch blocks and meaningful error messages.
Avoid generic errors. Always log errors for debugging.

### Comments
Use comments for WHY, not WHAT. Code should be self-documenting.
Comments should explain business logic or non-obvious decisions.

### Testing
I prefer TDD (test-driven development).
Write tests first, then implementation.
Focus on behavior, not implementation details.

### Architecture
I prefer modular, loosely-coupled design.
Use dependency injection for testability.
Separate concerns (Controllers, Services, Repositories).

## Debugging Preferences
- Use console.log with prefix: `[DEBUG]`
- Include context: function name, relevant variables
- Use stack traces when available
- Always include timestamps in logs

## Communication
- Explain complex concepts with diagrams
- Show concrete examples before explaining theory
- Include before/after code snippets
- Summarize key points at the end

## Project Organization
I organize my projects as:
```
project/
  ├── src/
  │   ├── api/
  │   ├── services/
  │   ├── models/
  │   └── utils/
  ├── tests/
  ├── docs/
  └── docker/
```

## Tooling
- **IDE**: VS Code with vim keybindings
- **Terminal**: Zsh with Oh-My-Zsh
- **Format**: Prettier (100 char line length)
- **Linter**: ESLint with airbnb config
- **Test Framework**: Jest with React Testing Library

例 4:セッション中のメモリ更新

セッション中のやり取り:

markdown
User: Remember that I prefer using React hooks instead of class components
     for all new components.

Claude: I'm adding that to your memory. Which memory file should this go in?
        1. Project memory (./CLAUDE.md)
        2. Personal memory (~/.claude/CLAUDE.md)

User: Project memory

Claude: ✅ Memory saved!

Added to ./CLAUDE.md:
---

### Component Development
- Use functional components with React Hooks
- Prefer hooks over class components
- Custom hooks for reusable logic
- Use useCallback for event handlers
- Use useMemo for expensive computations

Claude Web / Desktop でのメモリ

メモリ合成のタイムライン

メモリ要約の例:

markdown
## Claude's Memory of User

### Professional Background
- Senior full-stack developer with 8 years experience
- Focus on TypeScript/Node.js backends and React frontends
- Active open source contributor
- Interested in AI and machine learning

### Project Context
- Currently building e-commerce platform
- Tech stack: Node.js, PostgreSQL, React 18, Docker
- Working with team of 5 developers
- Using CI/CD and blue-green deployments

### Communication Preferences
- Prefers direct, concise explanations
- Likes visual diagrams and examples
- Appreciates code snippets
- Explains business logic in comments

### Current Goals
- Improve API performance
- Increase test coverage to 90%
- Implement caching strategy
- Document architecture

メモリ機能の比較

機能Claude Web / DesktopClaude Code(CLAUDE.md)
自動合成✅ 24 時間ごと❌ 手動
プロジェクト横断✅ 共有❌ プロジェクト固有
チームアクセス✅ 共有プロジェクト✅ Git 管理
検索可能✅ 標準機能/memory 経由
編集可能✅ チャット内✅ ファイル直接編集
インポート / エクスポート✅ 可✅ コピー & ペースト
永続性✅ 24 時間以上✅ 無期限

MCP プロトコル

概要

MCP(Model Context Protocol)は、Claude が外部ツール・API・リアルタイムデータソースへアクセスするための標準化された方式である。メモリと違い、MCP は変化するデータへのライブアクセスを提供する。

MCP のアーキテクチャ

MCP のエコシステム

MCP のセットアップ手順

利用可能な MCP サーバー一覧

MCP サーバー用途主なツール認証リアルタイム
Filesystemファイル操作read, write, deleteOS 権限✅ あり
GitHubリポジトリ管理list_prs, create_issue, pushOAuth✅ あり
Slackチームコミュニケーションsend_message, list_channelsトークン✅ あり
DatabaseSQL クエリquery, insert, update認証情報✅ あり
Google Docsドキュメントアクセスread, write, shareOAuth✅ あり
Asanaプロジェクト管理create_task, update_statusAPI キー✅ あり
Stripe決済データlist_charges, create_invoiceAPI キー✅ あり
Memory永続メモリstore, retrieve, deleteローカル❌ なし

実例

例 1:GitHub MCP の設定

ファイル: .mcp.json(プロジェクトスコープ)または ~/.claude.json(ユーザースコープ)

json
{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": ["@modelcontextprotocol/server-github"],
      "env": {
        "GITHUB_TOKEN": "${GITHUB_TOKEN}"
      }
    }
  }
}

利用可能な GitHub MCP ツール:

markdown
# GitHub MCP Tools

## Pull Request Management
- `list_prs` - List all PRs in repository
- `get_pr` - Get PR details including diff
- `create_pr` - Create new PR
- `update_pr` - Update PR description/title
- `merge_pr` - Merge PR to main branch
- `review_pr` - Add review comments

Example request:
```
/mcp__github__get_pr 456

# Returns:
Title: Add dark mode support
Author: @alice
Description: Implements dark theme using CSS variables
Status: OPEN
Reviewers: @bob, @charlie
```

## Issue Management
- `list_issues` - List all issues
- `get_issue` - Get issue details
- `create_issue` - Create new issue
- `close_issue` - Close issue
- `add_comment` - Add comment to issue

## Repository Information
- `get_repo_info` - Repository details
- `list_files` - File tree structure
- `get_file_content` - Read file contents
- `search_code` - Search across codebase

## Commit Operations
- `list_commits` - Commit history
- `get_commit` - Specific commit details
- `create_commit` - Create new commit

例 2:Database MCP の設定

設定:

json
{
  "mcpServers": {
    "database": {
      "command": "npx",
      "args": ["@modelcontextprotocol/server-database"],
      "env": {
        "DATABASE_URL": "postgresql://user:pass@localhost/mydb"
      }
    }
  }
}

利用例:

markdown
User: Fetch all users with more than 10 orders

Claude: I'll query your database to find that information.

# Using MCP database tool:
SELECT u.*, COUNT(o.id) as order_count
FROM users u
LEFT JOIN orders o ON u.id = o.user_id
GROUP BY u.id
HAVING COUNT(o.id) > 10
ORDER BY order_count DESC;

# Results:
- Alice: 15 orders
- Bob: 12 orders
- Charlie: 11 orders

例 3:複数 MCP を組み合わせたワークフロー

シナリオ:日次レポートの生成

markdown
# Daily Report Workflow using Multiple MCPs

## Setup
1. GitHub MCP - fetch PR metrics
2. Database MCP - query sales data
3. Slack MCP - post report
4. Filesystem MCP - save report

## Workflow

### Step 1: Fetch GitHub Data
/mcp__github__list_prs completed:true last:7days

Output:
- Total PRs: 42
- Average merge time: 2.3 hours
- Review turnaround: 1.1 hours

### Step 2: Query Database
SELECT COUNT(*) as sales, SUM(amount) as revenue
FROM orders
WHERE created_at > NOW() - INTERVAL '1 day'

Output:
- Sales: 247
- Revenue: $12,450

### Step 3: Generate Report
Combine data into HTML report

### Step 4: Save to Filesystem
Write report.html to /reports/

### Step 5: Post to Slack
Send summary to #daily-reports channel

Final Output:
✅ Report generated and posted
📊 47 PRs merged this week
💰 $12,450 in daily sales

例 4:Filesystem MCP の操作

設定:

json
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["@modelcontextprotocol/server-filesystem", "/home/user/projects"]
    }
  }
}

利用可能な操作:

操作コマンド用途
ファイル一覧ls ~/projectsディレクトリ内容を表示
ファイル読み込みcat src/main.ts内容を読む
ファイル作成create docs/api.md新規ファイル作成
ファイル編集edit src/app.tsファイルを変更
検索grep "async function"ファイル内検索
削除rm old-file.jsファイル削除

MCP vs メモリ:判断マトリクス

リクエスト・レスポンスのパターン


Agent Skills

概要

Agent Skills は、命令・スクリプト・リソースをフォルダに同梱した、再利用可能でモデルが自律的に呼び出す能力である。Claude は関連するスキルを自動検出して利用する。

スキルのアーキテクチャ

スキルの読み込み手順

スキルの種類と配置

種類配置場所スコープ共有同期用途
プリビルト組み込みグローバル全ユーザー自動ドキュメント生成
個人~/.claude/skills/個人なし手動個人の自動化
プロジェクト.claude/skills/チームありGitチーム標準
プラグインプラグイン経由状況による状況による自動統合機能

プリビルトスキル

同梱スキル

Claude Code には標準で 5 つの同梱スキルが含まれる:

スキルコマンド用途
Simplify/simplify複雑なコードや説明を単純化
Batch/batch複数ファイル・項目に対する一括操作
Debug/debug根本原因分析を伴う体系的デバッグ
Loop/loopタイマーで定期実行
Claude API/claude-apiAnthropic API への直接アクセス

これらの同梱スキルは常に利用可能であり、インストールや設定は不要である。

実例

例 1:カスタムコードレビュースキル

ディレクトリ構成:

~/.claude/skills/code-review/
├── SKILL.md
├── templates/
│   ├── review-checklist.md
│   └── finding-template.md
└── scripts/
    ├── analyze-metrics.py
    └── compare-complexity.py

ファイル: ~/.claude/skills/code-review/SKILL.md

yaml
---
name: Code Review Specialist
description: Comprehensive code review with security, performance, and quality analysis
version: "1.0.0"
tags:
  - code-review
  - quality
  - security
when_to_use: When users ask to review code, analyze code quality, or evaluate pull requests
effort: high
shell: bash
---

# Code Review Skill

This skill provides comprehensive code review capabilities focusing on:

1. **Security Analysis**
   - Authentication/authorization issues
   - Data exposure risks
   - Injection vulnerabilities
   - Cryptographic weaknesses
   - Sensitive data logging

2. **Performance Review**
   - Algorithm efficiency (Big O analysis)
   - Memory optimization
   - Database query optimization
   - Caching opportunities
   - Concurrency issues

3. **Code Quality**
   - SOLID principles
   - Design patterns
   - Naming conventions
   - Documentation
   - Test coverage

4. **Maintainability**
   - Code readability
   - Function size (should be < 50 lines)
   - Cyclomatic complexity
   - Dependency management
   - Type safety

## Review Template

For each piece of code reviewed, provide:

### Summary
- Overall quality assessment (1-5)
- Key findings count
- Recommended priority areas

### Critical Issues (if any)
- **Issue**: Clear description
- **Location**: File and line number
- **Impact**: Why this matters
- **Severity**: Critical/High/Medium
- **Fix**: Code example

### Findings by Category

#### Security (if issues found)
List security vulnerabilities with examples

#### Performance (if issues found)
List performance problems with complexity analysis

#### Quality (if issues found)
List code quality issues with refactoring suggestions

#### Maintainability (if issues found)
List maintainability problems with improvements

Python スクリプト:analyze-metrics.py

python
#!/usr/bin/env python3
import re
import sys

def analyze_code_metrics(code):
    """コードの一般的なメトリクスを解析する。"""

    # 関数数をカウント
    functions = len(re.findall(r'^def\s+\w+', code, re.MULTILINE))

    # クラス数をカウント
    classes = len(re.findall(r'^class\s+\w+', code, re.MULTILINE))

    # 平均行長
    lines = code.split('\n')
    avg_length = sum(len(l) for l in lines) / len(lines) if lines else 0

    # 複雑度の概算
    complexity = len(re.findall(r'\b(if|elif|else|for|while|and|or)\b', code))

    return {
        'functions': functions,
        'classes': classes,
        'avg_line_length': avg_length,
        'complexity_score': complexity
    }

if __name__ == '__main__':
    with open(sys.argv[1], 'r') as f:
        code = f.read()
    metrics = analyze_code_metrics(code)
    for key, value in metrics.items():
        print(f"{key}: {value:.2f}")

Python スクリプト:compare-complexity.py

python
#!/usr/bin/env python3
"""
変更前後でコードのサイクロマティック複雑度を比較する。
リファクタリングが実際に構造を単純化しているか確認するのに役立つ。
"""

import re
import sys
from typing import Dict, Tuple

class ComplexityAnalyzer:
    """コードの複雑度メトリクスを解析する。"""

    def __init__(self, code: str):
        self.code = code
        self.lines = code.split('\n')

    def calculate_cyclomatic_complexity(self) -> int:
        """
        McCabe の方式でサイクロマティック複雑度を計算する。
        判定点をカウント:if, elif, else, for, while, except, and, or
        """
        complexity = 1  # 基本複雑度

        # 判定点をカウント
        decision_patterns = [
            r'\bif\b',
            r'\belif\b',
            r'\bfor\b',
            r'\bwhile\b',
            r'\bexcept\b',
            r'\band\b(?!$)',
            r'\bor\b(?!$)'
        ]

        for pattern in decision_patterns:
            matches = re.findall(pattern, self.code)
            complexity += len(matches)

        return complexity

    def calculate_cognitive_complexity(self) -> int:
        """
        認知的複雑度を計算する — 理解の難しさ。
        ネストの深さと制御フローに基づく。
        """
        cognitive = 0
        nesting_depth = 0

        for line in self.lines:
            # ネスト深度を追跡
            if re.search(r'^\s*(if|for|while|def|class|try)\b', line):
                nesting_depth += 1
                cognitive += nesting_depth
            elif re.search(r'^\s*(elif|else|except|finally)\b', line):
                cognitive += nesting_depth

            # インデント解除でネストを減らす
            if line and not line[0].isspace():
                nesting_depth = 0

        return cognitive

    def calculate_maintainability_index(self) -> float:
        """
        保守性指数(0〜100)。
        > 85: 優秀
        > 65: 良好
        > 50: 普通
        < 50: 不良
        """
        lines = len(self.lines)
        cyclomatic = self.calculate_cyclomatic_complexity()
        cognitive = self.calculate_cognitive_complexity()

        # 簡略化した MI 計算
        mi = 171 - 5.2 * (cyclomatic / lines) - 0.23 * (cognitive) - 16.2 * (lines / 1000)

        return max(0, min(100, mi))

    def get_complexity_report(self) -> Dict:
        """包括的な複雑度レポートを生成する。"""
        return {
            'cyclomatic_complexity': self.calculate_cyclomatic_complexity(),
            'cognitive_complexity': self.calculate_cognitive_complexity(),
            'maintainability_index': round(self.calculate_maintainability_index(), 2),
            'lines_of_code': len(self.lines),
            'avg_line_length': round(sum(len(l) for l in self.lines) / len(self.lines), 2) if self.lines else 0
        }


def compare_files(before_file: str, after_file: str) -> None:
    """2 つのコードバージョンの複雑度メトリクスを比較する。"""

    with open(before_file, 'r') as f:
        before_code = f.read()

    with open(after_file, 'r') as f:
        after_code = f.read()

    before_analyzer = ComplexityAnalyzer(before_code)
    after_analyzer = ComplexityAnalyzer(after_code)

    before_metrics = before_analyzer.get_complexity_report()
    after_metrics = after_analyzer.get_complexity_report()

    print("=" * 60)
    print("CODE COMPLEXITY COMPARISON")
    print("=" * 60)

    print("\nBEFORE:")
    print(f"  Cyclomatic Complexity:    {before_metrics['cyclomatic_complexity']}")
    print(f"  Cognitive Complexity:     {before_metrics['cognitive_complexity']}")
    print(f"  Maintainability Index:    {before_metrics['maintainability_index']}")
    print(f"  Lines of Code:            {before_metrics['lines_of_code']}")
    print(f"  Avg Line Length:          {before_metrics['avg_line_length']}")

    print("\nAFTER:")
    print(f"  Cyclomatic Complexity:    {after_metrics['cyclomatic_complexity']}")
    print(f"  Cognitive Complexity:     {after_metrics['cognitive_complexity']}")
    print(f"  Maintainability Index:    {after_metrics['maintainability_index']}")
    print(f"  Lines of Code:            {after_metrics['lines_of_code']}")
    print(f"  Avg Line Length:          {after_metrics['avg_line_length']}")

    print("\nCHANGES:")
    cyclomatic_change = after_metrics['cyclomatic_complexity'] - before_metrics['cyclomatic_complexity']
    cognitive_change = after_metrics['cognitive_complexity'] - before_metrics['cognitive_complexity']
    mi_change = after_metrics['maintainability_index'] - before_metrics['maintainability_index']
    loc_change = after_metrics['lines_of_code'] - before_metrics['lines_of_code']

    print(f"  Cyclomatic Complexity:    {cyclomatic_change:+d}")
    print(f"  Cognitive Complexity:     {cognitive_change:+d}")
    print(f"  Maintainability Index:    {mi_change:+.2f}")
    print(f"  Lines of Code:            {loc_change:+d}")

    print("\nASSESSMENT:")
    if mi_change > 0:
        print("  ✅ Code is MORE maintainable")
    elif mi_change < 0:
        print("  ⚠️  Code is LESS maintainable")
    else:
        print("  ➡️  Maintainability unchanged")

    if cyclomatic_change < 0:
        print("  ✅ Complexity DECREASED")
    elif cyclomatic_change > 0:
        print("  ⚠️  Complexity INCREASED")
    else:
        print("  ➡️  Complexity unchanged")

    print("=" * 60)


if __name__ == '__main__':
    if len(sys.argv) != 3:
        print("Usage: python compare-complexity.py <before_file> <after_file>")
        sys.exit(1)

    compare_files(sys.argv[1], sys.argv[2])

テンプレート:review-checklist.md

markdown
# Code Review Checklist

## Security Checklist
- [ ] No hardcoded credentials or secrets
- [ ] Input validation on all user inputs
- [ ] SQL injection prevention (parameterized queries)
- [ ] CSRF protection on state-changing operations
- [ ] XSS prevention with proper escaping
- [ ] Authentication checks on protected endpoints
- [ ] Authorization checks on resources
- [ ] Secure password hashing (bcrypt, argon2)
- [ ] No sensitive data in logs
- [ ] HTTPS enforced

## Performance Checklist
- [ ] No N+1 queries
- [ ] Appropriate use of indexes
- [ ] Caching implemented where beneficial
- [ ] No blocking operations on main thread
- [ ] Async/await used correctly
- [ ] Large datasets paginated
- [ ] Database connections pooled
- [ ] Regular expressions optimized
- [ ] No unnecessary object creation
- [ ] Memory leaks prevented

## Quality Checklist
- [ ] Functions < 50 lines
- [ ] Clear variable naming
- [ ] No duplicate code
- [ ] Proper error handling
- [ ] Comments explain WHY, not WHAT
- [ ] No console.logs in production
- [ ] Type checking (TypeScript/JSDoc)
- [ ] SOLID principles followed
- [ ] Design patterns applied correctly
- [ ] Self-documenting code

## Testing Checklist
- [ ] Unit tests written
- [ ] Edge cases covered
- [ ] Error scenarios tested
- [ ] Integration tests present
- [ ] Coverage > 80%
- [ ] No flaky tests
- [ ] Mock external dependencies
- [ ] Clear test names

テンプレート:finding-template.md

markdown
# Code Review Finding Template

Use this template when documenting each issue found during code review.

---

## Issue: [TITLE]

### Severity
- [ ] Critical (blocks deployment)
- [ ] High (should fix before merge)
- [ ] Medium (should fix soon)
- [ ] Low (nice to have)

### Category
- [ ] Security
- [ ] Performance
- [ ] Code Quality
- [ ] Maintainability
- [ ] Testing
- [ ] Design Pattern
- [ ] Documentation

### Location
**File:** `src/components/UserCard.tsx`

**Lines:** 45-52

**Function/Method:** `renderUserDetails()`

### Issue Description

**What:** Describe what the issue is.

**Why it matters:** Explain the impact and why this needs to be fixed.

**Current behavior:** Show the problematic code or behavior.

**Expected behavior:** Describe what should happen instead.

### Code Example

#### Current (Problematic)

```typescript
// N+1 クエリ問題を示す
const users = fetchUsers();
users.forEach(user => {
  const posts = fetchUserPosts(user.id); // ユーザーごとにクエリ!
  renderUserPosts(posts);
});
```

#### Suggested Fix

```typescript
// JOIN クエリで最適化
const usersWithPosts = fetchUsersWithPosts();
usersWithPosts.forEach(({ user, posts }) => {
  renderUserPosts(posts);
});
```

### Impact Analysis

| Aspect | Impact | Severity |
|--------|--------|----------|
| Performance | 100+ queries for 20 users | High |
| User Experience | Slow page load | High |
| Scalability | Breaks at scale | Critical |
| Maintainability | Hard to debug | Medium |

### Related Issues

- Similar issue in `AdminUserList.tsx` line 120
- Related PR: #456
- Related issue: #789

### Additional Resources

- [N+1 Query Problem](https://en.wikipedia.org/wiki/N%2B1_problem)
- [Database Join Documentation](https://docs.example.com/joins)

### Reviewer Notes

- This is a common pattern in this codebase
- Consider adding this to the code style guide
- Might be worth creating a helper function

### Author Response (for feedback)

*To be filled by the code author:*

- [ ] Fix implemented in commit: `abc123`
- [ ] Fix status: Complete / In Progress / Needs Discussion
- [ ] Questions or concerns: (describe)

---

## Finding Statistics (for Reviewer)

When reviewing multiple findings, track:

- **Total Issues Found:** X
- **Critical:** X
- **High:** X
- **Medium:** X
- **Low:** X

**Recommendation:** ✅ Approve / ⚠️ Request Changes / 🔄 Needs Discussion

**Overall Code Quality:** 1-5 stars

利用例

markdown
User: Review this React component code

Claude: I'll conduct a comprehensive code review using my Code Review Skill.

[Loads SKILL.md]
[Analyzes code against checklist]
[Runs Python metrics script]
[Applies templates]

## Code Review Results

### Summary
Quality Score: 3.5/5
Key Findings: 7 items
Priority Areas: Performance optimization, error handling

### Critical Issues: 1

**Issue**: N+1 Query Problem
**Location**: UserComponent.tsx, lines 45-52
**Impact**: Renders 100+ database queries for list of 20 users
**Severity**: High
**Fix**:
```javascript
// Before: N+1 queries
const users = fetchUsers();
users.forEach(user => fetchUserPosts(user.id)); // 20+ queries

// After: Single query with JOIN
const users = fetchUsersWithPosts(); // 1 query
```

### Performance Findings
- Missing pagination on large lists
- Recommendation: Use React.memo() for items
- Database query: Could be optimized with index

### Quality Findings
- Function in line 20 is 127 lines (max: 50)
- Missing error boundary
- Props should have TypeScript types

例 2:ブランドボイス スキル

ディレクトリ構成:

.claude/skills/brand-voice/
├── SKILL.md
├── brand-guidelines.md
├── tone-examples.md
└── templates/
    ├── email-template.txt
    ├── social-post-template.txt
    └── blog-post-template.md

ファイル: .claude/skills/brand-voice/SKILL.md

yaml
---
name: Brand Voice Consistency
description: Ensure all communication matches brand voice and tone guidelines
tags:
  - brand
  - writing
  - consistency
when_to_use: When creating marketing copy, customer communications, or public-facing content
---

# Brand Voice Skill

## Overview
This skill ensures all communications maintain consistent brand voice, tone, and messaging.

## Brand Identity

### Mission
Help teams automate their development workflows with AI

### Values
- **Simplicity**: Make complex things simple
- **Reliability**: Rock-solid execution
- **Empowerment**: Enable human creativity

### Tone of Voice
- **Friendly but professional** - approachable without being casual
- **Clear and concise** - avoid jargon, explain technical concepts simply
- **Confident** - we know what we're doing
- **Empathetic** - understand user needs and pain points

## Writing Guidelines

### Do's ✅
- Use "you" when addressing readers
- Use active voice: "Claude generates reports" not "Reports are generated by Claude"
- Start with value proposition
- Use concrete examples
- Keep sentences under 20 words
- Use lists for clarity
- Include calls-to-action

### Don'ts ❌
- Don't use corporate jargon
- Don't patronize or oversimplify
- Don't use "we believe" or "we think"
- Don't use ALL CAPS except for emphasis
- Don't create walls of text
- Don't assume technical knowledge

## Vocabulary

### ✅ Preferred Terms
- Claude (not "the Claude AI")
- Code generation (not "auto-coding")
- Agent (not "bot")
- Streamline (not "revolutionize")
- Integrate (not "synergize")

### ❌ Avoid Terms
- "Cutting-edge" (overused)
- "Game-changer" (vague)
- "Leverage" (corporate-speak)
- "Utilize" (use "use")
- "Paradigm shift" (unclear)

✅ 良い例

"Claude automates your code review process. Instead of manually checking each PR, Claude reviews security, performance, and quality—saving your team hours every week."

なぜ機能するか:明確な価値、具体的なベネフィット、行動指向

❌ 悪い例

"Claude leverages cutting-edge AI to provide comprehensive software development solutions."

なぜダメか:曖昧、企業的ジャーゴン、具体的な価値がない

テンプレート:メール

Subject: [Clear, benefit-driven subject]

Hi [Name],

[Opening: What's the value for them]

[Body: How it works / What they'll get]

[Specific example or benefit]

[Call to action: Clear next step]

Best regards,
[Name]

テンプレート:SNS

[Hook: Grab attention in first line]
[2-3 lines: Value or interesting fact]
[Call to action: Link, question, or engagement]
[Emoji: 1-2 max for visual interest]

ファイル:tone-examples.md

Exciting announcement:
"Save 8 hours per week on code reviews. Claude reviews your PRs automatically."

Empathetic support:
"We know deployments can be stressful. Claude handles testing so you don't have to worry."

Confident product feature:
"Claude doesn't just suggest code. It understands your architecture and maintains consistency."

Educational blog post:
"Let's explore how agents improve code review workflows. Here's what we learned..."

例 3:ドキュメント生成スキル

ファイル: .claude/skills/doc-generator/SKILL.md

yaml
---
name: API Documentation Generator
description: Generate comprehensive, accurate API documentation from source code
version: "1.0.0"
tags:
  - documentation
  - api
  - automation
when_to_use: When creating or updating API documentation
---

# API Documentation Generator Skill

## Generates

- OpenAPI/Swagger specifications
- API endpoint documentation
- SDK usage examples
- Integration guides
- Error code references
- Authentication guides

## Documentation Structure

### For Each Endpoint

```markdown
## GET /api/v1/users/:id

### Description
Brief explanation of what this endpoint does

### Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| id | string | Yes | User ID |

### Response

**200 Success**
```json
{
  "id": "usr_123",
  "name": "John Doe",
  "email": "john@example.com",
  "created_at": "2025-01-15T10:30:00Z"
}
```

**404 Not Found**
```json
{
  "error": "USER_NOT_FOUND",
  "message": "User does not exist"
}
```

### Examples

**cURL**
```bash
curl -X GET "https://api.example.com/api/v1/users/usr_123" \
  -H "Authorization: Bearer YOUR_TOKEN"
```

**JavaScript**
```javascript
const user = await fetch('/api/v1/users/usr_123', {
  headers: { 'Authorization': 'Bearer token' }
}).then(r => r.json());
```

**Python**
```python
response = requests.get(
    'https://api.example.com/api/v1/users/usr_123',
    headers={'Authorization': 'Bearer token'}
)
user = response.json()
```

## Python Script: generate-docs.py

```python
#!/usr/bin/env python3
import ast
import json
from typing import Dict, List

class APIDocExtractor(ast.NodeVisitor):
    """Extract API documentation from Python source code."""

    def __init__(self):
        self.endpoints = []

    def visit_FunctionDef(self, node):
        """Extract function documentation."""
        if node.name.startswith('get_') or node.name.startswith('post_'):
            doc = ast.get_docstring(node)
            endpoint = {
                'name': node.name,
                'docstring': doc,
                'params': [arg.arg for arg in node.args.args],
                'returns': self._extract_return_type(node)
            }
            self.endpoints.append(endpoint)
        self.generic_visit(node)

    def _extract_return_type(self, node):
        """Extract return type from function annotation."""
        if node.returns:
            return ast.unparse(node.returns)
        return "Any"

def generate_markdown_docs(endpoints: List[Dict]) -> str:
    """Generate markdown documentation from endpoints."""
    docs = "# API Documentation\n\n"

    for endpoint in endpoints:
        docs += f"## {endpoint['name']}\n\n"
        docs += f"{endpoint['docstring']}\n\n"
        docs += f"**Parameters**: {', '.join(endpoint['params'])}\n\n"
        docs += f"**Returns**: {endpoint['returns']}\n\n"
        docs += "---\n\n"

    return docs

if __name__ == '__main__':
    import sys
    with open(sys.argv[1], 'r') as f:
        tree = ast.parse(f.read())

    extractor = APIDocExtractor()
    extractor.visit(tree)

    markdown = generate_markdown_docs(extractor.endpoints)
    print(markdown)

スキルの検出と起動

スキルと他機能の比較


Claude Code プラグイン

概要

Claude Code プラグインは、カスタマイズ(スラッシュコマンド、サブエージェント、MCP サーバー、フック)をひとつにまとめたパッケージで、コマンド 1 つでインストールできる。複数の機能を凝集した共有可能なパッケージにまとめる、最上位の拡張機構である。

アーキテクチャ

プラグインの読み込み手順

プラグインの種類と配布

種類スコープ共有提供元
Officialグローバル全ユーザーAnthropicPR Review、Security Guidance
Community公開全ユーザーコミュニティDevOps、Data Science
Organization社内チームメンバー企業社内標準・ツール
Personal個人個人のみ開発者カスタムワークフロー

プラグイン定義の構造

yaml
---
name: plugin-name
version: "1.0.0"
description: "What this plugin does"
author: "Your Name"
license: MIT

# プラグインのメタデータ
tags:
  - category
  - use-case

# 要件
requires:
  - claude-code: ">=1.0.0"

# 同梱コンポーネント
components:
  - type: commands
    path: commands/
  - type: agents
    path: agents/
  - type: mcp
    path: mcp/
  - type: hooks
    path: hooks/

# 設定
config:
  auto_load: true
  enabled_by_default: true
---

プラグインのディレクトリ構造

my-plugin/
├── .claude-plugin/
│   └── plugin.json
├── commands/
│   ├── task-1.md
│   ├── task-2.md
│   └── workflows/
├── agents/
│   ├── specialist-1.md
│   ├── specialist-2.md
│   └── configs/
├── skills/
│   ├── skill-1.md
│   └── skill-2.md
├── hooks/
│   └── hooks.json
├── .mcp.json
├── .lsp.json
├── settings.json
├── templates/
│   └── issue-template.md
├── scripts/
│   ├── helper-1.sh
│   └── helper-2.py
├── docs/
│   ├── README.md
│   └── USAGE.md
└── tests/
    └── plugin.test.js

実例

例 1:PR レビュープラグイン

ファイル: .claude-plugin/plugin.json

json
{
  "name": "pr-review",
  "version": "1.0.0",
  "description": "Complete PR review workflow with security, testing, and docs",
  "author": {
    "name": "Anthropic"
  },
  "license": "MIT"
}

ファイル: commands/review-pr.md

markdown
---
name: Review PR
description: Start comprehensive PR review with security and testing checks
---

# PR Review

This command initiates a complete pull request review including:

1. Security analysis
2. Test coverage verification
3. Documentation updates
4. Code quality checks
5. Performance impact assessment

ファイル: agents/security-reviewer.md

yaml
---
name: security-reviewer
description: Security-focused code review
tools: read, grep, diff
---

# Security Reviewer

Specializes in finding security vulnerabilities:
- Authentication/authorization issues
- Data exposure
- Injection attacks
- Secure configuration

インストール:

bash
/plugin install pr-review

# 結果:
# ✅ 3 slash commands installed
# ✅ 3 subagents configured
# ✅ 2 MCP servers connected
# ✅ 4 hooks registered
# ✅ Ready to use!

例 2:DevOps プラグイン

コンポーネント:

devops-automation/
├── commands/
│   ├── deploy.md
│   ├── rollback.md
│   ├── status.md
│   └── incident.md
├── agents/
│   ├── deployment-specialist.md
│   ├── incident-commander.md
│   └── alert-analyzer.md
├── mcp/
│   ├── github-config.json
│   ├── kubernetes-config.json
│   └── prometheus-config.json
├── hooks/
│   ├── pre-deploy.js
│   ├── post-deploy.js
│   └── on-error.js
└── scripts/
    ├── deploy.sh
    ├── rollback.sh
    └── health-check.sh

例 3:ドキュメント プラグイン

同梱コンポーネント:

documentation/
├── commands/
│   ├── generate-api-docs.md
│   ├── generate-readme.md
│   ├── sync-docs.md
│   └── validate-docs.md
├── agents/
│   ├── api-documenter.md
│   ├── code-commentator.md
│   └── example-generator.md
├── mcp/
│   ├── github-docs-config.json
│   └── slack-announce-config.json
└── templates/
    ├── api-endpoint.md
    ├── function-docs.md
    └── adr-template.md

プラグインマーケットプレイス

プラグインのインストールとライフサイクル

プラグインの機能比較

機能スラッシュコマンドスキルサブエージェントプラグイン
インストール手動コピー手動コピー手動設定1 コマンド
セットアップ時間5 分10 分15 分2 分
バンドル単一ファイル単一ファイル単一ファイル複数
バージョン管理手動手動手動自動
チーム共有ファイルコピーファイルコピーファイルコピーインストール ID
更新手動手動手動自動更新可
依存関係なしなしなし含む可能性
マーケットプレイスなしなしなしあり
配布リポジトリリポジトリリポジトリマーケットプレイス

プラグインのユースケース

ユースケース推奨理由
チームのオンボーディング✅ プラグイン推奨即時セットアップ、設定一括
フレームワーク導入✅ プラグイン推奨フレームワーク固有コマンドをまとめる
エンタープライズ標準✅ プラグイン推奨中央配布、バージョン管理
簡単な作業の自動化❌ コマンド推奨プラグインは過剰
単一ドメインの専門業務❌ スキル推奨プラグインは重すぎる
専門的な分析❌ サブエージェント推奨手動作成またはスキルで対応
ライブデータアクセス❌ MCP 推奨単独利用、バンドルしない

プラグイン作成の判断

プラグインの公開

公開手順:

  1. すべてのコンポーネントを含むプラグイン構造を作る
  2. .claude-plugin/plugin.json マニフェストを記述する
  3. ドキュメント付きの README.md を作る
  4. /plugin install ./my-plugin でローカルテスト
  5. プラグインマーケットプレイスへ提出する
  6. レビューを受けて承認される
  7. マーケットプレイスで公開される
  8. ユーザーは 1 コマンドでインストールできる

提出例:

markdown
# PR Review Plugin

## Description
Complete PR review workflow with security, testing, and documentation checks.

## What's Included
- 3 slash commands for different review types
- 3 specialized subagents
- GitHub and CodeQL MCP integration
- Automated security scanning hooks

## Installation
```bash
/plugin install pr-review
```

## Features
✅ Security analysis
✅ Test coverage checking
✅ Documentation verification
✅ Code quality assessment
✅ Performance impact analysis

## Usage
```bash
/review-pr
/check-security
/check-tests
```

## Requirements
- Claude Code 1.0+
- GitHub access
- CodeQL (optional)

プラグイン vs 手動設定

手動セットアップ(2 時間以上):

  • スラッシュコマンドを 1 つずつインストール
  • サブエージェントを個別に作成
  • MCP を個別に設定
  • フックを手動で設定
  • 全部を文書化
  • チームに共有(正しく設定されることを祈る)

プラグイン利用(2 分):

bash
/plugin install pr-review
# ✅ すべてインストール・設定完了
# ✅ 即座に使える
# ✅ チームでも完全に同じ環境を再現可能

比較と統合

機能比較マトリクス

機能起動方法永続性スコープユースケース
スラッシュコマンド手動(/cmdセッションのみ単一コマンドクイックショートカット
サブエージェント自動委譲独立コンテキスト専門タスクタスク分担
メモリ自動読み込みセッション横断ユーザー / チーム文脈長期学習
MCP プロトコル自動クエリリアルタイム外部ライブデータアクセス動的情報
スキル自動起動ファイルシステム再利用可能な専門性ワークフロー自動化

機能呼び出しのタイムライン

統合の実例:カスタマーサポート自動化

アーキテクチャ

リクエストの流れ

markdown
## Customer Support Request Flow

### 1. Incoming Email
"I'm getting error 500 when trying to upload files. This is blocking my workflow!"

### 2. Memory Lookup
- Loads CLAUDE.md with support standards
- Checks customer history: VIP customer, 3rd incident this month

### 3. MCP Queries
- GitHub MCP: List open issues (finds related bug report)
- Database MCP: Check system status (no outages reported)
- Slack MCP: Check if engineering is aware

### 4. Skill Detection & Loading
- Request matches "Technical Support" skill
- Loads support response template from Skill

### 5. Subagent Delegation
- Routes to Tech Support Subagent
- Provides context: customer history, error details, known issues
- Subagent has full access to: read, bash, grep tools

### 6. Subagent Processing
Tech Support Subagent:
- Searches codebase for 500 error in file upload
- Finds recent change in commit 8f4a2c
- Creates workaround documentation

### 7. Skill Execution
Response Generator Skill:
- Uses Brand Voice guidelines
- Formats response with empathy
- Includes workaround steps
- Links to related documentation

### 8. MCP Output
- Posts update to #support Slack channel
- Tags engineering team
- Updates ticket in Jira MCP

### 9. Response
Customer receives:
- Empathetic acknowledgment
- Explanation of cause
- Immediate workaround
- Timeline for permanent fix
- Link to related issues

機能の総合オーケストレーション

どの機能を使うか

選択フローチャート


サマリー一覧

観点スラッシュコマンドサブエージェントメモリMCPスキルプラグイン
セットアップ難易度
学習曲線
チーム恩恵非常に高
自動化レベル非常に高
コンテキスト管理単一セッション独立永続リアルタイム永続全機能
保守負担
スケーラビリティ
共有性
バージョン管理手動手動手動手動手動自動
インストール手動コピー手動設定不要手動設定手動コピー1 コマンド

クイックスタートガイド

第 1 週:シンプルに始める

  • よく使う作業に対しスラッシュコマンドを 2〜3 個作成する
  • 設定でメモリを有効化する
  • チーム標準を CLAUDE.md に文書化する

第 2 週:リアルタイムアクセスを追加

  • MCP を 1 つセットアップ(GitHub または Database)
  • /mcp で設定する
  • ワークフローでライブデータをクエリする

第 3 週:作業の分担

  • 特定の役割を持つサブエージェントを最初に作る
  • /agents コマンドを使う
  • 簡単なタスクで委譲をテストする

第 4 週:すべてを自動化する

  • 繰り返し作業に対しスキルを最初に作成する
  • スキルマーケットプレイスを利用するか自作する
  • 全機能を組み合わせて完全なワークフローを作る

継続的に

  • 月次でメモリを見直し更新する
  • 新しいパターンに気付いたらスキルを追加する
  • MCP クエリを最適化する
  • サブエージェントのプロンプトを精緻化する

フック

概要

フックは、Claude Code のイベントに反応して自動実行されるシェルコマンドである。手動操作なしに自動化・検証・カスタムワークフローを実現する。

フックイベント

Claude Code は 5 種類(command、http、mcp_tool、prompt、agent)にわたる 28 種類のフックイベント をサポートする:

フックイベントトリガーユースケース
SessionStartセッション開始 / 再開 / クリア / 圧縮時環境構築、初期化
InstructionsLoadedCLAUDE.md やルールファイル読み込み時検証、変換、補強
UserPromptSubmitユーザーがプロンプト送信時入力検証、プロンプトフィルタ
PreToolUse任意のツール実行前検証、承認ゲート、ログ
PermissionRequest権限ダイアログ表示時自動承認・拒否フロー
PostToolUseツール成功後自動整形、通知、後処理
PostToolUseFailureツール実行失敗時エラー処理、ログ
Notification通知送信時アラート、外部連携
SubagentStartサブエージェント生成時コンテキスト注入、初期化
SubagentStopサブエージェント終了時結果検証、ログ
StopClaude の応答完了時サマリー生成、後処理
StopFailureAPI エラーでターン終了時エラー回復、ログ
TeammateIdleエージェントチームのメンバーがアイドル時作業分配、調整
TaskCompletedタスク完了時後続処理
TaskCreatedTaskCreate でタスク作成時タスク追跡、ログ
ConfigChange設定ファイル変更時検証、伝播
CwdChanged作業ディレクトリ変更時ディレクトリ別セットアップ
FileChanged監視対象ファイルの変更時ファイル監視、再ビルド
PreCompactコンテキスト圧縮直前状態の保存
PostCompact圧縮完了後圧縮後の処理
WorktreeCreateワークツリー作成時環境構築、依存関係インストール
WorktreeRemoveワークツリー削除時クリーンアップ、リソース解放
ElicitationMCP サーバーがユーザー入力を要求時入力検証
ElicitationResultユーザーが入力要求に応答時応答処理
SessionEndセッション終了時クリーンアップ、最終ログ

よくあるフック

フックは ~/.claude/settings.json(ユーザーレベル)または .claude/settings.json(プロジェクトレベル)に設定する:

json
{
  "hooks": {
    "PostToolUse": [
      {
        "matcher": "Write",
        "hooks": [
          {
            "type": "command",
            "command": "prettier --write $CLAUDE_FILE_PATH"
          }
        ]
      }
    ],
    "PreToolUse": [
      {
        "matcher": "Edit",
        "hooks": [
          {
            "type": "command",
            "command": "eslint $CLAUDE_FILE_PATH"
          }
        ]
      }
    ]
  }
}

フック環境変数

  • $CLAUDE_FILE_PATH — 編集・書き込み中のファイルパス
  • $CLAUDE_TOOL_NAME — 使用中のツール名
  • $CLAUDE_SESSION_ID — 現在のセッション ID
  • $CLAUDE_PROJECT_DIR — プロジェクトディレクトリのパス

ベストプラクティス

推奨:

  • フックは高速にする(1 秒以内)
  • 検証や自動化に使う
  • エラーを丁寧に処理する
  • 絶対パスを使う

非推奨:

  • フックを対話的にする
  • 長時間タスクをフックで実行する
  • 認証情報をハードコードする

詳細: 06-hooks/


チェックポイントと巻き戻し

概要

チェックポイントは会話の状態を保存し、過去の地点へ巻き戻すことを可能にする。複数のアプローチを安全に試行・検討できる。

主要概念

概念説明
チェックポイントメッセージ、ファイル、コンテキストを含む会話状態のスナップショット
巻き戻し過去のチェックポイントへ戻り、それ以降の変更を破棄
分岐点複数アプローチを試すための起点となるチェックポイント

チェックポイントへのアクセス

チェックポイントはユーザープロンプトのたびに自動作成される。巻き戻すには:

bash
# Esc を 2 回押すとチェックポイントブラウザが開く
Esc + Esc

# または /rewind コマンド
/rewind

チェックポイントを選ぶと 5 つのオプションから選択できる:

  1. コードと会話を復元 — 両方をその時点へ戻す
  2. 会話を復元 — メッセージを巻き戻し、現在のコードは保つ
  3. コードを復元 — ファイルを戻し、会話は保つ
  4. ここから要約 — 会話を要約に圧縮
  5. キャンセル — 取り消す

ユースケース

シナリオワークフロー
アプローチ比較保存 → A 試行 → 保存 → 巻き戻し → B 試行 → 比較
安全なリファクタリング保存 → リファクタ → テスト → 失敗時に巻き戻し
A/B テスト保存 → 設計 A → 保存 → 巻き戻し → 設計 B → 比較
ミス回復問題発見 → 直前の正常状態へ巻き戻し

設定

json
{
  "autoCheckpoint": true
}

詳細: 08-checkpoints/


高度な機能

プラニングモード

実装前に詳細な計画を作成する。

起動:

bash
/plan Implement user authentication system

メリット:

  • 工数見積もり付きの明確なロードマップ
  • リスク評価
  • 体系的なタスク分割
  • レビューと修正の機会

拡張思考(Extended Thinking)

複雑な問題に対する深い推論。

起動:

  • セッション中に Alt+T(macOS では Option+T)でトグル
  • プログラム制御には環境変数 MAX_THINKING_TOKENS を設定
bash
# 環境変数で拡張思考を有効化
export MAX_THINKING_TOKENS=50000
claude -p "Should we use microservices or monolith?"

メリット:

  • トレードオフを徹底分析
  • より良いアーキテクチャ判断
  • エッジケースの考慮
  • 体系的な評価

バックグラウンドタスク

会話をブロックせずに長時間処理を実行する。

使い方:

bash
User: Run tests in background

Claude: Started task bg-1234

/task list           # 全タスク一覧
/task status bg-1234 # 進捗確認
/task show bg-1234   # 出力閲覧
/task cancel bg-1234 # タスクキャンセル

権限モード

Claude にできることを制御する。

モード説明ユースケース
default標準権限。機微な操作はプロンプト一般開発
acceptEditsファイル編集を確認なく承認信頼できる編集ワークフロー
plan解析・計画のみ、ファイル変更不可コードレビュー、アーキテクチャ計画
auto安全な操作は自動承認、リスクのみ確認安全性とのバランス自律性
dontAskすべての操作を確認なく実行経験者、自動化
bypassPermissions制限なし、安全チェックなしCI/CD、信頼できるスクリプト

使い方:

bash
claude --permission-mode plan          # 読み取り専用解析
claude --permission-mode acceptEdits   # 編集を自動承認
claude --permission-mode auto          # 安全な操作を自動承認
claude --permission-mode dontAsk       # 確認プロンプトなし

ヘッドレスモード(Print Mode)

-p(print)フラグで、対話入力なしの自動化や CI/CD 向けに Claude Code を実行する。

使い方:

bash
# 特定タスクを実行
claude -p "Run all tests"

# 入力をパイプして解析
cat error.log | claude -p "explain this error"

# CI/CD 連携(GitHub Actions)
- name: AI Code Review
  run: claude -p "Review PR changes and report issues"

# スクリプト用 JSON 出力
claude -p --output-format json "list all functions in src/"

定期タスク

/loop コマンドで定期実行する。

使い方:

bash
/loop every 30m "Run tests and report failures"
/loop every 2h "Check for dependency updates"
/loop every 1d "Generate daily summary of code changes"

定期タスクはバックグラウンドで実行され、完了時に結果を報告する。継続監視、定期チェック、自動メンテナンスのワークフローに有用である。

Chrome 連携

Claude Code は Chrome ブラウザと連携できる。Web ページのナビゲーション、フォーム入力、スクリーンショット撮影、サイトからのデータ抽出など、開発ワークフロー内で Web 自動化が可能になる。

セッション管理

複数の作業セッションを管理する。

コマンド:

bash
/resume                # 過去の会話を再開
/rename "Feature"      # 現在のセッションに名前を付ける
/fork                  # 新セッションへフォーク
claude -c              # 直近の会話を継続
claude -r "Feature"    # 名前 / ID でセッションを再開

インタラクティブ機能

キーボードショートカット:

  • Ctrl + R — コマンド履歴検索
  • Tab — 自動補完
  • ↑ / ↓ — コマンド履歴
  • Ctrl + L — 画面クリア

複数行入力:

bash
User: \
> Long complex prompt
> spanning multiple lines
> \end

設定

完全な設定例:

json
{
  "planning": {
    "autoEnter": true,
    "requireApproval": true
  },
  "extendedThinking": {
    "enabled": true,
    "showThinkingProcess": true
  },
  "backgroundTasks": {
    "enabled": true,
    "maxConcurrentTasks": 5
  },
  "permissions": {
    "mode": "default"
  }
}

詳細ガイド: 09-advanced-features/


モデルと推論努力(Reasoning Effort)

Claude Code は推論努力を調整可能な 3 モデルをサポートする:

モデルコンテキストウィンドウ努力レベルデフォルト努力(Claude Code)
Claude Opus 4.71M トークン(ネイティブ)lowmediumhighxhighmaxxhigh(Opus 4.7 リリース時、2026-04-16 以降)
Claude Sonnet 4.61M トークンlowmediumhighmaxPro/Max 加入者では high(v2.1.117 で medium から引き上げ)
Claude Haiku 4.5200K トークンlowmediumhighmedium

注: v2.1.117 では、Opus 4.7 セッションで /context がネイティブの 1M ではなく 200K に対して計算されていたバグが修正された。Opus 4.7 で本来の 1M コンテキストを使うには v2.1.117 以降にアップグレードすること。

注: v2.1.118 で /cost/stats/usage に統合された。/usage がコスト・統計などのタブを持つ正規コマンドとなり、/cost/stats は対応するタブを開くショートカット別名として残されている。

参考資料


最終更新:2026 年 4 月 24 日対応:Claude Haiku 4.5、Sonnet 4.6、Opus 4.7収録機能:フック、チェックポイント、プラニングモード、拡張思考、バックグラウンドタスク、権限モード(6 種)、ヘッドレスモード、セッション管理、Auto Memory、Agent Teams、定期タスク、Chrome 連携、Channels、音声入力、同梱スキル


最終更新: 2026 年 4 月 24 日 Claude Code バージョン: 2.1.119 出典:

対応モデル: Claude Sonnet 4.6、Claude Opus 4.7、Claude Haiku 4.5