You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@howaboua/opencode-planning-toolkit

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@howaboua/opencode-planning-toolkit - npm Package Compare versions

Comparing version
0.0.1
to
0.0.2
+1
-4
package.json
{
"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

![opencode-roadmap](https://github.com/user-attachments/assets/e2479a72-ec65-457f-9503-bf2d01580c70)
## Installation

@@ -37,3 +34,3 @@

"plugins": [
"@howaboua/opencode-planning-toolkit"
"@howaboua/opencode-planning-toolkit@latest"
]

@@ -40,0 +37,0 @@ }

@@ -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 @@ }