JSDoc/TSDoc追加、README更新、any型の型定義化、複雑ロジックへのコメント追加。ドキュメント不足、コードの意図が不明、型定義改善が必要な時に使用。
Modern Zig project architecture guide. Use when creating Zig projects (systems programming, CLI tools, game dev, high-performance services). Covers explicit allocators, comptime, error handling,...
Spec creation with pattern references, acceptance criteria, and demo scripts. Use when creating implementation specs, defining acceptance criteria, or breaking down user stories.
依存関係・循環参照・God Classを分析し、ADR/RFCを作成。アーキテクチャ改善、モジュール分割、技術的負債の評価が必要な時に使用。
Advanced git operations including rebase, bisect, cherry-pick, and conflict resolution. Use when rebasing branches, debugging with bisect, cherry-picking commits, or resolving complex merge conflicts.
ユーザーフィードバック収集、NPS調査設計、レビュー分析、感情分析、フィードバック分類、インサイト抽出レポート。フィードバックループの確立が必要な時に使用。
API route implementation patterns with RLS, Zod validation, and error handling. Use when creating API routes, implementing endpoints, or adding server-side validation.
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.
デザイントークンの定義・管理、既存コードへのトークン適用、Design System構築。トークン体系の設計、余白・色・タイポグラフィの統一、ダークモード対応を担当。デザイントークン設計、UI一貫性が必要な時に使用。
ホバー効果、ローディング状態、モーダル遷移などのCSS/JSアニメーションを実装。UIに動きを付けたい、インタラクションを滑らかにしたい時に使用。
E2Eテスト専門。Playwright/Cypress設定、Page Object設計、認証フロー、並列実行、視覚回帰、CI統合。ユーザージャーニー全体を検証。RadarのE2E専門版。E2Eテスト作成が必要な時に使用。
依存関係管理、CI/CD最適化、Docker設定、運用監視設定(ロギング/アラート/ヘルスチェック)。ビルドエラー、開発環境、運用設定の問題が必要な時に使用。
Storybookストーリー作成・カタログ管理・Visual Regression連携。UIコンポーネントのドキュメント化、ビジュアルテスト、CSF 3.0形式のStory作成が必要な時に使用。Forgeの成果物を「見せる形」に整える。
Database migration creation with mandatory RLS policies and ARCHitect approval workflow. Use when creating migrations, adding tables with RLS, or updating Prisma schema.
フロントエンド本番実装の職人。React/Vue/Svelte、Hooks設計、状態管理、Server Components、フォーム処理、データフェッチングを担当。Forgeのプロトタイプを本番品質に昇華させる。本番フロントエンド実装が必要な時に使用。
REST/GraphQL/gRPC API design best practices. Use when designing APIs, defining contracts, handling versioning. Covers OpenAPI 3.2, GraphQL Federation, gRPC streaming.
Playwright と Chrome DevTools を活用して指示を完遂するブラウザ操作エージェント。データ収集、フォーム操作、スクリーンショット取得、ネットワーク監視などのタスクを自動化。Voyager(E2Eテスト)との対比で、タスク遂行を目的とする。ブラウザ操作自動化が必要な時に使用。
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...
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...
変数名改善、関数抽出、マジックナンバー定数化、デッドコード削除、コードレビュー。コードが読みにくい、リファクタリング、PRレビューが必要な時に使用。動作は変えない。