@webpresso/plugin-claude 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.
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Webpresso agent-kit Claude Code plugin: blueprints, skills, hooks, MCP server",
9
- "version": "0.0.7"
9
+ "version": "0.0.8"
10
10
  },
11
11
  "plugins": [
12
12
  {
@@ -17,5 +17,5 @@
17
17
  "keywords": ["agent", "blueprint", "claude-code", "skills", "mcp"]
18
18
  }
19
19
  ],
20
- "version": "0.0.7"
20
+ "version": "0.0.8"
21
21
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-kit",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Webpresso agent-kit: blueprints, skills, lore commit protocol, tech-debt lifecycle",
5
5
  "author": {
6
6
  "name": "Webpresso",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webpresso/plugin-claude",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "private": false,
5
5
  "description": "Claude Code plugin adapter for Webpresso agent-kit skills, commands, and MCP runtime.",
6
6
  "homepage": "https://github.com/webpresso/app#readme",
@@ -2,7 +2,7 @@
2
2
  "schemaVersion": 1,
3
3
  "host": "claude",
4
4
  "packageName": "@webpresso/plugin-claude",
5
- "packageVersion": "0.0.7",
5
+ "packageVersion": "0.0.8",
6
6
  "runtimeDirs": [".claude/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:9470e59bd1aeca64aaa24f6b4276235ebbffbf5f817817093458e80a5fffc31a"
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 |