@higrowth/cli 0.1.0 → 0.1.1
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 +2 -2
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ higrowth ~/.claude/skills/` and copy-paste tokens.
|
|
|
9
9
|
```bash
|
|
10
10
|
npm install -g @higrowth/cli
|
|
11
11
|
# or, for the curl-piped flow:
|
|
12
|
-
curl -fsSL https://
|
|
12
|
+
curl -fsSL https://app.higrowth.ai/install.sh | sh
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Quick start
|
|
@@ -41,7 +41,7 @@ higrowth skills install
|
|
|
41
41
|
|
|
42
42
|
| Flag | Default | What it does |
|
|
43
43
|
|------|---------|--------------|
|
|
44
|
-
| `--host URL` | `https://
|
|
44
|
+
| `--host URL` | `https://app.higrowth.ai` | Override the Higrowth host (for self-hosted or staging). |
|
|
45
45
|
| `--device` | off | Use OAuth 2.0 device-code flow instead of PKCE. For SSH / containers. |
|
|
46
46
|
| `--target TARGET` | auto-detect | `claude` / `cursor` / `claude-desktop` / `all`. |
|
|
47
47
|
| `--config PATH` | platform default | Override the MCP config file path. |
|
package/dist/index.js
CHANGED
|
@@ -1129,8 +1129,8 @@ function compareSkill(path, skill) {
|
|
|
1129
1129
|
}
|
|
1130
1130
|
|
|
1131
1131
|
// src/index.ts
|
|
1132
|
-
var VERSION = "0.1.
|
|
1133
|
-
var DEFAULT_HOST = "https://
|
|
1132
|
+
var VERSION = "0.1.1";
|
|
1133
|
+
var DEFAULT_HOST = "https://app.higrowth.ai";
|
|
1134
1134
|
var USAGE = `higrowth \u2014 Connect your agent to a Higrowth workspace
|
|
1135
1135
|
|
|
1136
1136
|
USAGE
|
|
@@ -1173,7 +1173,7 @@ FLAGS
|
|
|
1173
1173
|
EXAMPLES
|
|
1174
1174
|
higrowth login
|
|
1175
1175
|
higrowth login --device
|
|
1176
|
-
higrowth login --host https://staging.
|
|
1176
|
+
higrowth login --host https://staging.app.higrowth.ai
|
|
1177
1177
|
higrowth skills install --target all
|
|
1178
1178
|
higrowth whoami
|
|
1179
1179
|
`;
|