@agentuity/opencode 0.1.24 → 0.1.25

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 +9 -7
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -95,6 +95,7 @@ Cadence enables the agent team to work autonomously on complex tasks across mult
95
95
  ```
96
96
 
97
97
  Lead will:
98
+
98
99
  1. Create loop state in KV storage (`agentuity-opencode-tasks`)
99
100
  2. Work iteratively — delegating to Scout, Builder, Reviewer
100
101
  3. Store checkpoints with Memory after each iteration
@@ -102,13 +103,13 @@ Lead will:
102
103
 
103
104
  ### Cadence Commands
104
105
 
105
- | Command | Description |
106
- | -------------------------- | -------------------------- |
107
- | `/agentuity-cadence` | Start a new Cadence loop |
108
- | `/agentuity-cadence-status`| Check active loop status |
109
- | `/agentuity-cadence-pause` | Pause the active loop |
110
- | `/agentuity-cadence-resume`| Resume a paused loop |
111
- | `/agentuity-cadence-stop` | Cancel and stop the loop |
106
+ | Command | Description |
107
+ | --------------------------- | ------------------------ |
108
+ | `/agentuity-cadence` | Start a new Cadence loop |
109
+ | `/agentuity-cadence-status` | Check active loop status |
110
+ | `/agentuity-cadence-pause` | Pause the active loop |
111
+ | `/agentuity-cadence-resume` | Resume a paused loop |
112
+ | `/agentuity-cadence-stop` | Cancel and stop the loop |
112
113
 
113
114
  ### CLI Control (Headless)
114
115
 
@@ -131,6 +132,7 @@ agentuity ai cadence stop lp_auth_01
131
132
  ### How It Works
132
133
 
133
134
  Cadence is **agentic-first** — Lead's prompt drives the loop, not deterministic code. Lead:
135
+
134
136
  - Manages its own state in KV
135
137
  - Decides when to delegate and to whom
136
138
  - Stores checkpoints via Memory for context management
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentuity/opencode",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Agentuity employees and contributors",
6
6
  "description": "Agentuity Open Code plugin with specialized AI coding agents",
@@ -40,11 +40,11 @@
40
40
  "prepublishOnly": "bun run clean && bun run build"
41
41
  },
42
42
  "dependencies": {
43
- "@agentuity/core": "0.1.24",
43
+ "@agentuity/core": "0.1.25",
44
44
  "zod": "^4.3.5"
45
45
  },
46
46
  "devDependencies": {
47
- "@agentuity/test-utils": "0.1.24",
47
+ "@agentuity/test-utils": "0.1.25",
48
48
  "@types/bun": "latest",
49
49
  "bun-types": "latest",
50
50
  "typescript": "^5.9.0"