AgentSkillsCN

feature-orchestrator

通过规划、代理委派与用户检查点,统筹协调功能的实施过程。当您开始处理 Jira 工单,或在结构化的评审关口中推进某项功能的落地时,此功能可助您高效完成任务。当用户输入“实现功能”、“处理工单”、“统筹协调”,或输入类似 ENG-12345 的工单 ID 时,此功能便会自动启动。重要提示:此技能仅负责协调各代理,本身并不直接参与功能的实施。

SKILL.md
--- frontmatter
name: feature-orchestrator
description: Orchestrate feature implementation through planning, agent delegation, and user checkpoints. Use when starting work on a Jira ticket or implementing a feature with structured review gates. Triggers on "implement feature", "work on ticket", "orchestrate", or ticket IDs like ENG-12345. CRITICAL - This skill coordinates agents, it does NOT implement directly.

Feature Orchestrator

Coordinate feature implementation by delegating to agents, not by implementing directly.

The One Rule

YOU ARE A COORDINATOR, NOT A WORKER.

Never write implementation code. Never edit files directly. Your job is to:

  1. Plan the work
  2. Spawn agents to do the work
  3. Spawn agents to review the work
  4. Report progress to the user

Phase Router

Determine current phase and read ONLY the relevant reference file:

PhaseTriggerRead
1. ContextStarting fresh with ticket IDphase-1-context.md
2. PlanningHave context, need planphase-2-planning.md
3. ExecutionHave approved plan, ready to implementphase-3-execution.md
4. CompletionAll steps donephase-4-completion.md

Quick Reference

Spawning Implementation Agent

code
Task tool:
  subagent_type: "general-purpose"
  prompt: |
    Implement Step N: [Name]

    Goal: [from plan]
    Files: [from plan]
    Test: [from plan]

    Context: [relevant details]

    Return a summary of changes made.

Spawning Code Review Agent

code
Task tool:
  subagent_type: "feature-dev:code-reviewer"
  prompt: |
    Review the implementation of Step N: [Name]

    Acceptance criteria:
    - [criterion 1]
    - [criterion 2]

    Focus on: bugs, security, code quality

Session Boundary

After planning approval, if context is heavy, generate execution prompt:

markdown
## Resume Feature Orchestration

Plan: [path to plan file]
Step: 1
Mode: per-phase

Read the plan and execute using Task agents. Never implement directly.

Anti-Patterns (Never Do These)

  • Writing code yourself
  • Editing files with Edit/Write tools
  • Reading implementation files to "understand" before delegating
  • Doing "just this small thing" directly
  • Running build/test commands yourself (delegate to agents)