@clovapi/cli 0.1.27 → 0.1.29
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 +8 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @clovapi/cli
|
|
2
2
|
|
|
3
|
-
Install `clovapi` as
|
|
3
|
+
Install `clovapi` as the global command entry:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npm i -g @clovapi/cli
|
|
@@ -9,7 +9,13 @@ clovapi --help
|
|
|
9
9
|
|
|
10
10
|
**Website:** https://clovapi.com — setup guides, supported agents, and Claude Code / Codex API switching docs.
|
|
11
11
|
|
|
12
|
-
The package downloads platform
|
|
12
|
+
The npm package provides the `clovapi` launcher on your PATH. During install it downloads the platform core binary, verifies SHA256 checksums, and stores the canonical binary under your user config directory:
|
|
13
|
+
|
|
14
|
+
- macOS/Linux: `~/.config/clovapi/bin/clovapi`
|
|
15
|
+
- Windows: `%APPDATA%\clovapi\bin\clovapi.exe`
|
|
16
|
+
|
|
17
|
+
The launcher always prefers that user-managed binary, so `clovapi update` and the desktop app update the same executable.
|
|
18
|
+
|
|
13
19
|
By default it tries:
|
|
14
20
|
|
|
15
21
|
1. `https://downloads.clovapi.com/clovapi/vX.Y.Z` (R2 public mirror)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clovapi/cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.29",
|
|
4
|
+
"description": "Global npm launcher for the clovapi CLI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/joohw/clovapi.git",
|