@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 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.43`
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()));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@growthub/cli",
3
- "version": "0.3.43",
3
+ "version": "0.3.44",
4
4
  "description": "Growthub CLI — orchestrate AI agent teams to run a business",
5
5
  "type": "module",
6
6
  "bin": {