@normahq/acp-repl-darwin-arm64 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,61 @@
1
+ # acp-repl
2
+
3
+ `acp-repl` runs an interactive REPL against any stdio ACP server command.
4
+
5
+ ## Installation
6
+
7
+ Global install (distributed via npm):
8
+
9
+ ```bash
10
+ npm install -g @normahq/acp-repl@latest
11
+ ```
12
+
13
+ One-off run with npx (no global install):
14
+
15
+ ```bash
16
+ npx @normahq/acp-repl@latest -- <acp-server-cmd> [args...]
17
+ ```
18
+
19
+ ## Run
20
+
21
+ ```bash
22
+ acp-repl -- <acp-server-cmd> [args...]
23
+ ```
24
+
25
+ Examples:
26
+
27
+ ```bash
28
+ acp-repl -- opencode acp
29
+ acp-repl --model opencode/big-pickle --mode plan -- opencode acp
30
+ acp-repl --debug -- opencode acp
31
+ ```
32
+
33
+ ## Flags
34
+
35
+ - `--model <id>`: call ACP `session/set_model` after session creation (unsupported servers are ignored).
36
+ - `--mode <id>`: call ACP `session/set_mode` after session creation (unsupported servers are ignored).
37
+ - `--debug`: enable debug logs.
38
+
39
+ ## Interaction
40
+
41
+ - Type prompts and press Enter to run a turn.
42
+ - Type `exit` or `quit` to close the REPL.
43
+ - If ACP permission requests arrive, choose from the numbered options.
44
+
45
+ ## Notes
46
+
47
+ - `--` is required. Arguments before `--` are rejected.
48
+ - Default logging is quiet for REPL lifecycle messages; use `--debug` to see them.
49
+
50
+ ## Repository
51
+
52
+ - Norma GitHub: <https://github.com/normahq/norma>
53
+
54
+ ## Contact
55
+
56
+ - Issues: <https://github.com/normahq/norma/issues>
57
+ - Maintainer: [@metalagman](https://github.com/metalagman)
58
+
59
+ ## License
60
+
61
+ MIT. See the repository [LICENSE](https://github.com/normahq/norma/blob/main/LICENSE).
package/bin/acp-repl ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "bin": {
3
+ "acp-repl": "bin/acp-repl"
4
+ },
5
+ "cpu": [
6
+ "arm64"
7
+ ],
8
+ "description": "@normahq/acp-repl binary for darwin/arm64",
9
+ "files": [
10
+ "bin",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "license": "SEE LICENSE IN LICENSE",
15
+ "name": "@normahq/acp-repl-darwin-arm64",
16
+ "os": [
17
+ "darwin"
18
+ ],
19
+ "version": "0.0.2"
20
+ }