@jupyter-ai/acp-client 0.0.1 → 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/README.md +14 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,20 +51,26 @@ class ClaudeAcpPersona(BaseAcpPersona):
|
|
|
51
51
|
)
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
Currently, this package provides
|
|
55
|
-
Note that `@Claude-ACP` requires the `claude-code-acp` executable to appear.
|
|
56
|
-
This can be installed via:
|
|
54
|
+
Currently, this package provides 3 personas:
|
|
57
55
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
56
|
+
1. `@Test-ACP` (a test persona that echoes responses)
|
|
57
|
+
2. `@Claude-ACP`
|
|
58
|
+
- requires `claude-code-acp`, installed via `npm install -g @zed-industries/claude-code-acp`
|
|
59
|
+
3. `@Kiro`
|
|
60
|
+
- requires `kiro-cli`, installed from https://kiro.dev
|
|
61
|
+
|
|
62
|
+
## Dependencies
|
|
61
63
|
|
|
62
|
-
|
|
64
|
+
**Required**:
|
|
63
65
|
|
|
64
66
|
- JupyterLab >= 4.0.0
|
|
65
67
|
- `jupyter-ai-persona-manager>=0.0.5`
|
|
66
68
|
- `agent_client_protocol`
|
|
67
|
-
|
|
69
|
+
|
|
70
|
+
**Optional**
|
|
71
|
+
|
|
72
|
+
- `claude-code-acp` (enables `@Claude-ACP`)
|
|
73
|
+
- `kiro-cli` (enables `@Kiro`)
|
|
68
74
|
|
|
69
75
|
## Install
|
|
70
76
|
|