スキル一覧に戻る
TobiasBak

develop-feature

by TobiasBak

0🍴 0📅 2026年1月17日
GitHubで見るManusで実行

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\):

  1. Detect worktree: Check if current directory path includes .trees/
  2. Resolve main repo: The main repository is the parent directory of .trees/
    • Example: Working in /project/.trees/feature-name/ → main repo is /project/
  3. Feature operations in main repo: All file operations on .agent-features/ must happen in the main repository:
    • Rename NN-*.mdstarted-*.md in main repo
    • Move completed features to completed/ in main repo
  4. 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

  1. Commit changes with message: feat: <feature-name>
  2. Move feature doc to /.agent-features/completed/
  3. 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:

  1. Any started-*.md file (resume interrupted work)
  2. Lowest numbered NN-*.md file

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

レビュー

💬

レビュー機能は近日公開予定です