sdlc-orchestrator

Orchestrate multiple coding agent CLIs as sub-agents. Load this skill to understand which coding agent CLI to delegate tasks to based on task type (front-end, context engineering, GitHub workflows, refactoring, pair programming, rapid prototyping).

7 stars

Best use case

sdlc-orchestrator is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Orchestrate multiple coding agent CLIs as sub-agents. Load this skill to understand which coding agent CLI to delegate tasks to based on task type (front-end, context engineering, GitHub workflows, refactoring, pair programming, rapid prototyping).

Teams using sdlc-orchestrator should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/sdlc-orchestrator/SKILL.md --create-dirs "https://raw.githubusercontent.com/roy2392/sdlc-subagents-cli/main/templates/skills/sdlc-orchestrator/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/sdlc-orchestrator/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How sdlc-orchestrator Compares

Feature / Agentsdlc-orchestratorStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Orchestrate multiple coding agent CLIs as sub-agents. Load this skill to understand which coding agent CLI to delegate tasks to based on task type (front-end, context engineering, GitHub workflows, refactoring, pair programming, rapid prototyping).

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

## SDLC Sub-Agent Orchestration

You have access to multiple coding agent CLIs that you can delegate tasks to via the Bash tool. Each agent has different strengths. Use the `skill` tool to load the specific agent's skill for detailed invocation instructions.

## Agent Routing Table

| Task Type | Recommended Agent | Skill to Load |
|-----------|-------------------|---------------|
| Large codebase analysis, research, documentation | Gemini CLI | `gemini-cli` |
| GitHub PRs, issues, code review, repo management | Copilot CLI | `copilot-cli` |
| Complex refactoring, architecture changes, debugging | Claude Code | `claude-code` |
| Incremental changes with git commits, multi-model | Aider | `aider` |
| Front-end development, UI components, styling | Kimi CLI | `kimi-cli` |
| IDE-grade coding, cloud handoff, rapid prototyping | Cursor CLI | `cursor-cli` |

## How to delegate

1. **Identify the task type** from the user's request
2. **Load the specific agent skill** using the `skill` tool (e.g., `skill({ name: "gemini-cli" })`)
3. **Follow the delegation pattern** described in that skill
4. **Execute via Bash** using the agent's non-interactive mode
5. **Process the output** and continue your work

## Quick reference for non-interactive invocation

```
gemini -p "PROMPT"                    # Gemini CLI
copilot --prompt "PROMPT"             # GitHub Copilot CLI
claude -p "PROMPT"                    # Claude Code
aider --message "PROMPT" --yes        # Aider
echo "PROMPT" | kimi                  # Kimi CLI
agent -p "PROMPT"                     # Cursor CLI
```

## Multi-agent workflows

You can chain multiple agents for complex SDLC workflows:

1. **Research phase**: Use Gemini CLI to analyze requirements and existing code
2. **Implementation phase**: Use Claude Code or Aider for the actual coding
3. **Front-end phase**: Use Kimi CLI for UI components
4. **Review phase**: Use Copilot CLI to create PRs with review
5. **Iteration phase**: Use Aider for incremental fixes based on review feedback

## Important rules

- Always check if the target CLI is available before delegating (use `which <command>`)
- Use non-interactive mode to capture output - never launch interactive sessions
- If a CLI is not installed, inform the user and provide the install command
- Prefer delegating to the agent best suited for the task type
- Capture output using command substitution: `RESULT=$(command)`
- If a task is simple enough for you to handle directly, don't delegate - only delegate complex or specialized tasks

Related Skills

kimi-cli

7
from roy2392/sdlc-subagents-cli

Delegate tasks to Kimi CLI for front-end development, full-stack coding, and long-context code understanding. Powered by Moonshot AI's Kimi K2 model with extended context support.

gemini-cli

7
from roy2392/sdlc-subagents-cli

Delegate tasks to Gemini CLI for context engineering, large codebase analysis, research-heavy coding tasks, and documentation generation. Gemini has a 1M token context window and built-in Google Search grounding.

cursor-cli

7
from roy2392/sdlc-subagents-cli

Delegate tasks to Cursor CLI (agent command) for IDE-grade coding in the terminal, cloud agent handoff for long-running tasks, and rapid prototyping with multi-model support.

copilot-cli

7
from roy2392/sdlc-subagents-cli

Delegate tasks to GitHub Copilot CLI for GitHub workflow automation, PR creation and review, issue management, and repository operations. Deeply integrated with GitHub's ecosystem.

claude-code

7
from roy2392/sdlc-subagents-cli

Delegate tasks to Claude Code for complex refactoring, architecture-level changes, multi-file edits, in-depth code review, and debugging. Excels at deep reasoning about code structure.

aider

7
from roy2392/sdlc-subagents-cli

Delegate tasks to Aider for AI pair programming with auto-git-commits, model-agnostic LLM support, and architect mode for complex changes. Works with any LLM provider.

tdd-orchestrator

31392
from sickn33/antigravity-awesome-skills

Master TDD orchestrator specializing in red-green-refactor discipline, multi-agent workflow coordination, and comprehensive test-driven development practices.

social-orchestrator

31392
from sickn33/antigravity-awesome-skills

Orquestrador unificado de canais sociais — coordena Instagram, Telegram e WhatsApp em um unico fluxo de trabalho. Publicacao cross-channel, metricas unificadas, reutilizacao de conteudo por formato, agendamento sincronizado e gestao centralizada de campanhas em todos os canais simultaneamente.

multi-agent-task-orchestrator

31392
from sickn33/antigravity-awesome-skills

Route tasks to specialized AI agents with anti-duplication, quality gates, and 30-minute heartbeat monitoring

antigravity-skill-orchestrator

31392
from sickn33/antigravity-awesome-skills

A meta-skill that understands task requirements, dynamically selects appropriate skills, tracks successful skill combinations using agent-memory-mcp, and prevents skill overuse for simple tasks.

agent-orchestrator

31392
from sickn33/antigravity-awesome-skills

Meta-skill que orquestra todos os agentes do ecossistema. Scan automatico de skills, match por capacidades, coordenacao de workflows multi-skill e registry management.

acceptance-orchestrator

31392
from sickn33/antigravity-awesome-skills

Use when a coding task should be driven end-to-end from issue intake through implementation, review, deployment, and acceptance verification with minimal human re-intervention.