@webpresso/claude-plugin 3.1.20 → 3.1.21

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": "3.1.20"
9
+ "version": "3.1.21"
10
10
  },
11
11
  "plugins": [
12
12
  {
@@ -26,5 +26,5 @@
26
26
  }
27
27
  }
28
28
  ],
29
- "version": "3.1.20"
29
+ "version": "3.1.21"
30
30
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-kit",
3
- "version": "3.1.20",
3
+ "version": "3.1.21",
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/claude-plugin",
3
- "version": "3.1.20",
3
+ "version": "3.1.21",
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/agent-kit#readme",
@@ -2,7 +2,7 @@
2
2
  "schemaVersion": 1,
3
3
  "host": "claude",
4
4
  "packageName": "@webpresso/claude-plugin",
5
- "packageVersion": "3.1.20",
5
+ "packageVersion": "3.1.21",
6
6
  "runtimeDirs": [".claude/skills"],
7
7
  "skills": {
8
8
  "ai-deslop": {
@@ -21,10 +21,10 @@
21
21
  "digest": "sha256:21fd24862e7f7c8a1feadea6bc376492b136b99fc381cf1b8927c9db80615431"
22
22
  },
23
23
  "claude": {
24
- "digest": "sha256:dec5cc89c31485bab6defea919c22e9a9c50c530d8fc4ef4f5be5080b5d91b75"
24
+ "digest": "sha256:09ed281443338ff5ab38decbd39827b4c96e2b90cfabd90cf13267e4f2ff71f7"
25
25
  },
26
26
  "codex": {
27
- "digest": "sha256:98187c2845b5cd88ba9eb9f682d16fec648932a084b3d1cebd066945b1fb6fdf"
27
+ "digest": "sha256:f363f40230ecd0741ba45ea6b1b18136b04292dc966aa1d72596e5add6abfc4e"
28
28
  },
29
29
  "deep-interview": {
30
30
  "digest": "sha256:e80d7e12e486397103108bb473e98e8e8656519770fa20701f8b3e9e66991939"
@@ -51,7 +51,7 @@
51
51
  "digest": "sha256:a80fbacc765e8b886437b9fdf7dd71e1ceb1b98b939078ec90fc88d06a8b4c69"
52
52
  },
53
53
  "opencode-go": {
54
- "digest": "sha256:8bbfad8273c526c563ceef3c8b98efbc60c3b24dc6b0a2a25d8efd9e83788860"
54
+ "digest": "sha256:b36683da200b59fc5a8cceb8da34b7b29613680c4e52c4f4aaae03ff3acdd269"
55
55
  },
56
56
  "plan-ceo-review": {
57
57
  "digest": "sha256:4d426158518dd71f8998770e8d4037bcbfa3c65d7265a93a4a78a9b015ba881e"
@@ -94,6 +94,11 @@ TARGET_FILE=${TARGET_FILE:?set TARGET_FILE to one changed file}
94
94
 
95
95
  Run both the availability probe and the full review through the typed `wp review run` owner. Skills must not embed subprocess supervision. The runtime consumes Claude's streaming JSON events, advances its idle clock only on monotonic semantic progress, and has no total wall-clock cutoff.
96
96
 
97
+ The artifact root contains private runtime diagnostics, not a recorded
98
+ transcript or committable approval evidence. Direct `wp review run` output is
99
+ advisory. Only `wp review gate` may publish a bounded, target-bound artifact and
100
+ ledger event for blueprint promotion or completion.
101
+
97
102
  ```bash
98
103
  CLAUDE_REVIEW_MODEL=${CLAUDE_REVIEW_MODEL:-opus}
99
104
  CLAUDE_REVIEW_EFFORT=${CLAUDE_REVIEW_EFFORT:-medium}
@@ -141,7 +146,7 @@ if [ -n "$DASH_HELPER_RUN_ID" ]; then
141
146
  fi
142
147
  ```
143
148
 
144
- Treat `true-idle`, `protocol-unsupported`, provider failure, abort, spawn failure, or artifact failure as unavailable review evidence. Never replace them with a static timeout, arbitrary byte-growth heartbeat, or buffered-output fallback.
149
+ Treat `true-idle`, `protocol-unsupported`, provider failure, abort, spawn failure, or artifact failure as an unavailable advisory result. Never replace them with a static timeout, arbitrary byte-growth heartbeat, or buffered-output fallback.
145
150
 
146
151
  #### Retry policy
147
152
 
@@ -65,8 +65,13 @@ overrides (defaults shown). Set them inline, e.g.
65
65
  review stages accept only `medium` or `high`; any other value is rejected.
66
66
  - `CODEX_REVIEW_IDLE_SECONDS` / `CODEX_REVIEW_PROBE_IDLE_SECONDS` — idle timeout
67
67
  (seconds) for the review stage and the preflight probe, default `180` each.
68
- - `CODEX_REVIEW_ARTIFACT_ROOT` — directory for the recorded review transcript
69
- used as outside-review evidence, default `<cwd>/.webpresso/reviews`.
68
+ - `CODEX_REVIEW_ARTIFACT_ROOT` — directory for private runtime diagnostics,
69
+ default `<cwd>/.webpresso/reviews`. Never commit files from this directory or
70
+ cite them as approval evidence.
71
+
72
+ Direct `wp review run` output is advisory. Only `wp review gate` may publish a
73
+ bounded, target-bound review artifact and ledger event for blueprint promotion
74
+ or completion.
70
75
 
71
76
  ## Modes
72
77
 
@@ -57,6 +57,7 @@ The managed OpenCode plugin currently has no parent-linked native subagent compl
57
57
  ## Review command
58
58
 
59
59
  Use read-only prompts. Run from the repo directory; do NOT pass `--dir "$PWD"` because opencode already uses the current directory and the extra index can stall reviews.
60
+ The artifact root contains private runtime diagnostics, not a recorded transcript or committable approval evidence. Direct `wp review run` output is advisory. Only `wp review gate` may publish a bounded, target-bound artifact and ledger event for blueprint promotion or completion.
60
61
 
61
62
  ```bash
62
63
  # Aggregate reviewer: honor the canonical reviewer policy (Kimi K2.7 Code → DeepSeek V4 Pro → DeepSeek V4 Flash first, then cross-family fallbacks).
@@ -106,4 +107,4 @@ wp review run \
106
107
  ```
107
108
 
108
109
  If `$MODEL` is empty, run `opencode models opencode-go` and choose a present reviewer.
109
- Treat a provider-wide usage limit as terminal for every OpenCode Go model in the current review; do not fall back to another family. Treat `true-idle`, `protocol-unsupported`, provider failure, abort, spawn failure, or artifact failure as unavailable review evidence. Never replace them with a static timeout, arbitrary byte-growth heartbeat, or buffered-output fallback.
110
+ Treat a provider-wide usage limit as terminal for every OpenCode Go model in the current review; do not fall back to another family. Treat `true-idle`, `protocol-unsupported`, provider failure, abort, spawn failure, or artifact failure as an unavailable advisory result. Never replace them with a static timeout, arbitrary byte-growth heartbeat, or buffered-output fallback.