opencode-plan-manager 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +19 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![OpenCode Plugin](https://img.shields.io/badge/OpenCode-Plugin-black)](https://opencode.ai)
4
4
  [![TypeScript](https://img.shields.io/badge/TypeScript-blue)](https://www.typescriptlang.org/)
5
5
  [![Bun](https://img.shields.io/badge/Bun-orange)](https://bun.sh)
6
+ [![Test](https://github.com/yurihbm/opencode-plan-manager/actions/workflows/test.yml/badge.svg)](https://github.com/yurihbm/opencode-plan-manager/actions/workflows/test.yml)
6
7
 
7
8
  **AI-Native Implementation Planning for Modern Agentic Workflows.**
8
9
 
@@ -23,6 +24,21 @@ Plan Manager solves this by enforcing **Plan-to-Code Determinism**:
23
24
 
24
25
  ---
25
26
 
27
+ ## ⚙️ Installation
28
+
29
+ Add the plugin to your OpenCode configuration file (~/.config/opencode/opencode.json or similar):
30
+
31
+ ```json
32
+ {
33
+ "$schema": "https://opencode.ai/config.json",
34
+ "plugin": ["opencode-plan-manager@0.1.0"]
35
+ }
36
+ ```
37
+
38
+ > ⚠️ By specifying the version, you improve OpenCode startup time.
39
+
40
+ ---
41
+
26
42
  ## 🤖 The Agentic Workflow
27
43
 
28
44
  This plugin is optimized for a dual-agent hierarchy, utilizing specialized prompts found in `src/prompts/`:
@@ -34,6 +50,9 @@ This plugin is optimized for a dual-agent hierarchy, utilizing specialized promp
34
50
  - **Logic:** If a plan exists, it _must_ follow it. If a task is too complex, it will suggest calling the Plan Agent first.
35
51
  - **Task Management:** Automatically handles task state transitions from `pending` to `in_progress` to `done`.
36
52
 
53
+ > ⚠️ 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 prompts and system reminders to optimize them for the provided tools, but does not create new agent types.
55
+
37
56
  ---
38
57
 
39
58
  ## ✨ Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-plan-manager",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A plugin for managing plans in OpenCode.",
5
5
  "author": "Yuri Maciel <35900428+yurihbm@users.noreply.github.com>",
6
6
  "license": "MIT",