vertex-palace 0.2.0 → 0.2.1
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.
- package/BUILD_WEEK.md +1 -1
- package/CHANGELOG.md +8 -0
- package/README.md +7 -7
- package/dist/palace.cjs +2 -2
- package/package.json +1 -1
- package/plugins/vertex-palace/mcp/server.cjs +1 -1
package/BUILD_WEEK.md
CHANGED
|
@@ -54,7 +54,7 @@ The Devpost submission will include the `/feedback` Session ID from the primary
|
|
|
54
54
|
Install the public competition release, then run it in the repository you want to evaluate:
|
|
55
55
|
|
|
56
56
|
```bash
|
|
57
|
-
npm install -g vertex-palace@0.2.
|
|
57
|
+
npm install -g vertex-palace@0.2.1
|
|
58
58
|
palace --version
|
|
59
59
|
palace context "improve route confidence calibration" --auto --format json
|
|
60
60
|
palace evaluate "improve route confidence calibration" --changed-file packages/core/src/evaluation/evaluate-route.ts
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.2.1 - 2026-07-19
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Treat preservation-only wording such as "keep the public API stable" as a guardrail instead of evidence that the task changes a public contract.
|
|
10
|
+
- Allow small, focused repositories with route confidence from 0.45 upward to use Route Lite instead of escalating mechanically to Full Palace.
|
|
11
|
+
- Refresh the Codex marketplace metadata, plugin MCP pin, CLI version, and MCP server version together.
|
|
12
|
+
|
|
5
13
|
## 0.2.0 - 2026-07-19
|
|
6
14
|
|
|
7
15
|
### Added
|
package/README.md
CHANGED
|
@@ -67,10 +67,10 @@ Only `guarded-memory-palace` includes relevant entries from `.palace/00-entrance
|
|
|
67
67
|
1. Install the plugin:
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
codex plugin marketplace add lohchanhin/vertex-palace --ref v0.2.
|
|
70
|
+
codex plugin marketplace add lohchanhin/vertex-palace --ref v0.2.1
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
-
Use `v0.2.
|
|
73
|
+
Use `v0.2.1` or newer for the corrected Adaptive selector. Avoid `v0.1.0` and `v0.1.1`; those early tags had broken MCP install metadata.
|
|
74
74
|
|
|
75
75
|
2. Or install the CLI directly from npm:
|
|
76
76
|
|
|
@@ -195,10 +195,10 @@ adaptive context(单次调用)-> 先读 Primary -> 证据需要时再展开
|
|
|
195
195
|
1. 安装插件:
|
|
196
196
|
|
|
197
197
|
```bash
|
|
198
|
-
codex plugin marketplace add lohchanhin/vertex-palace --ref v0.2.
|
|
198
|
+
codex plugin marketplace add lohchanhin/vertex-palace --ref v0.2.1
|
|
199
199
|
```
|
|
200
200
|
|
|
201
|
-
请使用 `v0.2.
|
|
201
|
+
请使用 `v0.2.1` 或更新版本,以启用修正后的 Adaptive 模式选择器。不要再使用 `v0.1.0` 和 `v0.1.1`,这两个早期标签的 MCP 安装元数据有问题。
|
|
202
202
|
|
|
203
203
|
2. 打开 Codex,输入 `/plugins`,安装 Vertex Palace。
|
|
204
204
|
|
|
@@ -268,15 +268,15 @@ npx vertex-palace status
|
|
|
268
268
|
Install the Codex plugin:
|
|
269
269
|
|
|
270
270
|
```bash
|
|
271
|
-
codex plugin marketplace add lohchanhin/vertex-palace --ref v0.2.
|
|
271
|
+
codex plugin marketplace add lohchanhin/vertex-palace --ref v0.2.1
|
|
272
272
|
```
|
|
273
273
|
|
|
274
|
-
Use `v0.2.
|
|
274
|
+
Use `v0.2.1` or newer for the corrected Adaptive selector; `v0.1.0` and `v0.1.1` are obsolete because their MCP install metadata was broken.
|
|
275
275
|
|
|
276
276
|
The plugin launches its MCP server through npm:
|
|
277
277
|
|
|
278
278
|
```bash
|
|
279
|
-
npx -y -p vertex-palace@0.2.
|
|
279
|
+
npx -y -p vertex-palace@0.2.1 vertex-palace-mcp-stdio --stdio
|
|
280
280
|
```
|
|
281
281
|
|
|
282
282
|
Open Codex:
|