← スキル一覧に戻る

develop-feature
by TobiasBak
⭐ 0🍴 0📅 2026年1月17日
SKILL.md
name: develop-feature description: Pick up and implement the next available feature from /.agent-features/. Use when user says "develop feature", "work on next feature", "implement feature", or starts a new session to continue feature-driven development. Handles the full cycle from implementation through code review to commit.
Develop Feature
Pick up, implement, and complete the next available feature.
Workflow
1. Select Feature
1. Check for started-*.md files (resume interrupted work)
2. If none, find lowest-numbered NN-*.md file
3. If no features available, inform user and exit
Worktree Handling
When working in a git worktree (path contains /.trees/ or \.trees\):
- Detect worktree: Check if current directory path includes
.trees/ - Resolve main repo: The main repository is the parent directory of
.trees/- Example: Working in
/project/.trees/feature-name/→ main repo is/project/
- Example: Working in
- Feature operations in main repo: All file operations on
.agent-features/must happen in the main repository:- Rename
NN-*.md→started-*.mdin main repo - Move completed features to
completed/in main repo
- Rename
- Implementation work in worktree: Actual code changes happen in the worktree as normal
This ensures feature state is shared across all worktrees and the main repo.
2. Claim Feature
- Rename selected file to
started-<original-name>.md - Read the feature document thoroughly
3. Implement
- Implement all requirements from the feature document
- Write tests for the implementation (required)
- Run tests - must pass before proceeding
On blocker: If unclear requirements or missing dependencies, pause and ask user. Do not guess.
4. Review Cycle
Run subagents in sequence:
1. Invoke code-simplifier & test-reviewer subagents parallel on changed files
2. Run tests again
3. If tests fail → fix issues and repeat from step 1
4. If tests pass → proceed to commit
5. Complete
- Commit changes with message:
feat: <feature-name> - Move feature doc to
/.agent-features/completed/ - Report completion with summary of what was implemented
Feature Selection Logic
/.agent-features/
├── started-02-profile.md ← Pick this first (resume)
├── 01-auth.md ← Pick this if no started-*
├── 03-dashboard.md
└── completed/
Priority:
- Any
started-*.mdfile (resume interrupted work) - Lowest numbered
NN-*.mdfile
Subagent Integration
Invoke using Task tool with subagent_type:
- code-simplifier: Simplifies implementation code
- test-reviewer: Reviews test quality
These run autonomously. If their changes break tests, fix and retry.
Completion Checklist
Before marking complete, verify:
- All requirements from feature doc implemented
- All acceptance criteria checkboxes satisfiable
- Tests written and passing
- Code reviewed by code-simplifier
- Tests reviewed by test-reviewer
- Changes committed
- Feature doc moved to completed/
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です