copillm 0.1.1 → 0.1.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 +12 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,15 @@ A local proxy that exposes OpenAI- and Anthropic-compatible HTTP endpoints backe
|
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
|
-
`copillm` is distributed on npm
|
|
17
|
+
`copillm` is distributed on [npm](https://www.npmjs.com/package/copillm). Install it globally for the most convenient usage:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install -g copillm
|
|
21
|
+
|
|
22
|
+
copillm --help
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Alternatively, you can invoke it directly with `npx` without a global install:
|
|
18
26
|
|
|
19
27
|
```bash
|
|
20
28
|
npx copillm --help
|
|
@@ -24,12 +32,12 @@ npx copillm --help
|
|
|
24
32
|
|
|
25
33
|
```bash
|
|
26
34
|
# Authenticate once via the GitHub device flow.
|
|
27
|
-
|
|
35
|
+
copillm login
|
|
28
36
|
|
|
29
37
|
# Launch an agent. copillm starts the local daemon, installs the agent if
|
|
30
38
|
# necessary, and configures the required environment variables.
|
|
31
|
-
|
|
32
|
-
|
|
39
|
+
copillm claude
|
|
40
|
+
copillm codex
|
|
33
41
|
```
|
|
34
42
|
|
|
35
43
|
Arguments after the agent name are forwarded to the underlying CLI:
|