一键导入
technical-spec
Defines environment variables, architecture design, and build/test commands. Use when configuring environment or designing architecture.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Defines environment variables, architecture design, and build/test commands. Use when configuring environment or designing architecture.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
PRD、ADR、Design Doc、UI Spec、作業計画書の作成を支援。技術ドキュメントの作成・レビュー時、または「UI Spec/画面設計/コンポーネント分解」が言及された時に使用。
入力・出力・成功基準・決定事項・未解決条件を明確化し、下流エージェントが推測せず実行できるようにする。LLM向けのプロンプト・ハンドオフ・計画成果物・レビュー・レポート・生成指示を記述または改訂する時に使用。
タスクの本質を分析し適切なスキルを選択。規模見積もりとメタデータを返却。タスク開始時、スキル選択時に使用。
Guides PRD, ADR, Design Doc, UI Spec, and Work Plan creation. Use when creating or reviewing technical documents, or when "UI spec/screen design/component decomposition" is mentioned.
Clarifies inputs, outputs, success criteria, decisions, and unresolved conditions so downstream agents can execute without guessing. Use when writing or revising LLM-facing prompts, handoffs, planning artifacts, reviews, reports, or generated instructions.
Analyzes task essence and selects appropriate skills. Returns scale estimates and metadata. Use when starting tasks or selecting skills.
| name | technical-spec |
| description | Defines environment variables, architecture design, and build/test commands. Use when configuring environment or designing architecture. |
TypeScript-based application implementation. Architecture patterns should be selected according to project requirements and scale.
process.env, obtain through configuration management layer.env files in GitSelect appropriate architecture for each project and define clearly:
Use the appropriate run command based on the packageManager field in package.json.
build - TypeScript buildtype-check - Type check (no emit)test - Run teststest:coverage - Run tests with coveragetest:coverage:fresh - Run tests with coverage (fresh cache)test:safe - Safe test execution (with auto cleanup)cleanup:processes - Cleanup Vitest processesBefore executing quality checks, identify what quality mechanisms exist for the change area:
Quality checks are mandatory upon implementation completion:
Phase 1-3: Code Quality Checks
Phase 4: Tests
test - Test executionPhase 5: Code Quality Re-verification
check:code - Re-verify code quality (clean up side effects from test fixes in Phase 4)check:all - Overall integrated check (check:code + test) *for manual batch verificationopen coverage/index.html - Check coverage reportformat - Format fixeslint:fix - Lint fixescleanup:processes scripttest:coverage:fresh script