@normahq/acp-dump-linux-x64 0.0.2

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 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,65 @@
1
+ # acp-dump
2
+
3
+ `acp-dump` inspects any stdio ACP server command and prints initialize/session details.
4
+
5
+ ## Installation
6
+
7
+ Global install (distributed via npm):
8
+
9
+ ```bash
10
+ npm install -g @normahq/acp-dump@latest
11
+ ```
12
+
13
+ One-off run with npx (no global install):
14
+
15
+ ```bash
16
+ npx @normahq/acp-dump@latest -- <acp-server-cmd> [args...]
17
+ ```
18
+
19
+ ## Run
20
+
21
+ ```bash
22
+ acp-dump -- <acp-server-cmd> [args...]
23
+ ```
24
+
25
+ Examples:
26
+
27
+ ```bash
28
+ acp-dump -- opencode acp
29
+ acp-dump --json -- opencode acp
30
+ acp-dump --debug -- opencode acp
31
+ ```
32
+
33
+ ## Flags
34
+
35
+ - `--json`: print machine-readable JSON output.
36
+ - `--debug`: enable debug logs for the inspector.
37
+
38
+ ## Output
39
+
40
+ Human-readable output includes:
41
+
42
+ - agent name/version
43
+ - protocol version
44
+ - ACP capabilities
45
+ - auth methods
46
+ - session id
47
+ - available session modes/models (if provided by the server)
48
+
49
+ ## Notes
50
+
51
+ - `--` is required. Arguments before `--` are rejected.
52
+ - By default, command output is result-focused (no inspector debug/info logs).
53
+
54
+ ## Repository
55
+
56
+ - Norma GitHub: <https://github.com/normahq/norma>
57
+
58
+ ## Contact
59
+
60
+ - Issues: <https://github.com/normahq/norma/issues>
61
+ - Maintainer: [@metalagman](https://github.com/metalagman)
62
+
63
+ ## License
64
+
65
+ MIT. See the repository [LICENSE](https://github.com/normahq/norma/blob/main/LICENSE).
package/bin/acp-dump ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "bin": {
3
+ "acp-dump": "bin/acp-dump"
4
+ },
5
+ "cpu": [
6
+ "x64"
7
+ ],
8
+ "description": "@normahq/acp-dump binary for linux/amd64",
9
+ "files": [
10
+ "bin",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "license": "SEE LICENSE IN LICENSE",
15
+ "name": "@normahq/acp-dump-linux-x64",
16
+ "os": [
17
+ "linux"
18
+ ],
19
+ "version": "0.0.2"
20
+ }