AgentSkillsCN

plan

从模板中选择并创建方案

SKILL.md
--- frontmatter
name: plan
description: Select and create a plan from templates
allowed-tools: Read, Write, Glob

Help select the right plan template and create a plan file.

Instructions

  1. Read the available templates in docs/spec/.llm/templates/:

    TemplateUse When
    idea.plan.llmStarting from scratch -- idea to working project
    fullstack.plan.llmFull-stack feature (DB -> API -> UI -> E2E)
    feature.plan.llmBackend-focused feature (6 phases)
    review.plan.llmReview/iteration cycle with quality gates
    bugfix.plan.llmBug investigation and fix
    self-review.plan.llmAudit the LLM orchestration system
    codegen.plan.llmSpec-first code generation (requires spec before code)
    requirements.plan.llmMulti-session requirement gathering to produce a spec
    plan.template.llmGeneric -- anything else
  2. Based on the user's description, recommend the best template.

  3. Create the plan file:

    code
    cp docs/spec/.llm/templates/<template> docs/spec/.llm/plans/<name>.plan.llm
    
  4. Pre-fill the plan with:

    • Metadata (timestamp, status: planning)
    • Objective from the user's description
    • Initial implementation steps
  5. Present the plan to the user for review before proceeding.

Description

$ARGUMENTS