Skip to content

Commit 8750e94

Browse files
authored
docs(presets): add lean preset README and enrich catalog metadata (#2340)
* 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
1 parent 52c0a5f commit 8750e94

3 files changed

Lines changed: 55 additions & 1 deletion

File tree

presets/catalog.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"schema_version": "1.0",
3-
"updated_at": "2026-04-10T00:00:00Z",
3+
"updated_at": "2026-04-24T00:00:00Z",
44
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/presets/catalog.json",
55
"presets": {
66
"lean": {
@@ -10,7 +10,15 @@
1010
"description": "Minimal core workflow commands - just the prompt, just the artifact",
1111
"author": "github",
1212
"repository": "https://github.com/github/spec-kit",
13+
"license": "MIT",
1314
"bundled": true,
15+
"requires": {
16+
"speckit_version": ">=0.6.0"
17+
},
18+
"provides": {
19+
"commands": 5,
20+
"templates": 0
21+
},
1422
"tags": [
1523
"lean",
1624
"minimal",

presets/lean/README.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Lean Workflow
2+
3+
A minimal preset that strips the Spec Kit workflow down to its essentials — just the prompt, just the artifact.
4+
5+
## When to Use
6+
7+
Use Lean when you want the structured specify → plan → tasks → implement pipeline without the ceremony of the full templates. Each command produces a single focused Markdown file with no boilerplate sections to fill in.
8+
9+
## Commands Included
10+
11+
| Command | Output | Description |
12+
|---------|--------|-------------|
13+
| `speckit.specify` | `spec.md` | Create a specification from a feature description |
14+
| `speckit.plan` | `plan.md` | Create an implementation plan from the spec |
15+
| `speckit.tasks` | `tasks.md` | Create dependency-ordered tasks from spec and plan |
16+
| `speckit.implement` | *(code)* | Execute all tasks in order, marking progress |
17+
| `speckit.constitution` | `constitution.md` | Create or update the project constitution |
18+
19+
## What It Replaces
20+
21+
Lean overrides the five core workflow commands with self-contained prompts that produce each artifact directly — no separate template files involved. The result is a shorter, more direct workflow.
22+
23+
## Installation
24+
25+
```bash
26+
# Lean is a bundled preset — no download needed
27+
specify preset add lean
28+
```
29+
30+
## Development
31+
32+
```bash
33+
# Test from local directory
34+
specify preset add --dev ./presets/lean
35+
36+
# Verify commands resolve
37+
specify preset resolve speckit.specify
38+
39+
# Remove when done
40+
specify preset remove lean
41+
```
42+
43+
## License
44+
45+
MIT

presets/lean/preset.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ tags:
4848
- "lean"
4949
- "minimal"
5050
- "workflow"
51+
- "core"

0 commit comments

Comments
 (0)