@webpresso/claude-plugin 3.3.1 → 3.3.2
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.3.
|
|
9
|
+
"version": "3.3.2"
|
|
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": "3.3.
|
|
20
|
+
"version": "3.3.2"
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webpresso/claude-plugin",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
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.3.
|
|
5
|
+
"packageVersion": "3.3.2",
|
|
6
6
|
"runtimeDirs": [".claude/skills"],
|
|
7
7
|
"skills": {
|
|
8
8
|
"ai-deslop": {
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"digest": "sha256:bed3684a850651534f315d355cdeae50d951c429817df0f105cccdb7f4e1561b"
|
|
88
88
|
},
|
|
89
89
|
"ultragoal": {
|
|
90
|
-
"digest": "sha256:
|
|
90
|
+
"digest": "sha256:7ed3e728027a9d1047a1dd030f88f23a6120450bf336fa73b1c9037857ab56ee"
|
|
91
91
|
},
|
|
92
92
|
"verify": {
|
|
93
93
|
"digest": "sha256:47c1d75ef5d1d47b94ef48ac91b0fd4bbf6ba1ab32563cfc28518bb75c7798f0"
|
|
@@ -109,24 +109,11 @@ Resolve models from the live catalog every time:
|
|
|
109
109
|
opencode models opencode-go
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
| Coding / implementation quality | Kimi **Code** first (`…kimi…-code`) | Coding quality lane |
|
|
118
|
-
| Cheap recheck / high-availability follow-up | DeepSeek **Flash** (`…deepseek…-flash`) | Fast secondary pass |
|
|
119
|
-
| Aggregate / unspecified | Follow `opencode-go` skill order: Kimi Code → DeepSeek Pro → DeepSeek Flash → remaining families | Default outside-voice lane |
|
|
120
|
-
|
|
121
|
-
Resolve the actual model ID with catalog greps (never paste a fixed model string into agent instructions as the only option):
|
|
122
|
-
|
|
123
|
-
```bash
|
|
124
|
-
CATALOG=$(opencode models opencode-go)
|
|
125
|
-
# plan critique example:
|
|
126
|
-
MODEL=$(echo "$CATALOG" | grep '^opencode-go/deepseek' | grep -- '-pro$' | sort -V | tail -1)
|
|
127
|
-
# coding example:
|
|
128
|
-
# MODEL=$(echo "$CATALOG" | grep '^opencode-go/kimi' | grep -- '-code$' | sort -V | tail -1)
|
|
129
|
-
```
|
|
112
|
+
**Selection order and the purpose→family mapping live in one place: the committed
|
|
113
|
+
reviewer policy (`packages/workflow-skills/src/opencode-reviewer-policy.ts`),
|
|
114
|
+
rendered into the `opencode-go` skill and drift-gated against it.** Follow that
|
|
115
|
+
skill; do not restate the ordering here. A second copy of a preference list is a
|
|
116
|
+
second thing to update, and the copy that goes stale is the one an agent reads.
|
|
130
117
|
|
|
131
118
|
Treat a provider-wide usage limit as terminal for every OpenCode Go model in the current review window; do not hop families to evade a usage block on the same provider.
|
|
132
119
|
|