원클릭으로
implement
Execute a chore or feature plan and handle document lifecycle
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Execute a chore or feature plan and handle document lifecycle
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build and maintain the Codebase Atlas for Code Mode: propose areas, write schema-validated explanation nodes via sly-atlas, declare collections for bulk file families, run staleness-driven refreshes PLUS a coverage crawl that enriches the thinnest area every run, generate the catch-up digest, author guided tours, annotate database schemas, serve atlas context to agents, and drive the Code Mode view with navigate/highlight/deck directives
Dynamic context provider for codebase knowledge. This skill should be used when working on code, answering questions about architecture, or making changes that require understanding of project structure. Maintains area-specific reference files that are loaded on demand. Self-updating based on observed drift between references and actual code. Load this skill early in work sessions - it contains essential workflow and update protocols.
Manage kanban cards via CLI with commands for search, create, update, move, reorder, problem tracking, cross-agent notes, scheduled automations, cross-card prompt execution, AI-set status line (manual + tiered auto-status), and structured questionnaires
Send responses back to the user via their messaging channel (Telegram, Slack, Teams, etc). Use this skill when a message arrives with a channel header like [Telegram], [Slack], etc.
Create a git checkpoint of ALL recent changes
Dynamic context provider for codebase knowledge. This skill should be used when working on code, answering questions about architecture, or making changes that require understanding of project structure. Maintains area-specific reference files that are loaded on demand. Self-updating based on observed drift between references and actual code. Load this skill early in work sessions - it contains essential workflow and update protocols.
| name | implement |
| version | 1.1.1 |
| updated | "2026-02-22T00:00:00.000Z" |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep, TodoWrite, Task |
| argument-hint | path to chore or feature plan |
| description | Execute a chore or feature plan and handle document lifecycle |
Execute the specified chore or feature plan, then handle the appropriate document lifecycle. This command follows a pattern where completed chores move to a completed directory while features remain in place with updated status.
/chores/: This is a chore/features/: This is a featureNote: The lifecycle management pattern below is a suggested approach. Adapt to your project's documentation structure and workflow.
For Chores (suggested pattern):
documentation/chores/ to documentation/chores/completed/For Features (suggested pattern):
documentation/features/ (features typically remain in place)Note: Adjust these lifecycle steps to match your project's documentation conventions.
If scripts/kanban.js exists, move the associated card to testing:
test -f scripts/kanban.jsnode scripts/kanban.js move <card-id> testingGenerate comprehensive report including:
$ARGUMENTS
Based on the document type detected, perform appropriate actions:
# Move to completed directory (if using this pattern)
mv documentation/chores/{file} documentation/chores/completed/
# Update status in document (ACTIVE → COMPLETED)
# Add completion date
# Update project indexes (if applicable)
# Update status in document (DRAFT → FINAL/IMPLEMENTED)
# Update last modified date
# Update feature index (if project maintains one)
Adapt these actions to your project's structure and conventions.
Provide a comprehensive report following this template:
✅ Implementation Complete
**Document**: {path}
**Type**: {Chore|Feature}
**Status**: {COMPLETED|FINAL|IMPLEMENTED}
**Work Summary**:
- {task 1 completed}
- {task 2 completed}
- {validation passed}
**Files Changed**:
{git diff --stat output or summary of changes}
**Lifecycle Actions**:
- {Document moved to completed/ | Status updated to FINAL}
- {Index updates performed (if applicable)}
**Validation Results**:
- {Tests run and results}
- {Build/lint status}
**Next Steps**:
- {Any follow-up actions or recommendations}
Adapt the report format to include project-specific metrics or validation results.