diff --git a/AGENTS.md b/AGENTS.md index 82d1e0a..e8d8b13 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -62,7 +62,6 @@ is unavailable). - `constants.ts` — static constants (slash command, task file names, reflection/review patterns) - `tests/` — bun test suites for parser and DAG behavior -- `skills/ralpi-use.md` — Pi skill definition for task execution - `prompts/task-manager.md` — Pi prompt for task planning ## Runtime state diff --git a/package.json b/package.json index 8773040..c9817e9 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "files": [ "index.ts", "src/", - "skills/", "prompts/", "README.md", "LICENSE" @@ -41,9 +40,6 @@ "extensions": [ "./index.ts" ], - "skills": [ - "./skills" - ], "prompts": [ "./prompts" ] diff --git a/skills/ralpi-use.md b/skills/ralpi-use.md deleted file mode 100644 index f887220..0000000 --- a/skills/ralpi-use.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -description: Execute tasks from ralpi task files / PRDs using DAG-based dependency resolution, with persistent progress tracking and reflection support ---- - -# ralpi-task - -Execute tasks from a ralpi task file (checkbox, Fio, phased, or YAML) using DAG-based dependency resolution, with persistent progress tracking and reflection support. - -## When to Use - -- User asks to execute a task file, PRD, or task list (e.g. "run the tasks", "execute the plan") -- User wants to run a full ralpi loop from a task file in the project -- User wants to resume an interrupted or paused ralpi run -- User wants to plan new tasks with the task-manager prompt - -## Usage - -``` -/ralpi [task-file] # No args → show plan; path arg → run all tasks -/ralpi-run [task-file] # Run all tasks (auto-resumes if progress exists) -/ralpi-resume [task-file] # Resume paused/interrupted execution -/ralpi-plan [prompt] # Open the Task Manager to plan tasks -``` - -Note: ralpi runs whole task plans — there is no single-task or next-batch subcommand. To execute only part of a plan, edit the task file and remove/adjust the tasks first. - -## Task File Location - -Default: `README.md` in the current directory. Can be overridden with an explicit path (`@path`, `./path`, `*.md`, `*.yaml`, `*.yml`). - -## Reflection Format - -After completing a task, the task agent ends its response with a reflection block, which the extension parses and passes to downstream tasks: - -``` -## REFLECTION -SUMMARY: [1-2 sentence description of what was accomplished] -FILES: [comma-separated list of files created or modified] -LEARNINGS: -- [key decision, pattern, or architectural choice] -- [important API or interface details] -- [anything downstream tasks need to know] -BLOCKERS: [any unresolved issues, or 'none'] -```