diff --git a/README.md b/README.md index 8daaad2..3e1bd0a 100644 --- a/README.md +++ b/README.md @@ -247,13 +247,6 @@ Toggle an alert between `active` and `inactive`. formo alerts toggle alert_abc123 --status inactive ``` -### `alerts test ` -Send a test alert delivery with optional sample payloads. - -```bash -formo alerts test alert_abc123 --sample-event '{"event":"transaction","revenue":250}' -``` - --- ## `formo boards` @@ -296,7 +289,7 @@ Delete a board. Chart commands. Charts live inside a board. Requires `boards:read` / `boards:write`. ### `charts list --board-id ` -List all charts in a board. +List charts in a board. Returns lightweight summaries by default; pass `--results` to execute each chart’s query and include full results. ### `charts get --board-id ` Get a single chart by ID. @@ -348,8 +341,6 @@ List all tracked contracts. Returns `{ data: Contract[], deploy: { last_deployed ### `contracts get
` Get a single tracked contract. -### `contracts recommendations` -List contracts the project already interacts with but has not added yet. ### `contracts create` @@ -379,8 +370,6 @@ formo contracts create --address 0x1f9840a85d5af5bf1d1762f925bdaddc4201f984 --ch | `--start-block` | Optional start block | | `--include-in-pipeline` | Include or exclude this contract from the Goldsky events pipeline | -### `contracts pipeline
--include-in-pipeline ` -Toggle pipeline inclusion without re-sending the full ABI/events payload. ### `contracts delete
` Remove a tracked contract. diff --git a/SKILLS.md b/SKILLS.md index c2ee1c6..cc8c7ec 100644 --- a/SKILLS.md +++ b/SKILLS.md @@ -345,11 +345,6 @@ formo alerts toggle alert_abc123 --status inactive formo alerts toggle alert_abc123 --status active ``` -### Test alert delivery - -```bash -formo alerts test --sample-event '{"event":"transaction","revenue":250}' -``` --- @@ -417,8 +412,11 @@ Manage charts within dashboard boards. Charts are visualizations of analytics da ### List charts in a board +Returns lightweight summaries by default; pass `--results` to execute each chart’s query and include full results. + ```bash formo charts list --board-id +formo charts list --board-id --results ``` > Requires `boards:read` scope. @@ -513,15 +511,6 @@ formo contracts get
> Requires `contracts:read` scope. -### Get recommended contracts - -```bash -formo contracts recommendations -``` - -Lists contracts the project already interacts with but has not added yet. - -> Requires `contracts:read` scope. ### Register a contract @@ -566,12 +555,12 @@ formo contracts update
--name --abi '' --events ' ### Toggle pipeline inclusion +Use `contracts update` with `--include-in-pipeline` when a contract should remain registered for ABI decoding but be excluded from pipeline deploys: + ```bash -formo contracts pipeline
--include-in-pipeline false +formo contracts update
--include-in-pipeline false ``` -Use this when a contract should remain registered for ABI decoding but be excluded from pipeline deploys. - > Requires `contracts:write` scope. ### Delete a contract diff --git a/package.json b/package.json index f0341f3..869090b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@formo/cli", - "version": "1.2.1", + "version": "2.0.0", "packageManager": "pnpm@11.1.2", "engines": { "node": ">=22.12"