@webpresso/codex-plugin 3.1.15 → 3.1.17

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-kit",
3
- "version": "3.1.15",
3
+ "version": "3.1.17",
4
4
  "description": "Webpresso agent-kit: blueprints, skills, hooks, and MCP server",
5
5
  "author": {
6
6
  "name": "Webpresso",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webpresso/codex-plugin",
3
- "version": "3.1.15",
3
+ "version": "3.1.17",
4
4
  "private": false,
5
5
  "description": "Codex plugin adapter for Webpresso agent-kit skills, hooks, and MCP runtime.",
6
6
  "homepage": "https://github.com/webpresso/agent-kit#readme",
@@ -2,11 +2,11 @@
2
2
  "schemaVersion": 1,
3
3
  "host": "codex",
4
4
  "packageName": "@webpresso/codex-plugin",
5
- "packageVersion": "3.1.15",
5
+ "packageVersion": "3.1.17",
6
6
  "runtimeDirs": [".codex/skills", ".agents/skills"],
7
7
  "skills": {
8
8
  "autopilot": {
9
- "digest": "sha256:7fc1fe9f5fb5b8a3e755f8e3ac4b807e4f140288544ffcf39e4cbfdea984014d"
9
+ "digest": "sha256:9e0b47c8438fe7c8123bec3361fcb17fd2fcd818a840f46ea272a7712e4c0b10"
10
10
  },
11
11
  "autoresearch": {
12
12
  "digest": "sha256:b4d51cd53beb4a3271827172dfbd0b1d27bd58761ca07a35d49a5d6324b87fdf"
@@ -35,9 +35,6 @@
35
35
  "fix": {
36
36
  "digest": "sha256:e43dfad198f7279ebc2dca9e62f43fd960c783ca0ab25f133668fca13aed96b2"
37
37
  },
38
- "goal": {
39
- "digest": "sha256:85380b633cfaaff8ec1639dd3a88412a41920aae3e8531de95e2b79411926a18"
40
- },
41
38
  "hooks-doctor": {
42
39
  "digest": "sha256:3bfb0af64ff6796c56d51e4cd2bede7fb24c869f89b292546ea13ad2f5d3bb73"
43
40
  },
@@ -77,6 +74,9 @@
77
74
  "tph": {
78
75
  "digest": "sha256:bed3684a850651534f315d355cdeae50d951c429817df0f105cccdb7f4e1561b"
79
76
  },
77
+ "ultragoal": {
78
+ "digest": "sha256:dc6d3b2bd48a494d7a5cd30ad9c6c9999989b9920ca06ccd1f86a7cfaff60d54"
79
+ },
80
80
  "verify": {
81
81
  "digest": "sha256:ce0dd3a77508d1bf11c805dec2de04e75b689201d376b2ff0fa957604d584500"
82
82
  }
@@ -15,7 +15,7 @@ argument-hint: "<brief|force: brief>"
15
15
 
16
16
  # Autopilot
17
17
 
18
- Drive an approved brief through `plan -> execute -> qa -> validate -> land -> complete` using `wp goal run` and the current handoff.
18
+ Drive an approved brief through `plan -> execute -> qa -> validate -> land -> complete` using `wp ultragoal run` and the current handoff.
19
19
 
20
20
  ## Vague gate
21
21
 
@@ -34,6 +34,6 @@ A brief is anchored when it includes a file path, symbol, issue number, test nam
34
34
  ```
35
35
 
36
36
  5. Land: require green PR checks, complete the blueprint in the same PR, merge, and run owner cleanup.
37
- 6. Complete: stop only when `wp goal run` records terminal evidence.
37
+ 6. Complete: stop only when `wp ultragoal run` records terminal evidence.
38
38
 
39
- Resume from durable state after interruption. Obey `WP_GOAL_DISABLE=1`, iteration/error/validation caps, and repository ownership. The pipeline must never self-approve, directly mark tasks done, bypass evidence, or push to main. Keep every loop bounded and never increase timeouts.
39
+ Resume from durable state after interruption. Obey `WP_ULTRAGOAL_DISABLE=1`, iteration/error/validation caps, and repository ownership. The pipeline must never self-approve, directly mark tasks done, bypass evidence, or push to main. Keep every loop bounded and never increase timeouts.
@@ -0,0 +1,27 @@
1
+ ---
2
+ type: skill
3
+ slug: ultragoal
4
+ title: Ultragoal
5
+ status: active
6
+ scope: repo
7
+ applies_to: [agents]
8
+ related: [autopilot, plan-refine, verify]
9
+ created: "2026-07-10"
10
+ last_reviewed: "2026-07-10"
11
+ name: ultragoal
12
+ description: "Run durable multi-blueprint ultragoals through evidence-gated handoffs."
13
+ argument-hint: "<new|status|handoff|run|cancel> [brief]"
14
+ ---
15
+
16
+ # Ultragoal
17
+
18
+ Use `wp ultragoal` as the durable controller for work spanning one or more blueprints.
19
+
20
+ ## Protocol
21
+
22
+ 1. Create or resume the ultragoal in a managed blueprint owner worktree.
23
+ 2. Read `wp ultragoal status`, execute only the current phase handoff, then call `wp ultragoal run` again.
24
+ 3. Complete blueprint tasks only through `wp_blueprint_task_verify` with passing evidence.
25
+ 4. Stop when the controller reports `complete`, `cancelled`, blocked guard exhaustion, or `WP_ULTRAGOAL_DISABLE=1`.
26
+
27
+ The blueprint engine owns task status and approval gates. The ultragoal controller must never self-approve, directly mark a task done, bypass review provenance, or mutate the primary checkout. Keep every loop bounded and never increase timeouts.
@@ -1,27 +0,0 @@
1
- ---
2
- type: skill
3
- slug: goal
4
- title: Goal
5
- status: active
6
- scope: repo
7
- applies_to: [agents]
8
- related: [autopilot, plan-refine, verify]
9
- created: "2026-07-10"
10
- last_reviewed: "2026-07-10"
11
- name: goal
12
- description: "Run durable multi-blueprint goals through evidence-gated handoffs."
13
- argument-hint: "<new|status|handoff|run|cancel> [brief]"
14
- ---
15
-
16
- # Goal
17
-
18
- Use `wp goal` as the durable controller for work spanning one or more blueprints.
19
-
20
- ## Protocol
21
-
22
- 1. Create or resume the goal in a managed blueprint owner worktree.
23
- 2. Read `wp goal status`, execute only the current phase handoff, then call `wp goal run` again.
24
- 3. Complete blueprint tasks only through `wp_blueprint_task_verify` with passing evidence.
25
- 4. Stop when the controller reports `complete`, `cancelled`, blocked guard exhaustion, or `WP_GOAL_DISABLE=1`.
26
-
27
- The blueprint engine owns task status and approval gates. The goal controller must never self-approve, directly mark a task done, bypass review provenance, or mutate the primary checkout. Keep every loop bounded and never increase timeouts.