fix: rename plan skill to generate to avoid name collision with built-in /plan

This commit is contained in:
2026-03-27 09:39:13 -04:00
parent e9d87fa6a1
commit 8c4e123976
5 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@
"name": "agent-loop", "name": "agent-loop",
"source": "./", "source": "./",
"description": "Autonomous generator-evaluator agent loop for long-running coding tasks. Plan interactively, then execute with full visibility.", "description": "Autonomous generator-evaluator agent loop for long-running coding tasks. Plan interactively, then execute with full visibility.",
"version": "0.3.0", "version": "0.4.0",
"author": { "author": {
"name": "Sheldon" "name": "Sheldon"
}, },

View File

@@ -1,6 +1,6 @@
{ {
"name": "agent-loop", "name": "agent-loop",
"version": "0.3.0", "version": "0.4.0",
"description": "Autonomous generator-evaluator agent loop for long-running coding tasks. Plan with /agent-loop:init, then execute with /agent-loop:run.", "description": "Autonomous generator-evaluator agent loop for long-running coding tasks. Plan with /agent-loop:init, then execute with /agent-loop:run.",
"author": { "author": {
"name": "Sheldon" "name": "Sheldon"

View File

@@ -1,5 +1,5 @@
--- ---
name: plan name: generate
description: "Generate prd.json and sprint contracts by dispatching the planner agent. Does not write source code." description: "Generate prd.json and sprint contracts by dispatching the planner agent. Does not write source code."
--- ---

View File

@@ -29,7 +29,7 @@ bash "$(ls -d ~/.claude/plugins/cache/agent-loop/agent-loop/*/setup.sh 2>/dev/nu
> `.loop/` is ready. Next: > `.loop/` is ready. Next:
> ``` > ```
> /agent-loop:plan > /agent-loop:generate
> ``` > ```
**That's it. Do not do anything else. Do not read specs. Do not plan. Do not write code.** **That's it. Do not do anything else. Do not read specs. Do not plan. Do not write code.**

View File

@@ -1,6 +1,6 @@
--- ---
name: run name: run
description: Execute the generator-evaluator loop interactively inside Claude Code. Dispatches subagents with full visibility. Run /agent-loop:init and /agent-loop:plan first. description: Execute the generator-evaluator loop interactively inside Claude Code. Dispatches subagents with full visibility. Run /agent-loop:init and /agent-loop:generate first.
--- ---
# /run — Execute Agent Loop Inside Claude Code # /run — Execute Agent Loop Inside Claude Code
@@ -23,7 +23,7 @@ Follow this orchestration sequence exactly.
### Step 0: Validate Prerequisites ### Step 0: Validate Prerequisites
1. Check `.loop/config.json` exists. If not: tell user to run `/agent-loop:init` and stop. 1. Check `.loop/config.json` exists. If not: tell user to run `/agent-loop:init` and stop.
2. Check `.loop/prd.json` exists. If not: tell user to run `/agent-loop:plan` and stop. 2. Check `.loop/prd.json` exists. If not: tell user to run `/agent-loop:generate` and stop.
3. **Validate prd.json schema.** Read the file and verify: 3. **Validate prd.json schema.** Read the file and verify:
- Has a `userStories` array (NOT `sprints`, `stories`, or `tasks`) - Has a `userStories` array (NOT `sprints`, `stories`, or `tasks`)
- Each story has: `id`, `title`, `passes`, `priority` - Each story has: `id`, `title`, `passes`, `priority`