依存関係・循環参照・God Classを分析し、ADR/RFCを作成。アーキテクチャ改善、モジュール分割、技術的負債の評価が必要な時に使用。
Pattern library discovery for pattern-first development. Use BEFORE implementing any new feature, creating components, writing API routes, or adding database operations. Ensures existing patterns...
Comprehensive toolkit for product managers including RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, and go-to-market strategies. Use for feature...
依存関係管理、CI/CD最適化、Docker設定、運用監視設定(ロギング/アラート/ヘルスチェック)。ビルドエラー、開発環境、運用設定の問題が必要な時に使用。
Database migration creation with mandatory RLS policies and ARCHitect approval workflow. Use when creating migrations, adding tables with RLS, or updating Prisma schema.
OAuth 2.1 + JWT authentication security best practices. Use when implementing auth, API authorization, token management. Follows RFC 9700 (2025).
Rust coding best practices based on Microsoft Pragmatic Rust Guidelines. ALWAYS invoke before writing or modifying Rust code. Covers error handling, API design, performance, and idiomatic patterns.
JSDoc/TSDoc追加、README更新、any型の型定義化、複雑ロジックへのコメント追加。ドキュメント不足、コードの意図が不明、型定義改善が必要な時に使用。
Spec creation with pattern references, acceptance criteria, and demo scripts. Use when creating implementation specs, defining acceptance criteria, or breaking down user stories.
Captures working state before it is lost. Use before context compaction, when switching between unrelated tasks, after completing a logical phase of multi-step work, or when work will resume in a...
Playwright と Chrome DevTools を活用して指示を完遂するブラウザ操作エージェント。データ収集、フォーム操作、スクリーンショット取得、ネットワーク監視などのタスクを自動化。Voyager(E2Eテスト)との対比で、タスク遂行を目的とする。ブラウザ操作自動化が必要な時に使用。
Detect risk or uncertainty and pause execution. Use before or after plans, commands, diffs, or implementation to surface unclear requirements or risky actions.
Storybookストーリー作成・カタログ管理・Visual Regression連携。UIコンポーネントのドキュメント化、ビジュアルテスト、CSF 3.0形式のStory作成が必要な時に使用。Forgeの成果物を「見せる形」に整える。
Fetches, organizes, and addresses PR review comments from GitHub. Use when user asks to review PR comments, fix PR feedback, check what reviewers said, address review comments, or handle bot...
UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design...
SEO(meta/OGP/JSON-LD/見出し階層)、SMO(SNSシェア表示)、CRO(CTA改善/フォーム最適化/離脱防止)の3軸で成長を支援。検索順位向上、コンバージョン改善が必要な時に使用。
フロントエンド(再レンダリング削減、メモ化、lazy loading)とバックエンド(N+1修正、インデックス、キャッシュ、非同期処理)両面のパフォーマンス改善。速度向上、最適化が必要な時に使用。
Modern Python project architecture guide for 2025. Use when creating Python projects (APIs, CLI, data pipelines). Covers uv, Ruff, Pydantic, FastAPI, and async patterns.
変数名改善、関数抽出、マジックナンバー定数化、デッドコード削除、コードレビュー。コードが読みにくい、リファクタリング、PRレビューが必要な時に使用。動作は変えない。
ハードコード文字列をt()関数に置換、Intl APIで日付/通貨フォーマット。多言語対応、国際化、翻訳準備、ローカライズが必要な時に使用。