@yitom/agy-acp-map 0.1.17 → 0.1.18

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/README.md CHANGED
@@ -75,9 +75,10 @@ bunx @yitom/agy-acp-map@latest # bun users (preferred: no prompt, no shim
75
75
  npx -y @yitom/agy-acp-map@latest # node users
76
76
  ```
77
77
 
78
- Requirements are the same as source runs: a logged-in `agy` on `PATH`. The
79
- optional 95MB single-file `agy-acp-win-x64.exe` is **not** in the npm package —
80
- grab it from GitHub Releases if you want zero-runtime distribution.
78
+ Requirements are the same as source runs: a logged-in `agy` on `PATH`.
79
+ There is no compiled single-file exe anymore — codex-style `bunx`/`npx`
80
+ is the only distribution (the npm tarball is ~5MB: `dist/bin.js` plus the
81
+ tiny `agy-headless.exe` launcher).
81
82
 
82
83
 
83
84
  ## Launch flags / 启动参数 (v0.1.2)
@@ -329,9 +330,7 @@ Engineering feasibility ≠ legal permission. 即便只用官方 CLI I/O,仍
329
330
  ## Zed via npm (global install) / Zed 全局安装用法
330
331
 
331
332
  No Bun / TypeScript needed at runtime — the published package ships compiled
332
- `dist/` artifacts (`bin.js` for Node, `agy-headless.exe`). The optional
333
- single-file `agy-acp-win-x64.exe` (no runtime needed) is a GitHub Release
334
- asset, not part of the npm tarball. A **global** install is recommended so Zed
333
+ `dist/` artifacts (`bin.js` for Node, `agy-headless.exe`). A **global** install is recommended so Zed
335
334
  gets a stable absolute path (repo moves would break a local path):
336
335
 
337
336
  ```powershell
Binary file
package/dist/bin.js CHANGED
@@ -12717,7 +12717,7 @@ ${r.stderr}`, 200)}`);
12717
12717
  var AGENT_INFO = {
12718
12718
  name: "agy-acp",
12719
12719
  title: "agy ACP (stream-json)",
12720
- version: "0.1.17"
12720
+ version: "0.1.18"
12721
12721
  };
12722
12722
  var BRIDGE_CAPABILITIES = {
12723
12723
  prompt: true,
package/dist/index.js CHANGED
@@ -12504,7 +12504,7 @@ ${r.stderr}`, 200)}`);
12504
12504
  var AGENT_INFO = {
12505
12505
  name: "agy-acp",
12506
12506
  title: "agy ACP (stream-json)",
12507
- version: "0.1.17"
12507
+ version: "0.1.18"
12508
12508
  };
12509
12509
  var BRIDGE_CAPABILITIES = {
12510
12510
  prompt: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yitom/agy-acp-map",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -28,7 +28,6 @@
28
28
  "build": "bun run build:js && bun run build:types && bun run build:headless",
29
29
  "build:headless": "bun scripts/build-headless.ts",
30
30
  "build:js": "bun build src/sdk-server.ts --target node --outfile dist/bin.js && bun build src/index.ts --target node --outfile dist/index.js",
31
- "build:exe": "bun build src/sdk-server.ts --compile --target=bun-windows-x64 --outfile release/agy-acp-win-x64.exe",
32
31
  "build:types": "bunx tsc -p tsconfig.build.json",
33
32
  "release:patch": "bun scripts/release.ts",
34
33
  "release:publish": "bun scripts/release.ts --publish",