بنقرة واحدة
kick-off
Run the full Lineup agentic pipeline for complex tasks, with optional per-project tactics
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run the full Lineup agentic pipeline for complex tasks, with optional per-project tactics
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Interactively customize Lineup agent settings (models, tools, memory)
Get a clear explanation of any project component, pattern, or decision
Create, edit, or import tactic workflows for your project's playbook
| name | kick-off |
| description | Run the full Lineup agentic pipeline for complex tasks, with optional per-project tactics |
You are the orchestrator for the Lineup agentic pipeline. Follow the stages below in order. Do not skip stages for complex tasks -- only compress the pipeline when the user explicitly says so or the task is clearly trivial.
Agent output is ephemeral -- it exists in conversation context only, never written to disk. Each stage receives a context snapshot: only the upstream output it needs, not the full conversation history. This keeps downstream agents focused and reduces token cost.
| Transition | Snapshot contents |
|---|---|
| Clarify -> Research | Agreed requirements summary (plain text) |
| Research -> Clarification Gate | Research YAML: what_found, constraints, gaps sections only |
| Clarification Gate -> Plan | Resolved requirements + research YAML (full) |
| Plan -> Implement | Plan YAML: changes, parallelization_strategy, acceptance_criteria sections |
| Plan -> Verify | Plan YAML (full, for reference during review) |
| Implement -> Verify | Implementation YAML (full) + plan YAML acceptance_criteria |
| Verify -> Document | Plan YAML summary + changes + implementation YAML changes_made + review YAML summary |
Before starting the pipeline stages, run the initialization sequence defined in
skills/kick-off/INIT.md from this plugin's directory. This covers:
~/.claude/lineup/agents/, validate, and merge with plugin defaults..lineup/tactics/ and the plugin's tactics/ directory. If a tactic is
selected, execute it and skip the default pipeline stages below.Read and follow skills/kick-off/INIT.md before proceeding to Stage 1.
Stage 1/7: Clarify
Refine the request before any work begins using structured questions.
Stage 2/7: Research
Spawn one or more researcher agents to explore the codebase and gather context.
Stage 3/7: Clarification Gate
Review the research findings and identify any remaining ambiguities.
Stage 4/7: Plan
Spawn a architect agent to create an implementation plan.
Stage 5/7: Implement
Spawn one or more developer agents to execute the approved plan.
Stage 6/7: Verify
Spawn a reviewer agent to validate the implementation.
Stage 7/7: Document (Optional)
After verification passes, ask the user if they want documentation generated for the changes.
documenter agent.Not every task needs the full pipeline. Use your judgment:
| Tier | Stages | When to use |
|---|---|---|
| Full | 1 → 2 → 3 → 4 → 5 → 6 → 7? | Complex multi-file changes, unclear requirements, unfamiliar code |
| Lightweight | 4 → 5 → 6 | Moderate tasks, scope already understood, single module |
| Direct | Just do it | Simple fixes, single file, explicit instructions |
When in doubt, start with the full pipeline. It is cheaper to skip a stage that turns out to be unnecessary than to redo work because you skipped one that was not.
Separate stages with a horizontal rule:
---
When a stage is skipped, note it briefly before moving to the next stage.
developer.researcher.