opencode-plan-manager 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ Add the plugin to your OpenCode configuration file (~/.config/opencode/opencode.
|
|
|
31
31
|
```json
|
|
32
32
|
{
|
|
33
33
|
"$schema": "https://opencode.ai/config.json",
|
|
34
|
-
"plugin": ["opencode-plan-manager@0.
|
|
34
|
+
"plugin": ["opencode-plan-manager@0.2.0"]
|
|
35
35
|
}
|
|
36
36
|
```
|
|
37
37
|
|
|
@@ -44,14 +44,16 @@ Add the plugin to your OpenCode configuration file (~/.config/opencode/opencode.
|
|
|
44
44
|
This plugin is optimized for a dual-agent hierarchy, utilizing specialized prompts found in `src/prompts/`:
|
|
45
45
|
|
|
46
46
|
1. **Plan Agent (`plan.txt`):** A high-reasoning architect that transforms vague requirements into structured, phased implementation plans.
|
|
47
|
-
- **
|
|
48
|
-
- **Workflow:** Follows a 4-step process: Context Discovery → Strategy Mapping → Phase Definition → Task Breakdown.
|
|
47
|
+
- **Workflow:** Follows a 4-step process: Analysis → Deduplication → Context Decision → Plan Creation.
|
|
49
48
|
2. **Build Agent (`build.txt`):** An implementation specialist that executes plans with high precision.
|
|
50
49
|
- **Logic:** If a plan exists, it _must_ follow it. If a task is too complex, it will suggest calling the Plan Agent first.
|
|
51
50
|
- **Task Management:** Automatically handles task state transitions from `pending` to `in_progress` to `done`.
|
|
52
51
|
|
|
53
52
|
> ⚠️ This plugin uses the built-in `Plan` and `Build` agents (see [https://opencode.ai/docs/agents/](https://opencode.ai/docs/agents/))
|
|
54
|
-
> and adds custom
|
|
53
|
+
> and adds custom system prompts to optimize them for the provided tools, but does not create new agent types.
|
|
54
|
+
|
|
55
|
+
> ℹ️ If you provide custom prompts for `Plan` or `Build` agents at your configuration file, this plugin will NOT inject its optimized prompts.
|
|
56
|
+
> Your prompts have priority over the plugin's defaults.
|
|
55
57
|
|
|
56
58
|
---
|
|
57
59
|
|
|
@@ -61,7 +63,7 @@ This plugin is optimized for a dual-agent hierarchy, utilizing specialized promp
|
|
|
61
63
|
- 📉 **Token Optimization:** Native support for `summary` and `selective` views to keep agent context windows clean and focused.
|
|
62
64
|
- 🔄 **Atomic State Transitions:** Safe folder movements (`rename()`) ensure that plan status is always in sync with the filesystem.
|
|
63
65
|
- ✅ **Deterministic Task Management:** Support for three task states (`[ ]`, `[~]`, `[x]`) with batch update capabilities.
|
|
64
|
-
- 🚀 **High Performance:** Metadata-only listing for fast scanning of
|
|
66
|
+
- 🚀 **High Performance:** Metadata-only listing for fast scanning of plans.
|
|
65
67
|
|
|
66
68
|
---
|
|
67
69
|
|