@growthub/cli 0.3.43 → 0.3.44
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 +5 -1
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,6 +35,7 @@ Use this when you want to create or reopen a full Growthub local surface.
|
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
37
|
growthub
|
|
38
|
+
growthub list
|
|
38
39
|
growthub discover
|
|
39
40
|
growthub onboard
|
|
40
41
|
growthub run
|
|
@@ -55,6 +56,9 @@ Use this when you want a working-directory-ready environment for an agent.
|
|
|
55
56
|
### Discovery
|
|
56
57
|
|
|
57
58
|
```bash
|
|
59
|
+
# Interactive discovery hub
|
|
60
|
+
growthub list
|
|
61
|
+
|
|
58
62
|
# Interactive browser — type filter → kit selector → actions
|
|
59
63
|
growthub kit
|
|
60
64
|
|
|
@@ -142,7 +146,7 @@ For the agent-facing extension workflow, see [docs/CLI_TEMPLATE_CONTRIBUTION_EXT
|
|
|
142
146
|
|
|
143
147
|
## Development Notes
|
|
144
148
|
|
|
145
|
-
- `@growthub/cli` version: `0.3.
|
|
149
|
+
- `@growthub/cli` version: `0.3.44`
|
|
146
150
|
- Node.js: `>=20`
|
|
147
151
|
- Source of truth repo: [Growthub Local](https://github.com/Growthub-ai/growthub-local)
|
|
148
152
|
|
package/dist/index.js
CHANGED
|
@@ -14762,6 +14762,9 @@ Instance setup:
|
|
|
14762
14762
|
program.action(async () => {
|
|
14763
14763
|
await runDiscoveryHub();
|
|
14764
14764
|
});
|
|
14765
|
+
program.command("list").description("Open the interactive Growthub discovery hub").action(async () => {
|
|
14766
|
+
await runDiscoveryHub();
|
|
14767
|
+
});
|
|
14765
14768
|
program.hook("preAction", (_thisCommand, actionCommand) => {
|
|
14766
14769
|
const options = actionCommand.optsWithGlobals();
|
|
14767
14770
|
const optionNames = new Set(actionCommand.options.map((option) => option.attributeName()));
|