ripplo 0.0.10 → 0.0.12
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 -4
- package/dist/index.js +117 -103
- package/dist/mcp/index.js +24 -24
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -33,9 +33,31 @@ Then paste `/mcp` into Claude Code (or your coding agent) to activate the Ripplo
|
|
|
33
33
|
|
|
34
34
|
## Commands
|
|
35
35
|
|
|
36
|
-
| Command
|
|
37
|
-
|
|
|
38
|
-
| `ripplo`
|
|
39
|
-
| `
|
|
36
|
+
| Command | Description |
|
|
37
|
+
| ----------------------- | ---------------------------------------------------- |
|
|
38
|
+
| `ripplo` | Launch the interactive dashboard |
|
|
39
|
+
| `ripplo run` | Run workflows from the command line |
|
|
40
|
+
| `ripplo generate-types` | Generate Zod schemas + TS types for precondition API |
|
|
41
|
+
|
|
42
|
+
### `ripplo run`
|
|
43
|
+
|
|
44
|
+
Run one or more workflows in parallel from the command line. Requires dev mode (`ripplo`) to be running.
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
# Run all workflows in parallel
|
|
48
|
+
npx ripplo run
|
|
49
|
+
|
|
50
|
+
# Run a single workflow
|
|
51
|
+
npx ripplo run login-flow
|
|
52
|
+
|
|
53
|
+
# Run multiple workflows in parallel
|
|
54
|
+
npx ripplo run login-flow create-project checkout
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
With no arguments, it discovers and runs every workflow in `.ripplo/workflows/`.
|
|
58
|
+
|
|
59
|
+
Workflow slugs are the filenames in `.ripplo/workflows/` without the `.json` extension. Results include run URLs and debug artifact paths.
|
|
60
|
+
|
|
61
|
+
Your coding agent can also trigger runs via the MCP server's `run` tool.
|
|
40
62
|
|
|
41
63
|
Learn more at [ripplo.ai](https://ripplo.ai).
|