@growthub/create-growthub-local 0.5.0 → 0.5.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 +6 -3
- package/bin/create-growthub-local.mjs +3 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -22,12 +22,12 @@ npm create growthub-local@latest -- --profile workspace --out ./my-workspace
|
|
|
22
22
|
|
|
23
23
|
## First-run outcomes
|
|
24
24
|
|
|
25
|
-
After install, users
|
|
25
|
+
After install, users land on **Create Governed Workspace** first. The fastest paths are:
|
|
26
26
|
|
|
27
27
|
1. import a GitHub repo into a governed workspace
|
|
28
28
|
2. import a skills.sh skill into a governed workspace
|
|
29
|
-
3. start
|
|
30
|
-
4.
|
|
29
|
+
3. start a greenfield governed workspace
|
|
30
|
+
4. start from a worker kit
|
|
31
31
|
5. connect Growthub account after local value is proven
|
|
32
32
|
6. optionally activate upgrade path for hosted depth
|
|
33
33
|
|
|
@@ -54,6 +54,9 @@ After install, users typically choose one of these six outcomes:
|
|
|
54
54
|
# Re-open the CLI discovery hub
|
|
55
55
|
npx growthub discover
|
|
56
56
|
|
|
57
|
+
# Re-open the first-run governed workspace path
|
|
58
|
+
npx growthub discover --start create-workspace
|
|
59
|
+
|
|
57
60
|
# Run local app runtime
|
|
58
61
|
npx growthub run
|
|
59
62
|
```
|
|
@@ -217,11 +217,12 @@ function buildCliArgs(opts, effectiveDataDir, growthubCli) {
|
|
|
217
217
|
];
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
// No profile → open the shared discovery hub
|
|
221
|
-
// workflows / agent harness / settings).
|
|
220
|
+
// No profile → open the shared discovery hub at the core first-run path.
|
|
222
221
|
return [
|
|
223
222
|
growthubCli,
|
|
224
223
|
"discover",
|
|
224
|
+
"--start",
|
|
225
|
+
"create-workspace",
|
|
225
226
|
...(opts.run ? ["--run"] : []),
|
|
226
227
|
"--data-dir",
|
|
227
228
|
effectiveDataDir,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@growthub/create-growthub-local",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Growthub Local is a control plane for forked worker kits. The CLI is the executor, the hosted app is the identity authority, the worker kit is the unit of portable agent infrastructure, and the fork is the operator's personal branch of that infrastructure — policy-governed, trace-backed, and self-healing.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"node": ">=20"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@growthub/cli": "0.9.
|
|
26
|
+
"@growthub/cli": "0.9.2"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"growthub",
|