@webpresso/codex-plugin 3.3.0 → 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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-kit",
3
- "version": "3.3.0",
3
+ "version": "3.3.2",
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.3.0",
3
+ "version": "3.3.2",
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,7 +2,7 @@
2
2
  "schemaVersion": 1,
3
3
  "host": "codex",
4
4
  "packageName": "@webpresso/codex-plugin",
5
- "packageVersion": "3.3.0",
5
+ "packageVersion": "3.3.2",
6
6
  "runtimeDirs": [".codex/skills", ".agents/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:953ab2625287866e5f27e602a89f1752e054d47522d04e1fdc11880867dc2fde"
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
- Pick by purpose (same intent as the committed OpenCode reviewer policy / `opencode-go` skill):
113
-
114
- | Purpose | Preferred family (live catalog) | Why |
115
- | ------------------------------------------- | ------------------------------------------------------------------------------------------------ | -------------------------- |
116
- | Plan / architecture critique | DeepSeek **Pro** (`opencode-go/deepseek…-pro`) | Deeper plan review depth |
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