@howaboua/opencode-planning-toolkit
Advanced tools
+1
-4
| { | ||
| "name": "@howaboua/opencode-planning-toolkit", | ||
| "version": "0.0.1", | ||
| "version": "0.0.2", | ||
| "description": "Comprehensive planning toolkit for OpenCode: manage specifications, track study plans, and automate roadmaps.", | ||
@@ -27,5 +27,2 @@ "main": "index.ts", | ||
| }, | ||
| "publishConfig": { | ||
| "access": "public" | ||
| }, | ||
| "dependencies": { | ||
@@ -32,0 +29,0 @@ "@opencode-ai/plugin": "latest" |
+4
-7
@@ -9,12 +9,7 @@ # OpenCode Planning Toolkit | ||
| **For developers:** | ||
| - Enables planning with any and all agents | ||
| - Organize work into reusable specs and actionable plans | ||
| - Track progress with clear status (active/done) | ||
| - Maintain project-wide standards that apply across all work | ||
| **For AI agents:** | ||
| - Automatically receive `<available_plans>` in the system prompt with all plan names and descriptions | ||
| - Read context-rich plans before starting work | ||
| - Follow consistent constraints from linked specs | ||
| - Understand what's done and what's active | ||
@@ -29,2 +24,4 @@ ## Tools | ||
|  | ||
| ## Installation | ||
@@ -37,3 +34,3 @@ | ||
| "plugins": [ | ||
| "@howaboua/opencode-planning-toolkit" | ||
| "@howaboua/opencode-planning-toolkit@latest" | ||
| ] | ||
@@ -40,0 +37,0 @@ } |
+3
-1
@@ -47,3 +47,5 @@ /** | ||
| export const listPlans = async (directory: string) => { | ||
| const glob = new Bun.Glob(join(directory, "docs/plans/*.md")) | ||
| const plansDir = join(directory, "docs/plans") | ||
| if (!(await Bun.file(plansDir).exists())) return [] | ||
| const glob = new Bun.Glob(join(plansDir, "*.md")) | ||
| return Array.fromAsync(glob.scan()) | ||
@@ -50,0 +52,0 @@ } |
29615
0.05%459
0.44%144
-2.04%