zas-agent 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/CHANGELOG.md +12 -1
- package/README.md +2 -2
- package/dist/cli.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.1] - 2026-09-03
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- The `claude mcp add` and `codex mcp add` lines the terminal prints after
|
|
15
|
+
pairing quote the `--` separator. In PowerShell the npm-installed `claude`
|
|
16
|
+
and `codex` commands are script shims, and PowerShell kept a bare `--` for
|
|
17
|
+
itself, so `claude mcp add` refused `-y` as an unknown option.
|
|
18
|
+
|
|
10
19
|
## [0.2.0] - 2026-09-03
|
|
11
20
|
|
|
12
21
|
### Changed
|
|
@@ -49,6 +58,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
49
58
|
two separate identities that cannot read each other's keys.
|
|
50
59
|
- Install snippets for Claude Code and Codex, printed by `zas-agent pair`.
|
|
51
60
|
|
|
52
|
-
[Unreleased]: https://github.com/soke1556/zas-agent/compare/v0.
|
|
61
|
+
[Unreleased]: https://github.com/soke1556/zas-agent/compare/v0.2.1...HEAD
|
|
62
|
+
[0.2.1]: https://github.com/soke1556/zas-agent/compare/v0.2.0...v0.2.1
|
|
63
|
+
[0.2.0]: https://github.com/soke1556/zas-agent/compare/v0.1.1...v0.2.0
|
|
53
64
|
[0.1.1]: https://github.com/soke1556/zas-agent/compare/v0.1.0...v0.1.1
|
|
54
65
|
[0.1.0]: https://github.com/soke1556/zas-agent/releases/tag/v0.1.0
|
package/README.md
CHANGED
|
@@ -46,13 +46,13 @@ npx -y zas-agent pair --profile claude-code
|
|
|
46
46
|
**Claude Code**
|
|
47
47
|
|
|
48
48
|
```
|
|
49
|
-
claude mcp add zas -- npx -y zas-agent --profile claude-code
|
|
49
|
+
claude mcp add zas "--" npx -y zas-agent --profile claude-code
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
**Codex**
|
|
53
53
|
|
|
54
54
|
```
|
|
55
|
-
codex mcp add zas -- npx -y zas-agent --profile codex
|
|
55
|
+
codex mcp add zas "--" npx -y zas-agent --profile codex
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
Codex by hand, if you would rather edit `~/.codex/config.toml`:
|
package/dist/cli.js
CHANGED
|
@@ -570,10 +570,10 @@ function packageName() {
|
|
|
570
570
|
return true ? "zas-agent" : "zas-agent";
|
|
571
571
|
}
|
|
572
572
|
function claudeSnippet(profile) {
|
|
573
|
-
return `claude mcp add zas -- npx -y ${packageName()} --profile ${profile}`;
|
|
573
|
+
return `claude mcp add zas "--" npx -y ${packageName()} --profile ${profile}`;
|
|
574
574
|
}
|
|
575
575
|
function codexSnippet(profile) {
|
|
576
|
-
return `codex mcp add zas -- npx -y ${packageName()} --profile ${profile}`;
|
|
576
|
+
return `codex mcp add zas "--" npx -y ${packageName()} --profile ${profile}`;
|
|
577
577
|
}
|
|
578
578
|
function kindForProfile(profile) {
|
|
579
579
|
if (profile === "claude-code") return "claude_code";
|
|
@@ -1869,7 +1869,7 @@ async function sendNote(ctx, input) {
|
|
|
1869
1869
|
|
|
1870
1870
|
// src/server.ts
|
|
1871
1871
|
function agentVersion() {
|
|
1872
|
-
return true ? "0.2.
|
|
1872
|
+
return true ? "0.2.1" : "0.0.0-dev";
|
|
1873
1873
|
}
|
|
1874
1874
|
var AGENT_CUE = " The owner sees every item this agent sends with the >_ agent mark and this agent's name, on every device.";
|
|
1875
1875
|
var PAIR_ANNOUNCE_MS = 15e3;
|