@baldaworks/acpdump-linux-arm64 1.0.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/LICENSE +21 -0
- package/README.md +108 -0
- package/bin/acpdump +0 -0
- package/package.json +24 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Alexey Samoylov
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# acpdump
|
|
2
|
+
|
|
3
|
+
[](https://github.com/baldaworks/acpdump/actions/workflows/test.yml)
|
|
4
|
+
[](https://github.com/baldaworks/acpdump/actions/workflows/lint.yml)
|
|
5
|
+
[](https://github.com/baldaworks/acpdump/actions/workflows/security.yml)
|
|
6
|
+
[](https://github.com/baldaworks/acpdump/actions/workflows/omnidist-release.yml)
|
|
7
|
+
[](https://www.npmjs.com/package/@baldaworks/acpdump)
|
|
8
|
+
[](LICENSE)
|
|
9
|
+
[](https://github.com/baldaworks/acpdump/tags)
|
|
10
|
+
|
|
11
|
+
**Inspect ACP agents before wiring them into your workflow.**
|
|
12
|
+
|
|
13
|
+
`acpdump` starts any stdio Agent Client Protocol (ACP) server command and
|
|
14
|
+
prints the initialize/session data you need to trust, debug, or compare it.
|
|
15
|
+
|
|
16
|
+
Use it when an ACP provider says it supports models, modes, auth, sessions, or
|
|
17
|
+
capabilities, and you want to see exactly what it reports before building
|
|
18
|
+
against it.
|
|
19
|
+
|
|
20
|
+
## What You Get
|
|
21
|
+
|
|
22
|
+
| Capability | Behavior |
|
|
23
|
+
| --- | --- |
|
|
24
|
+
| ACP preflight | Starts a stdio ACP server command and initializes a session. |
|
|
25
|
+
| Capability inventory | Prints protocol version, agent capabilities, auth methods, and session details. |
|
|
26
|
+
| Model and mode discovery | Shows available session models and modes when the provider exposes them. |
|
|
27
|
+
| JSON output | Emits machine-readable output for scripts, CI checks, and debugging artifacts. |
|
|
28
|
+
| Quiet by default | Keeps inspector lifecycle logs out of the result unless `--debug` is enabled. |
|
|
29
|
+
| Provider agnostic | Works with OpenCode, Codex, Claude Code, Pi, and any executable that speaks ACP over stdio. |
|
|
30
|
+
|
|
31
|
+
## Try It
|
|
32
|
+
|
|
33
|
+
Install globally:
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
npm install -g @baldaworks/acpdump@latest
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Run once with `npx`:
|
|
40
|
+
|
|
41
|
+
```sh
|
|
42
|
+
npx @baldaworks/acpdump@latest -- <acp-server-cmd> [args...]
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Inspect an ACP server:
|
|
46
|
+
|
|
47
|
+
```sh
|
|
48
|
+
acpdump -- opencode acp
|
|
49
|
+
acpdump --json -- opencode acp
|
|
50
|
+
acpdump -- npx -y @normahq/codex-acp-bridge@latest
|
|
51
|
+
acpdump -- npx -y @zed-industries/claude-code-acp@latest
|
|
52
|
+
acpdump --debug -- npx -y pi-acp
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Provider Commands
|
|
56
|
+
|
|
57
|
+
| Provider | Command |
|
|
58
|
+
| --- | --- |
|
|
59
|
+
| OpenCode | `acpdump -- opencode acp` |
|
|
60
|
+
| Codex | `acpdump -- npx -y @normahq/codex-acp-bridge@latest` |
|
|
61
|
+
| Claude Code | `acpdump -- npx -y @zed-industries/claude-code-acp@latest` |
|
|
62
|
+
| Pi | `acpdump -- npx -y pi-acp` |
|
|
63
|
+
| Generic ACP | `acpdump -- <acp-server-cmd> [args...]` |
|
|
64
|
+
|
|
65
|
+
The `--` separator is required. Arguments before `--` are treated as
|
|
66
|
+
`acpdump` flags; arguments after it are passed to the ACP server command.
|
|
67
|
+
|
|
68
|
+
## Output
|
|
69
|
+
|
|
70
|
+
Human-readable output includes:
|
|
71
|
+
|
|
72
|
+
- agent name and version
|
|
73
|
+
- protocol version
|
|
74
|
+
- ACP capabilities
|
|
75
|
+
- auth methods
|
|
76
|
+
- session id
|
|
77
|
+
- available session modes and models when provided by the server
|
|
78
|
+
|
|
79
|
+
Use `--json` when you want stable output for scripts, test fixtures, issue
|
|
80
|
+
reports, or CI logs.
|
|
81
|
+
|
|
82
|
+
## Use Cases
|
|
83
|
+
|
|
84
|
+
- Verify a provider's ACP surface before connecting it to an agent runtime.
|
|
85
|
+
- Compare model, mode, auth, and capability metadata across ACP providers.
|
|
86
|
+
- Capture a compact diagnostic artifact for bug reports.
|
|
87
|
+
- Check whether a local command is actually speaking ACP over stdio.
|
|
88
|
+
|
|
89
|
+
## Flags
|
|
90
|
+
|
|
91
|
+
| Flag | Purpose |
|
|
92
|
+
| --- | --- |
|
|
93
|
+
| `--json` | Print machine-readable JSON output. |
|
|
94
|
+
| `--debug` | Enable debug logs for the inspector. |
|
|
95
|
+
| `-h`, `--help` | Show command help. |
|
|
96
|
+
|
|
97
|
+
## Repository
|
|
98
|
+
|
|
99
|
+
- GitHub: <https://github.com/baldaworks/acpdump>
|
|
100
|
+
|
|
101
|
+
## Contact
|
|
102
|
+
|
|
103
|
+
- Issues: <https://github.com/baldaworks/acpdump/issues>
|
|
104
|
+
- Maintainer: [@metalagman](https://github.com/metalagman)
|
|
105
|
+
|
|
106
|
+
## License
|
|
107
|
+
|
|
108
|
+
MIT. See the repository [LICENSE](https://github.com/baldaworks/acpdump/blob/main/LICENSE).
|
package/bin/acpdump
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bin": {
|
|
3
|
+
"acpdump": "bin/acpdump"
|
|
4
|
+
},
|
|
5
|
+
"cpu": [
|
|
6
|
+
"arm64"
|
|
7
|
+
],
|
|
8
|
+
"description": "@baldaworks/acpdump binary for linux/arm64",
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"name": "@baldaworks/acpdump-linux-arm64",
|
|
16
|
+
"os": [
|
|
17
|
+
"linux"
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/baldaworks/acpdump.git"
|
|
22
|
+
},
|
|
23
|
+
"version": "1.0.1"
|
|
24
|
+
}
|