一键导入
jikime-workflow-poc
POC-First development workflow for greenfield features. Make-It-Work first, then refactor, test, and polish in structured phases.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
POC-First development workflow for greenfield features. Make-It-Work first, then refactor, test, and polish in structured phases.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
AI-powered legacy site rebuilding workflow. Captures screenshots, analyzes source code, and generates modern frontend/backend code. Claude Code reads screenshots and writes actual code. Use when rebuilding legacy PHP, WordPress, or similar sites to Next.js, React, or other modern frameworks.
하네스를 구성합니다. 전문 에이전트를 정의하며, 해당 에이전트가 사용할 스킬을 생성하는 메타 스킬. (1) '하네스 구성해줘', '하네스 구축해줘' 요청 시, (2) '하네스 설계', '하네스 엔지니어링' 요청 시, (3) 새로운 도메인/프로젝트에 대한 하네스 기반 자동화 체계를 구축할 때, (4) 하네스 구성을 재구성하거나 확장할 때 사용.
Leader agent role guide for jikime team orchestration. Covers task distribution, plan approval, worker monitoring, and team shutdown. Use when spawned as the leader role in a jikime team.
Reviewer agent role guide for jikime team orchestration. Covers plan review, quality assessment, acceptance criteria validation, and feedback delivery via team inbox. Use when spawned as the reviewer role in a jikime team.
Use this skill when the user asks to "jikime team을 사용해줘", "팀 만들어줘", "에이전트 생성해줘", "멀티 에이전트로 작업해줘", "병렬로 에이전트 실행해줘", "여러 에이전트 조율해줘", "작업을 여러 에이전트에게 분배해줘", "team status 확인해줘", "task 만들어줘", "inbox 확인해줘", or mentions "jikime team", "multi-agent coordination", "spawn agents", "team tasks", "agent inbox", "task board", "team leader", "team worker". Also trigger when the scope of work is large enough to benefit from splitting into parallel subtasks — for example "전체 코드베이스 리팩토링", "여러 기능 동시에 구현", "대규모 분석", "full-stack app 만들어줘". Provides comprehensive guidance for using the jikime team CLI to orchestrate multi-agent teams with task management, messaging, and monitoring.
Claude Code skill for operating as part of a jikime multi-agent team (swarm). Provides command reference, coordination protocols, and role-specific workflows for leader, worker, and reviewer agents. Triggers when the task involves multi-agent coordination, spawning workers, assigning tasks, monitoring team progress, or when the scope exceeds what a single agent can efficiently handle (e.g., "build a full-stack app", "implement multiple features in parallel", "refactor the entire codebase"). Also triggers on keywords: "create a team", "spawn agents", "assign tasks", "team status", "board attach", "agent inbox", "multi-agent", "swarm", "jikime team".
| name | jikime-workflow-poc |
| description | POC-First development workflow for greenfield features. Make-It-Work first, then refactor, test, and polish in structured phases. |
| version | 1.0.0 |
| tags | ["workflow","poc","greenfield","rapid-prototype","phase-based"] |
| triggers | {"keywords":["POC","proof of concept","prototype","greenfield","new feature","from scratch","make it work"],"phases":["plan","run"],"agents":["manager-ddd","manager-strategy","planner"],"languages":[]} |
| progressive_disclosure | {"enabled":true,"level1_tokens":"~100","level2_tokens":"~3000"} |
| user-invocable | true |
| context | fork |
| agent | manager-strategy |
| allowed-tools | ["Read","Write","Edit","Bash","Grep","Glob","TodoWrite","Task","AskUserQuestion"] |
Phase-based approach: Make It Work first, then refine through structured phases.
For greenfield features (new code with no existing behavior to preserve), POC-First is more effective than TDD or DDD. Ship a working prototype quickly, then systematically improve quality.
Before starting, determine the right workflow:
Is this NEW code (no existing behavior)?
├── YES → POC-First Workflow (this skill)
└── NO → Is existing code being modified?
├── YES → DDD Workflow (jikime-workflow-ddd)
└── Regression test needed? → TDD Workflow (jikime-workflow-tdd)
| Scenario | Workflow | Reason |
|---|---|---|
| Brand new feature | POC-First | No behavior to preserve |
| New API endpoint | POC-First | Greenfield implementation |
| New UI component | POC-First | Build first, test after |
| Refactoring existing code | DDD | Must preserve behavior |
| Bug fix | TDD | Regression test first |
| Legacy migration | DDD | Characterize before changing |
| Adding tests to existing code | TDD | Test-first approach |
Goal: Get the core functionality working end-to-end.
Rules:
Task Pattern:
Task 1: Scaffold project structure
Task 2: Implement core happy path
Task 3: Wire up end-to-end
Task 4: [VERIFY] Core feature works manually
Done when: The feature works for the happy path. Demo-able to stakeholders.
Phase Transition: User confirms "it works" or automated smoke test passes.
Goal: Clean up code without changing behavior.
Rules:
Task Pattern:
Task 5: Extract constants and configuration
Task 6: Split large modules by responsibility
Task 7: Apply naming conventions and types
Task 8: [VERIFY] Feature still works after refactoring
Done when: Code is clean, well-organized, and still works.
Phase Transition: Build passes, feature still works manually.
Goal: Add comprehensive test coverage.
Rules:
Task Pattern:
Task 9: Add unit tests for core business logic
Task 10: Add integration tests for API
Task 11: Add edge case and error tests
Task 12: [VERIFY] All tests pass, coverage >= 80%
Done when: Test suite passes, coverage meets threshold (80%+).
Phase Transition: npm test passes, coverage report shows >= 80%.
Goal: Production-ready quality.
Rules:
Task Pattern:
Task 13: Fix all lint and type errors
Task 14: Security audit and fix
Task 15: Add documentation (JSDoc, README)
Task 16: [VERIFY] Final quality gate
Quality Gate Checklist:
npm run build — zero errorsnpm test — all passing, coverage >= 80%npm run lint — zero errors/warningsnpm run type-check — zero errorsDone when: All quality gates pass.
Goal: Create PR and get it merged.
Rules:
Skill("jikime-workflow-pr-lifecycle") for automationTask Pattern:
Task 17: Create PR with description
Task 18: Address CI failures (if any)
Task 19: Address review comments (if any)
Task 20: [VERIFY] PR approved and merged
Phase N complete:
1. Run [VERIFY] checkpoint
2. All checks pass?
├── YES → Announce phase completion, start Phase N+1
└── NO → Fix issues before proceeding
3. Report: "Phase N complete. Starting Phase N+1."
Track phase progress using TodoWrite:
[completed] Phase 1: Make It Work
[completed] Task 1: Scaffold structure
[completed] Task 2: Core happy path
[completed] Task 3: End-to-end wiring
[completed] Task 4: [VERIFY] Works manually
[in_progress] Phase 2: Refactor
[in_progress] Task 5: Extract constants
[pending] Task 6: Split modules
[pending] Task 7: Naming and types
[pending] Task 8: [VERIFY] Still works
[pending] Phase 3: Testing
[pending] Phase 4: Quality Gates
[pending] Phase 5: PR Lifecycle
## J.A.R.V.I.S.: POC Phase 1 - Make It Work
Starting greenfield implementation of [feature].
Goal: Working end-to-end happy path.
### Tasks
1. [ ] Scaffold project structure
2. [ ] Implement core logic
3. [ ] Wire up end-to-end
4. [ ] [VERIFY] Feature works
## J.A.R.V.I.S.: POC Phase 1 Complete
Phase 1 verified. Core feature works end-to-end.
Moving to Phase 2: Refactor.
### Evidence
- Manual test: Login → Dashboard flow works
- API response: 200 OK with valid JWT
## J.A.R.V.I.S.: POC Complete
All 5 phases completed successfully.
### Summary
- Phase 1: Core feature working (12 files created)
- Phase 2: Refactored (3 files split, 15 constants extracted)
- Phase 3: Tests added (87% coverage, 24 tests)
- Phase 4: Quality gates passed (0 errors, 0 warnings)
- Phase 5: PR #42 merged
<jikime>DONE</jikime>
| Skill | Relationship |
|---|---|
jikime-workflow-task-format | All tasks use 5-field format |
jikime-workflow-ddd | Alternative for existing code modification |
jikime-workflow-tdd | Alternative for test-first development |
jikime-workflow-pr-lifecycle | Phase 5 automation |
jikime-workflow-loop | Can run within any phase for iterative fixing |
Version: 1.0.0 Last Updated: 2026-02-27 Source: Adapted from smart-ralph POC-First workflow