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.
Files changed (2) hide show
  1. package/README.md +12 -4
  2. 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 and can be invoked directly with `npx`. A global install is not required.
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
- npx copillm login
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
- npx copillm claude
32
- npx copillm codex
39
+ copillm claude
40
+ copillm codex
33
41
  ```
34
42
 
35
43
  Arguments after the agent name are forwarded to the underlying CLI:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "copillm",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Local Copilot proxy CLI (OpenAI/Anthropic-compatible)",
5
5
  "license": "MIT",
6
6
  "type": "module",