一键导入
dev
Repository development entrypoint for requests like 実装して, 追加して, 修正して, この repo で作って. Handles work artifacts, TDD, smoke/E2E verification, review, and handoff.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Repository development entrypoint for requests like 実装して, 追加して, 修正して, この repo で作って. Handles work artifacts, TDD, smoke/E2E verification, review, and handoff.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build AI chat interfaces using ai-elements components — conversations, messages, tool displays, prompt inputs, and more. Use when the user wants to build a chatbot, AI assistant UI, or any AI-powered chat interface.
Fix GitHub or local review findings, re-verify, and loop up to 3 times before escalating.
Create a PR only after quality gates, work artifacts, and Codex review request preparation are complete.
Repository-specific guardrails for architecture boundaries, work artifacts, durable docs, and review readiness. Use from project subagents.
Repository review entrypoint for requests like レビューして, 監査して, 問題点を見て, 改善点を洗い出して. Runs parallel code, performance/security, and spec-consistency review, then consolidates actionable findings.
Review for secret leaks, auth regressions, unsafe execution, and PII logging.
| name | dev |
| description | Repository development entrypoint for requests like 実装して, 追加して, 修正して, この repo で作って. Handles work artifacts, TDD, smoke/E2E verification, review, and handoff. |
| user_facing | true |
Issue から handoff まで、この repo の標準開発フロー全体を統括する。
レビューや監査が主目的なら review を使い、この skill は実装を前に進める時に使う。
work/ artifact と plan / sprint contract を揃えるブランチ名や作成方法は、repo の現在運用を優先する。
tdd-driver agent を使い Red-Green-Refactor サイクルで実装する.skip / .only を残さないcode-reviewer agent でレビューするpnpm check を実行する。失敗した場合は最大 3 回リトライする。
attempt = 0
while attempt < 3:
run pnpm check
if success: break
attempt += 1
fix the reported issues
if attempt == 3 and still failing:
escalate to human with failure details
apps/web/ または packages/ui/ を変更した場合、ui-browser-evaluator agent を 必ず 起動する。
Agent (ui-browser-evaluator):
"Run browser verification for all routes.
Capture screenshots to work/qa-reports/screenshots/.
Report console errors and rendering issues."
agent-browser が使用可能か確認:
which agent-browser
以下が完了していること:
work/qa-reports/screenshots/ に存在するwork/qa-reports/active/ に存在するUI 変更がないバックエンドのみの変更ではスキップ可。