ripplo 0.0.1
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 +31 -0
- package/dist/index.js +461 -0
- package/dist/mcp/index.js +857 -0
- package/package.json +57 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ripplo
|
|
2
|
+
|
|
3
|
+
CLI for [Ripplo](https://ripplo.ai) — AI-powered end-to-end testing.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install -g ripplo
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick start
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
ripplo init
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
This will log you in, scaffold a `.ripplo/` directory, install the MCP server, and start dev mode.
|
|
18
|
+
|
|
19
|
+
## Commands
|
|
20
|
+
|
|
21
|
+
| Command | Description |
|
|
22
|
+
| ---------------- | ---------------------------------------------------- |
|
|
23
|
+
| `login` | Authenticate with Ripplo |
|
|
24
|
+
| `init` | Create a new project and start dev mode |
|
|
25
|
+
| `run` | Execute a workflow spec via Playwright |
|
|
26
|
+
| `dev` | Watch files and run workflows from the UI |
|
|
27
|
+
| `agent-test` | Run an autonomous agent test locally |
|
|
28
|
+
| `setup-mcp` | Configure MCP server in `.mcp.json` |
|
|
29
|
+
| `generate-types` | Generate Zod schemas + TS types for precondition API |
|
|
30
|
+
|
|
31
|
+
Learn more at [ripplo.ai](https://ripplo.ai).
|