@growthub/create-growthub-local 0.14.5 → 0.14.8
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 +17 -18
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,14 +24,13 @@ Reference contracts:
|
|
|
24
24
|
- [Governed Workspace Topology V1](https://github.com/Growthub-ai/growthub-local/blob/main/docs/GOVERNED_WORKSPACE_TOPOLOGY_V1.md)
|
|
25
25
|
- [Workspace Builder Runtime V1](https://github.com/Growthub-ai/growthub-local/blob/main/docs/WORKSPACE_BUILDER_RUNTIME_V1.md)
|
|
26
26
|
|
|
27
|
-
##
|
|
27
|
+
## Workspace-first install
|
|
28
28
|
|
|
29
|
-
The installer offers
|
|
29
|
+
The installer offers a direct governed workspace lane before command/harness depth:
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
npm create @growthub/growthub-local@latest -- --profile gtm
|
|
33
|
-
npm create @growthub/growthub-local@latest -- --profile dx
|
|
34
32
|
npm create @growthub/growthub-local@latest -- --profile workspace --out ./my-workspace
|
|
33
|
+
npm create @growthub/growthub-local@latest -- --profile self-improving --out ./my-workspace
|
|
35
34
|
```
|
|
36
35
|
|
|
37
36
|
## How this fits the governed workspace architecture
|
|
@@ -42,7 +41,7 @@ The installer is the safest entrypoint into the same lifecycle the CLI operates:
|
|
|
42
41
|
2. export the governed Workspace app
|
|
43
42
|
3. register the fork metadata and local policy
|
|
44
43
|
4. open the Workspace Builder for dashboards, tabs, widgets, templates, data model objects, and settings
|
|
45
|
-
5. continue with `@growthub/cli` for status checks, fork sync, deploy preparation,
|
|
44
|
+
5. continue with `@growthub/cli` for status checks, fork sync, deploy preparation, workspace templates, workflows, pipelines, and optional Growthub authority
|
|
46
45
|
|
|
47
46
|
The generated Workspace is not a loose app copy. It carries `growthub.config.json` plus `.growthub-fork/` lifecycle state so export, fork safety, ongoing customization, and agent operation stay tied to one portable artifact.
|
|
48
47
|
|
|
@@ -53,7 +52,7 @@ After install, users land on **Custom AI Governed Workspace** first. The fastest
|
|
|
53
52
|
1. import a GitHub repo into a governed workspace
|
|
54
53
|
2. import a skills.sh skill into a governed workspace
|
|
55
54
|
3. start from the workspace starter
|
|
56
|
-
4. start from a
|
|
55
|
+
4. start from a workspace template
|
|
57
56
|
5. connect Growthub account after local value is proven
|
|
58
57
|
6. optionally activate upgrade path for hosted depth
|
|
59
58
|
|
|
@@ -61,18 +60,18 @@ After install, users land on **Custom AI Governed Workspace** first. The fastest
|
|
|
61
60
|
|
|
62
61
|
| Flag | Applies to | Description |
|
|
63
62
|
|---|---|---|
|
|
64
|
-
| `--profile
|
|
65
|
-
| `--run` |
|
|
66
|
-
| `--data-dir <path>` |
|
|
67
|
-
| `--config <path>` |
|
|
68
|
-
| `--out <path>` |
|
|
69
|
-
| `--kit <kit-id>` |
|
|
70
|
-
| `--name <label>` |
|
|
71
|
-
| `--upstream <owner/repo>` |
|
|
72
|
-
| `--destination-org <org>` |
|
|
73
|
-
| `--fork-name <name>` |
|
|
74
|
-
| `--remote-sync-mode <mode>` |
|
|
75
|
-
| `--json` |
|
|
63
|
+
| `--profile workspace\|self-improving` | all | Pick a governed workspace install profile |
|
|
64
|
+
| `--run` | discovery | Start Growthub immediately after config |
|
|
65
|
+
| `--data-dir <path>` | discovery | Override install directory (default: `./growthub-local`) |
|
|
66
|
+
| `--config <path>` | discovery | Use a custom config path |
|
|
67
|
+
| `--out <path>` | workspace profiles | Destination for workspace scaffold |
|
|
68
|
+
| `--kit <kit-id>` | workspace profiles | Source kit id (default: `growthub-custom-workspace-starter-v1`) |
|
|
69
|
+
| `--name <label>` | workspace profiles | Human label for fork registration |
|
|
70
|
+
| `--upstream <owner/repo>` | workspace profiles | Optionally create remote GitHub fork |
|
|
71
|
+
| `--destination-org <org>` | workspace profiles | Create fork under org |
|
|
72
|
+
| `--fork-name <name>` | workspace profiles | Override GitHub fork name |
|
|
73
|
+
| `--remote-sync-mode <mode>` | workspace profiles | Initial policy mode: `off`, `branch`, `pr` |
|
|
74
|
+
| `--json` | workspace profiles | Emit machine-readable output |
|
|
76
75
|
|
|
77
76
|
## Post-install examples
|
|
78
77
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@growthub/create-growthub-local",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.8",
|
|
4
4
|
"description": "Guided installer for Growthub Local and Agent Workspace as Code: create a governed workspace with matching CLI, fork metadata, and local-first lifecycle.",
|
|
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.14.
|
|
26
|
+
"@growthub/cli": "0.14.8"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"growthub",
|