paseo-agy-acp 2.2.1 → 2.3.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 +50 -0
- package/README.md +189 -517
- package/README.zh-CN.md +153 -472
- package/dist/ACP Connector/official-kernel/context.d.ts +1 -0
- package/dist/ACP Connector/official-kernel/context.js +7 -0
- package/dist/ACP Connector/official-kernel/context.js.map +1 -1
- package/dist/ACP Connector/official-kernel/login.d.ts +2 -1
- package/dist/ACP Connector/official-kernel/login.js +73 -3
- package/dist/ACP Connector/official-kernel/login.js.map +1 -1
- package/dist/ACP Connector/official-kernel/proxy.js +67 -1
- package/dist/ACP Connector/official-kernel/proxy.js.map +1 -1
- package/dist/ACP Connector/official-kernel/skill-commands.d.ts +12 -0
- package/dist/ACP Connector/official-kernel/skill-commands.js +219 -0
- package/dist/ACP Connector/official-kernel/skill-commands.js.map +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,56 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `paseo-agy-acp` are recorded here.
|
|
4
4
|
|
|
5
|
+
## 2.3.1 - 2026-08-31
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Show the official OAuth authorization URL promptly during `--login`, put the
|
|
10
|
+
URL on its own line, and allow pasting the browser callback URL so it can be
|
|
11
|
+
delivered to the kernel's local loopback listener.
|
|
12
|
+
|
|
13
|
+
### Verification
|
|
14
|
+
|
|
15
|
+
- Complete validation: 37 test files, 217 passed, 1 skipped; architecture and
|
|
16
|
+
secret checks passed.
|
|
17
|
+
|
|
18
|
+
### Contributors
|
|
19
|
+
|
|
20
|
+
- Thanks to [@maomomo-eth](https://github.com/maomomo-eth) for the login prompt
|
|
21
|
+
and callback delivery work in [#10](https://github.com/tiezbro/paseo-agy-acp/pull/10).
|
|
22
|
+
|
|
23
|
+
## 2.3.0 - 2026-08-30
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- Discover user and workspace `SKILL.md` files from Gemini, Agents, Codex, and
|
|
28
|
+
configured skill roots, then expose user-invocable skills through standard
|
|
29
|
+
ACP slash command hints while preserving native commands.
|
|
30
|
+
- Add a tag-triggered npm Trusted Publishing workflow. A matching `vX.Y.Z` tag
|
|
31
|
+
on `main` now validates, packs, records, and publishes the public npm tarball
|
|
32
|
+
automatically with GitHub OIDC provenance and no long-lived npm token.
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
|
|
36
|
+
- Scope workspace skill discovery to each ACP session cwd, serialize concurrent
|
|
37
|
+
`session/new` setup, and prevent command hints from leaking between
|
|
38
|
+
workspaces.
|
|
39
|
+
- Hide skills marked `user-invocable: false`, preserve workspace-over-global
|
|
40
|
+
precedence, and parse common quoted and multiline frontmatter forms.
|
|
41
|
+
|
|
42
|
+
### Verification
|
|
43
|
+
|
|
44
|
+
- Complete validation: 37 test files, 216 passed, 1 skipped; architecture and
|
|
45
|
+
secret checks passed.
|
|
46
|
+
- Official-kernel smoke and a live command-update canary preserved native
|
|
47
|
+
commands, exposed the visible workspace skill, and hid the non-invocable
|
|
48
|
+
skill.
|
|
49
|
+
|
|
50
|
+
### Contributors
|
|
51
|
+
|
|
52
|
+
- Thanks to [@zwmmm](https://github.com/zwmmm) for the initial implementation
|
|
53
|
+
and review follow-up in [#9](https://github.com/tiezbro/paseo-agy-acp/pull/9).
|
|
54
|
+
|
|
5
55
|
## 2.2.1 - 2026-08-29
|
|
6
56
|
|
|
7
57
|
### Changed
|