orchestrate-feature
Full feature pipeline: implement → test → review → close. Triggers on: 'orchestrate feature', 'full pipeline'.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Full feature pipeline: implement → test → review → close. Triggers on: 'orchestrate feature', 'full pipeline'.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Evaluate architectural decisions, propose ADRs. Triggers on: 'architecture review', 'ADR', 'design review'.
Perform structured code reviews. Triggers on: 'code review', 'review code', 'review PR'.
Create GitHub pull requests. Triggers on: 'create PR', 'pull request', 'submit PR'.
Evaluate strategic direction changes before execution. Triggers on: 'direction change', 'strategic decision', 'pivot'.
Triage and organize GitHub issues. Triggers on: 'triage', 'triage issues', 'organize backlog'.
Create new custom agent definition. Triggers on: 'create agent', 'new agent'.
| name | orchestrate-feature |
| description | Full feature pipeline: implement → test → review → close. Triggers on: 'orchestrate feature', 'full pipeline'. |
Full implementation pipeline for a feature issue: implement → test → review → PR → close.
gh issue edit N --add-label "status:in-progress"
git worktree add -b feat/issue-N-short-description ../project-N main
cd ../project-N
Use @code-developer agent for implementation:
Use @test-engineer agent for testing:
uv run ruff check src/ # Lint
uv run mypy src/ # Type check
uv run pytest tests/ -v # Tests
All must pass with 0 errors.
Review the changes for:
git add -A && git commit -m "feat(scope): description (fixes #N)"
git push -u origin HEAD
gh pr create --draft --title "feat(scope): description" --body "closes #N"
# Wait 3-5 minutes, then check
gh run list --branch $(git branch --show-current) --limit 3
⛔ Never merge without CI green.
gh pr merge --squash --delete-branch
gh issue close N --comment "Completed in PR #M. [summary of what was delivered]"
Remove status labels:
gh issue edit N --remove-label "status:in-progress"
cd ..
git worktree remove project-N
Document the huddle on the issue and sprint log (see sprint-start prompt for format).