You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+41-6Lines changed: 41 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,15 @@
16
16
17
17
## TLDR / Quickstart
18
18
19
-
**Want to install these prompts as slash commands?** Use the [slash-command-manager](https://github.com/liatrio-labs/slash-command-manager) utility to install them in all of your local AI tools:
19
+
### What is this?
20
+
21
+
This repository provides **structured prompts** (Markdown files) that guide AI assistants through a complete software development workflow: from initial feature idea → detailed specification → task breakdown → implementation → validation. Think of them as reusable playbooks that keep AI agents focused and consistent.
22
+
23
+
### Installation Options
24
+
25
+
#### Option A: Install as Slash Commands (Recommended)
26
+
27
+
Install these prompts as native `/slash-commands` in your AI assistant (Cursor, Windsurf, Claude Code, etc.) using the [slash-command-manager](https://github.com/liatrio-labs/slash-command-manager) utility:
**Want to use the prompts directly?** Copy-paste them into your AI assistant:
37
+
**What this command does:**
38
+
-`uvx` runs Python tools without installation (like `npx` for Python)
39
+
- Fetches the `slash-command-manager` tool from GitHub
40
+
-`slash-man generate` auto-detects your installed AI assistants
41
+
- Downloads the prompt files from `prompts/` directory
42
+
- Installs them as slash commands like `/generate-spec`, `/manage-tasks`, etc.
43
+
44
+
**Result:** You can now type `/generate-spec` in your AI assistant to start the workflow.
45
+
46
+
#### Option B: Manual Copy-Paste (No Installation)
47
+
48
+
Copy the prompt files directly from `prompts/` and paste them into your AI chat. The AI will follow the structured instructions in each prompt.
49
+
50
+
### The 4-Step Workflow
51
+
52
+
Each step uses a different prompt file and produces specific artifacts:
30
53
31
-
1.**Generate a spec:** Copy `prompts/generate-spec.md` into your AI chat → AI assesses scope, asks structured questions (numbered/lettered options), optionally reviews codebase, generates spec, iterates with you → Spec saved to `docs/specs/01-spec-<feature-name>/01-spec-<feature-name>.md`
54
+
1.**Generate a Spec** (`prompts/generate-spec.md`)
55
+
-**What it does:** Guides AI to ask clarifying questions, assess scope, and create a detailed specification document
56
+
-**Output:**`docs/specs/01-spec-<feature-name>/01-spec-<feature-name>.md` — A comprehensive spec with goals, requirements, demo criteria, and success metrics
57
+
-**Why:** Ensures everyone (human and AI) agrees on what to build before writing code
32
58
33
-
2.**Generate task list:** Point AI to spec (or let it auto-discover) and use `prompts/generate-task-list-from-spec.md` → AI analyzes spec, generates parent tasks for review, then after confirmation expands into sub-tasks with "Relevant Files" section → Saved to `docs/specs/01-spec-<feature-name>/01-tasks-<feature-name>.md`
-**What it does:** Breaks the spec into parent tasks (demoable units) and detailed sub-tasks with relevant files
61
+
-**Output:**`docs/specs/01-spec-<feature-name>/01-tasks-<feature-name>.md` — A checklist of all work items with `[ ]` not started, `[~]` in progress, `[x]` complete
62
+
-**Why:** Creates an actionable implementation plan with clear checkpoints
34
63
35
-
3.**Manage tasks:** Use `prompts/manage-tasks.md` while implementing → Choose checkpoint mode (Continuous/Task/Batch), execute with verification checklists, create proof artifacts **before** commits → Proofs saved to `docs/specs/01-spec-<feature-name>/01-proofs/[NN]-task-[TT]-proofs.md`
64
+
3.**Manage Tasks** (`prompts/manage-tasks.md`)
65
+
-**What it does:** Guides execution with verification checklists, creates proof artifacts (screenshots, test results, CLI output) before each commit
66
+
-**Output:**`docs/specs/01-spec-<feature-name>/01-proofs/[NN]-task-[TT]-proofs.md` — Evidence that each task works as intended
67
+
-**Why:** Maintains quality and creates a verifiable audit trail of what was built
36
68
37
-
4.**Validate:** Use `prompts/validate-spec-implementation.md` (or let it auto-discover) → AI verifies proof artifacts, applies validation gates, produces coverage matrix and validation report
0 commit comments