@growthub/cli 0.3.48 → 0.3.49
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 +26 -0
- package/dist/utils/banner.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
- shared template discovery and extraction
|
|
8
8
|
- hosted Growthub auth + machine profile bridge
|
|
9
9
|
|
|
10
|
+
Now supports the hosted for Growthub Auth Users, the `Workflows` discovery surface for saved workflows, templates, and hosted workflow execution.
|
|
11
|
+
|
|
10
12
|
## Install
|
|
11
13
|
|
|
12
14
|
```bash
|
|
@@ -154,6 +156,29 @@ Contract:
|
|
|
154
156
|
3. Hosted machine linkage is stored separately from `instances/<id>/config.json`.
|
|
155
157
|
4. `growthub` and `paperclipai` remain intentional side-by-side surfaces rather than auto-loading one another.
|
|
156
158
|
|
|
159
|
+
## Workflows Discovery V1
|
|
160
|
+
|
|
161
|
+
The public CLI now supports a hosted workflow discovery flow inside the interactive hub for all Growthub Auth Users:
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
growthub discover
|
|
165
|
+
growthub workflow
|
|
166
|
+
growthub workflow templates
|
|
167
|
+
growthub workflow saved
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
Use this when you want to:
|
|
171
|
+
|
|
172
|
+
- list hosted saved workflows
|
|
173
|
+
- inspect saved workflow detail
|
|
174
|
+
- save template-backed workflows into hosted Growthub
|
|
175
|
+
- execute a hosted saved workflow from the CLI
|
|
176
|
+
- see loading, progress, summary, artifacts, and credits in the terminal
|
|
177
|
+
|
|
178
|
+
The full public usage and architecture notes live here:
|
|
179
|
+
|
|
180
|
+
- [CLI Workflows Discovery V1](../docs/CLI_WORKFLOWS_DISCOVERY_V1.md)
|
|
181
|
+
|
|
157
182
|
## Contribution Model
|
|
158
183
|
|
|
159
184
|
The CLI has two extension surfaces for content:
|
|
@@ -176,5 +201,6 @@ For the agent-facing extension workflow, see [docs/CLI_TEMPLATE_CONTRIBUTION_EXT
|
|
|
176
201
|
- [GitHub README](https://github.com/Growthub-ai/growthub-local#readme)
|
|
177
202
|
- [Contributing](https://github.com/Growthub-ai/growthub-local/blob/main/CONTRIBUTING.md)
|
|
178
203
|
- [Growthub Authentication Bridge](https://github.com/Growthub-ai/growthub-local/blob/main/docs/GROWTHUB_AUTH_BRIDGE.md)
|
|
204
|
+
- [CLI Workflows Discovery V1](https://github.com/Growthub-ai/growthub-local/blob/main/docs/CLI_WORKFLOWS_DISCOVERY_V1.md)
|
|
179
205
|
- [Worker Kits](https://github.com/Growthub-ai/growthub-local/blob/main/docs/WORKER_KITS.md)
|
|
180
206
|
- [CLI Template Contribution Extension Workflows](https://github.com/Growthub-ai/growthub-local/blob/main/docs/CLI_TEMPLATE_CONTRIBUTION_EXTENSION_WORKFLOWS.md)
|
package/dist/utils/banner.js
CHANGED