@webpresso/plugin-codex 0.0.7 → 0.0.8
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/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"host": "codex",
|
|
4
4
|
"packageName": "@webpresso/plugin-codex",
|
|
5
|
-
"packageVersion": "0.0.
|
|
5
|
+
"packageVersion": "0.0.8",
|
|
6
6
|
"runtimeDirs": [".codex/skills", ".agents/skills"],
|
|
7
7
|
"skills": {
|
|
8
8
|
"ai-deslop": {
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"digest": "sha256:bed3684a850651534f315d355cdeae50d951c429817df0f105cccdb7f4e1561b"
|
|
97
97
|
},
|
|
98
98
|
"ultragoal": {
|
|
99
|
-
"digest": "sha256:
|
|
99
|
+
"digest": "sha256:137a063d5e286934b92b1d87397b7183f8ea6c564cddc3bb7e6cde5f3f306aaf"
|
|
100
100
|
},
|
|
101
101
|
"verify": {
|
|
102
102
|
"digest": "sha256:7f431a63e611c9f47d5edf87a889d4527658d2dd0c68f9dffd0924c1cd0dd028"
|
|
@@ -25,6 +25,24 @@ Use `wp ultragoal` / MCP `wp_ultragoal_*` as the durable controller for work spa
|
|
|
25
25
|
one or more blueprints. Prefer this spine over host-local mega-sessions or ad-hoc
|
|
26
26
|
multi-agent swarms.
|
|
27
27
|
|
|
28
|
+
## Creating an ultragoal does NOT set a host stop-condition
|
|
29
|
+
|
|
30
|
+
`wp_ultragoal_new` records a durable brief, budgets, and phase. It does **not**
|
|
31
|
+
install the session Stop hook that keeps a host working until a condition holds
|
|
32
|
+
— that hook belongs to the host's own goal surface (Claude Code's `/goal`), which
|
|
33
|
+
this skill cannot reach. The two are independent: an ultragoal can sit in `plan`
|
|
34
|
+
indefinitely with no host pressure to advance it, and a host goal can be set with
|
|
35
|
+
no ultragoal behind it.
|
|
36
|
+
|
|
37
|
+
So do not assume invoking this skill armed a stop condition. Either:
|
|
38
|
+
|
|
39
|
+
- state the stop condition explicitly in the reply and drive the loop yourself, or
|
|
40
|
+
- tell the operator to pair the run with their host's goal command when they want
|
|
41
|
+
the session held open until the ultragoal completes.
|
|
42
|
+
|
|
43
|
+
Recording the brief and recording the stop condition are two separate acts;
|
|
44
|
+
conflating them silently drops the one the operator was counting on.
|
|
45
|
+
|
|
28
46
|
## Default budgets (override only when the user sets them)
|
|
29
47
|
|
|
30
48
|
| Budget | Default | Meaning |
|