mirror of
https://github.com/github/spec-kit.git
synced 2026-07-03 12:28:06 +08:00
* docs(presets): add lean preset README and enrich catalog metadata - Add README.md documenting the lean workflow preset, its commands, when to use it, and development instructions. - Add license, requires.speckit_version, and provides.commands fields to the lean preset catalog entry. - Add "core" tag to preset.yml for discoverability. * fix: bump catalog updated_at and add provides.templates for consistency Address PR review feedback: - Bump updated_at to reflect catalog modification time - Add provides.templates (0) to lean preset entry for consistency with catalog schema used in catalog.community.json
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
schema_version: "1.0"
|
|
|
|
preset:
|
|
id: "lean"
|
|
name: "Lean Workflow"
|
|
version: "1.0.0"
|
|
description: "Minimal core workflow commands - just the prompt, just the artifact"
|
|
author: "github"
|
|
repository: "https://github.com/github/spec-kit"
|
|
license: "MIT"
|
|
|
|
requires:
|
|
speckit_version: ">=0.6.0"
|
|
|
|
provides:
|
|
templates:
|
|
- type: "command"
|
|
name: "speckit.specify"
|
|
file: "commands/speckit.specify.md"
|
|
description: "Lean specify - create spec.md from a feature description"
|
|
replaces: "speckit.specify"
|
|
|
|
- type: "command"
|
|
name: "speckit.plan"
|
|
file: "commands/speckit.plan.md"
|
|
description: "Lean plan - create plan.md from the spec"
|
|
replaces: "speckit.plan"
|
|
|
|
- type: "command"
|
|
name: "speckit.tasks"
|
|
file: "commands/speckit.tasks.md"
|
|
description: "Lean tasks - create tasks.md from plan and spec"
|
|
replaces: "speckit.tasks"
|
|
|
|
- type: "command"
|
|
name: "speckit.implement"
|
|
file: "commands/speckit.implement.md"
|
|
description: "Lean implement - execute tasks from tasks.md"
|
|
replaces: "speckit.implement"
|
|
|
|
- type: "command"
|
|
name: "speckit.constitution"
|
|
file: "commands/speckit.constitution.md"
|
|
description: "Lean constitution - create or update project constitution"
|
|
replaces: "speckit.constitution"
|
|
|
|
tags:
|
|
- "lean"
|
|
- "minimal"
|
|
- "workflow"
|
|
- "core"
|