Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,13 +247,6 @@ Toggle an alert between `active` and `inactive`.
formo alerts toggle alert_abc123 --status inactive
```

### `alerts test <alertId>`
Send a test alert delivery with optional sample payloads.

```bash
formo alerts test alert_abc123 --sample-event '{"event":"transaction","revenue":250}'
```

---

## `formo boards`
Expand Down Expand Up @@ -296,7 +289,7 @@ Delete a board.
Chart commands. Charts live inside a board. Requires `boards:read` / `boards:write`.

### `charts list --board-id <boardId>`
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 <chartId> --board-id <boardId>`
Get a single chart by ID.
Expand Down Expand Up @@ -348,8 +341,6 @@ List all tracked contracts. Returns `{ data: Contract[], deploy: { last_deployed
### `contracts get <chain> <address>`
Get a single tracked contract.

### `contracts recommendations`
List contracts the project already interacts with but has not added yet.

### `contracts create`

Expand Down Expand Up @@ -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 <chain> <address> --include-in-pipeline <true|false>`
Toggle pipeline inclusion without re-sending the full ABI/events payload.

### `contracts delete <chain> <address>`
Remove a tracked contract.
Expand Down
23 changes: 6 additions & 17 deletions SKILLS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <alertId> --sample-event '{"event":"transaction","revenue":250}'
```

---

Expand Down Expand Up @@ -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 <boardId>
formo charts list --board-id <boardId> --results
```

> Requires `boards:read` scope.
Expand Down Expand Up @@ -513,15 +511,6 @@ formo contracts get <chain> <address>

> 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

Expand Down Expand Up @@ -566,12 +555,12 @@ formo contracts update <chain> <address> --name <name> --abi '<json>' --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 <chain> <address> --include-in-pipeline false
formo contracts update <chain> <address> --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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@formo/cli",
"version": "1.2.1",
"version": "2.0.0",
"packageManager": "pnpm@11.1.2",
"engines": {
"node": ">=22.12"
Expand Down
Loading