@sonenta/cli 0.14.0 → 0.17.0
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 +3 -3
- package/dist/index.js +386 -117
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ npx @sonenta/cli --help
|
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
# 1. Authenticate (the key must carry the `mcp:*` scope — see Auth below)
|
|
19
|
-
sonenta login --host https://api.sonenta.
|
|
19
|
+
sonenta login --host https://api.sonenta.dev --token vrb_live_<prefix>.<secret>
|
|
20
20
|
|
|
21
21
|
# 2. Bind the current directory to a project
|
|
22
22
|
sonenta init --project 069fc15d-… --version main
|
|
@@ -51,9 +51,9 @@ The credentials file shape:
|
|
|
51
51
|
|
|
52
52
|
```json
|
|
53
53
|
{
|
|
54
|
-
"default": "https://api.sonenta.
|
|
54
|
+
"default": "https://api.sonenta.dev",
|
|
55
55
|
"hosts": {
|
|
56
|
-
"https://api.sonenta.
|
|
56
|
+
"https://api.sonenta.dev": { "api_key": "vrb_live_…", "user_email": "…" },
|
|
57
57
|
"https://api.dev.sonenta.ca": { "api_key": "vrb_live_…" }
|
|
58
58
|
}
|
|
59
59
|
}
|