kickoff

Compile a rough task idea into a scoped prompt, routed skills, and verification checklist.

3|Updated Jul 2, 2026
One-click install
npx skills add https://github.com/ArangoGutierrez/claude-toolkit --skill kickoff-arangogutierrez
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: kickoff
Source: https://github.com/ArangoGutierrez/claude-toolkit/tree/main/.claude/skills/kickoff
Command: npx skills add https://github.com/ArangoGutierrez/claude-toolkit --skill kickoff-arangogutierrez

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Starting work from a half-formed idea often means manually scoping the task, remembering which skills to invoke, and writing acceptance criteria by hand. This Skill turns a rough opener into a scoped prompt with routed skills and a verification checklist in one command, then plants the session goal so later verification hooks can confirm checks actually ran. ## Core Features & Use Cases - Agentic enrichment: A cheap tool-calling LLM inspects the repository via read-only, multi-turn tools before producing the scoped prompt, routed skills, execution mode (solo or orchestrate), budget, and a runnable acceptance checklist. - Fail-open design: If the engine or model is unreachable, the raw idea passes through untouched with a KICKOFF_PASSTHROUGH marker, so the kickoff never blocks work. - Goal and tier integration: Sets the session goal with budget and complexity tier (T1-T4), then enters brainstorming or dispatches an orchestration plan by dependency waves. - Use Case: Type "/kickoff add retry-with-backoff to the S3 upload client" and receive a sharpened task, routed skills (brainstorming, planning, TDD), and runnable acceptance checks planted in the session goal. ## Quick Start Ask the assistant to run /kickoff followed by your rough idea, for example "/kickoff add caching to the API client", and it will scope the task and set the session goal automatically.

Frequently Asked Questions about kickoff

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I turn a rough idea into a scoped task in Claude Code?▼

Run /kickoff followed by your rough idea. A tool-calling LLM inspects the repository with read-only tools and returns a scoped prompt, routed skills, and a verification checklist, then sets the session goal and enters brainstorming.

What happens if the kickoff enrichment engine is unavailable?▼

The skill is fail-open. If the engine module is missing or the model is unreachable, enrich.sh prints a KICKOFF_PASSTHROUGH marker and your raw idea proceeds directly into brainstorming with no checklist, so the kickoff never blocks work.

What environment variables does the kickoff engine require?▼

Set PANEL_DA_API_KEY and CLAUDE_PANEL_DA_ENDPOINT to point at an OpenAI-compatible tool-calling endpoint. KICKOFF_MODEL optionally selects the model. Without these, the skill runs in fail-open passthrough mode.

Why does the kickoff enrichment call need a long Bash timeout?▼

The engine's wall-clock budget is 300 seconds plus a 30-second margin, so the Bash tool timeout must be set to 420000 ms. The default 120-second timeout kills legitimate runs mid-flight and looks like an engine stall.

When should I not use /kickoff?▼

Skip it when the task is already scoped: invoke the goal skill and the implementation skill directly instead. Kickoff is the front door for half-formed ideas, not a required step for well-defined work.

Can kickoff orchestrate multi-task work instead of a solo session?▼

Yes. When the engine returns Execution = orchestrate with a Dispatch plan, the skill groups tasks into dependency waves and drives them through the chief-dispatch workflow, or hands the JSON seed to /orchestrate for larger fan-out work.