Skip to main content
GeneralCodename-Inc

spectre-kickoff

👻 | Project kickoff with deep research & MVP pathfinding - primary agent

Stars
142
Source
Codename-Inc/spectre
Updated
2026-05-28
Slug
Codename-Inc--spectre--spectre-kickoff
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/Codename-Inc/spectre/HEAD/plugins/spectre-codex/skills/spectre-kickoff/SKILL.md -o .claude/skills/spectre-kickoff.md

Drops the SKILL.md into .claude/skills/spectre-kickoff.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

kickoff

Deep research entry point: investigate the codebase and external best practices, then hand off a written kickoff doc with a gap analysis and MVP path. Clear on WHAT to produce; the research method is yours.

Inputs

  • $ARGUMENTS — the project/feature context (the current command arguments). If empty, ask the user for it before any tools.
  • Optional explicit managed feature name/root or an artifact beneath one.
  • Any docs the user references — read them FULLY in main context (not via subagent): vision, constraints, decisions, open questions.

Working set (late-bound — read at runtime, never inline)

  • Codebase, via read-only research agents (see Method).
  • FEATURE_ROOT = .spectre/features/<feature-name>/, resolved from the input or proposed below; current git commit/branch for metadata + permalinks.

Feature root contract

  • Reuse a managed FEATURE_ROOT only when explicit/current-thread evidence ties it to this work (physical directory wins; never branch/recency/lifecycle/scans); distinct work ignores ambient roots. Otherwise, including on collision, standalone MUST first load and follow Skill(spectre-feature-root) through DONE; orchestrated calls escalate. Keep writes beneath it and pass it unchanged.

Method / guardrails

  1. Acknowledge first. Open with a reply naming what we're exploring, the proposed feature name/root, the decision we're heading toward, and what success looks like. No tool calls in this first turn.

  2. Decompose the project into research areas (components, dirs/files, patterns, data flows, code to extend); track them with TodoWrite.

  3. Research in parallel, read-only — locator → analyzer-on-findings → breadth. Spawn follow-ups if a thread is shallow. Use Context7 MCP for central 3rd-party libs.

    Agent Task Required output
    @spectre_finder relevant files, entry points, handlers, models file paths by domain
    @spectre_analyst data flow, dependencies, behavior, edge cases file:line for ALL findings
    @spectre_patterns similar impls, patterns to follow/avoid code examples w/ file:line
    @spectre_web_research best practices, prior art, pitfalls findings WITH links

    Demand file:line evidence (codebase) and links (external). Returns come back as compressed in-thread summaries — no intermediate report files.

  4. Wait for all agents before synthesizing; update TodoWrite as each lands.

  5. Synthesize → gap → MVP → options. Connect findings across components with file:line throughout; gap analysis = current capabilities (file refs) vs required, split missing-vs-modify; MVP = core value + minimum slice + what to defer; give 2–3 options each with summary, key decisions, code to leverage (refs), new work, effort, trade-offs; surface decision points and open questions.

Outputs + DONE

Write the kickoff doc to {FEATURE_ROOT}/kickoff/{feature-name}_kickoff.md (mkdir -p first; timestamp-suffix if the file exists). The kickoff doc begins below its title with Feature: <feature-name> and Feature Root: .spectre/features/<feature-name>. Save it before presenting the summary.

  • YAML frontmatter: date, git_commit, branch, repo, topic, tags, status.
  • Required sections, in order: Title · Metadata · Project Context · Research Summary · Detailed Codebase Findings (by area, file:line, snippets) · Code References (table) · Architecture Insights (patterns, conventions, constraints) · External Research (with links) · Gap Analysis · MVP Suggestion · Implementation Options (2–3, with trade-offs) · Decision Points · Open Questions · Related Resources.
  • If on main/pushed, convert file refs to GitHub permalinks: https://github.com/{owner}/{repo}/blob/{commit}/{file}#L{line}.

DONE when: doc saved with every required section populated, all findings carry file:line (or external links), gap analysis and an MVP path are stated, and the saved summary + scoping questions have been presented to the user.

Handoff

Present a compact summary (vision · what exists w/ refs · architecture insights · external learnings · gap · MVP path) plus 1–3 scoping questions, each offering concrete options (e.g. "Option A leverages code:line vs Option B"). Then engage scoping: wait, ask follow-ups, and research answerable questions instead of asking them — do not move to planning until ambiguities resolve. Fold clarifications back into the doc under ## Scoping Clarifications [timestamp]; spawn more research if needed.

When resolved, offer the next step:

  1. Proceed to scope → spectre-scope with FROM_KICKOFF=true, KICKOFF_DOC={path}, SKIP_EXPLORATION=true, + context summary.
  2. Skip to planning → spectre-plan with the kickoff doc as context.

Escalate-If

  • No project context supplied and none inferable → ask the user before researching.
  • Research stays shallow / no file:line evidence after follow-ups → say so and present partial findings rather than fabricating depth.
  • Scoping ambiguities can't be resolved by research → surface them as Open Questions; do not proceed to planning.