Grimoire CLI Skill
This skill is the base operating playbook for Grimoire.
When To Use
Use this skill when the task includes:
- install/setup of Grimoire tooling
- creating or editing
.spell files
- syntax questions about DSL capability
- advisory (
advise) authoring, debugging, and replay workflows
- setup/compile/validate/simulate/cast/resume workflows
- debugging spell compile/runtime failures
Mandatory Loading Rules
All references/ and docs/ paths below are relative to this skill directory (skills/grimoire/). These rules are required — they solve syntax coverage gaps that cause authoring errors.
STOP — read this first: Do NOT search the codebase, grep for syntax patterns, or rely on memory for DSL syntax. The reference files bundled with this skill are the single source of truth. IMMEDIATELY use the Read tool on the files listed below before writing or editing any spell content.
- For any
.spell authoring/editing task — IMMEDIATELY read these files using the Read tool before doing anything else:
references/syntax-capabilities.md
references/authoring-workflow.md
- For CLI flag details — IMMEDIATELY read using the Read tool:
references/cli-quick-reference.md
- For any advisory task (
advise, advisors, replay) — IMMEDIATELY read using the Read tool:
docs/how-to/use-advisory-decisions.md
docs/explanation/advisory-decision-flow.md
- For local fork preview workflows — IMMEDIATELY read using the Read tool:
references/anvil-cheatsheet.md
docs/how-to/simulate-on-anvil-fork.md
- For wallet setup and execution key flows — IMMEDIATELY read using the Read tool:
docs/how-to/use-wallet-commands-end-to-end.md
- For RPC/signer/transaction diagnostics — IMMEDIATELY read using the Read tool:
references/cast-cheatsheet.md
Installation Resolution
Select the first working invocation and reuse it for the session.
- Global:
npm i -g @grimoirelabs/cli
- command prefix:
grimoire
- No-install:
- command prefix:
npx -y @grimoirelabs/cli
- Repo-local:
- command prefix:
bun run packages/cli/src/index.ts --
If one path fails, move to the next path automatically.
If grimoire venue doctor ... fails with Unknown venue adapter "doctor", prefer repo-local invocation (bun run packages/cli/src/index.ts) or upgrade global CLI.
When using repo-local Bun execution, always keep the trailing -- so Bun forwards flags to Grimoire instead of consuming them.
Fast Start (Immediate Success Path)
Use this sequence before writing custom spells:
<grimoire-cmd> --help
<grimoire-cmd> setup (guided interactive execute onboarding)
<grimoire-cmd> validate spells/compute-only.spell
<grimoire-cmd> simulate spells/compute-only.spell --chain 1
If all three pass, proceed to spell authoring.
Setup security/runtime expectations:
- setup prompts for hidden passwords and never echoes input
- blank RPC input falls back to chain default public RPC
- setup may write
.grimoire/setup.env unless --no-save-password-env is used
- CLI auto-loads nearest
.grimoire/setup.env at startup without overriding existing env vars
Authoring and Execution Policy
- Read syntax references first (mandatory rule above).
- Author/update spell.
- Run
format to canonicalize layout before validation.
- Run
validate (use --strict for advisory-heavy spells).
- Fix errors/warnings and re-run until validation passes.
- Run
simulate.
- Before venue metadata queries or value-moving runs, execute
venue doctor for the target adapter/chain.
- Example:
<grimoire-cmd> venue doctor --adapter uniswap --chain 1 --rpc-url <rpc> --json
- Before value-moving runs on EVM venues, verify endpoint and signer state with Foundry Cast quickchecks (
chain-id, block-number, balance, nonce).
- Do not apply Anvil/Cast checks to offchain venues such as
hyperliquid.
- For advisory steps intended for deterministic execution, record and then use
--advisory-replay <runId> in dry-run/live cast.
- If spell includes irreversible actions, require
cast --dry-run before any live cast.
- Ask for explicit user confirmation before live value-moving
cast.
- For cross-chain mode, require explicit per-chain RPC mappings:
--rpc-url <sourceChainId>=<url>
--rpc-url <destinationChainId>=<url>
- For cross-chain Morpho actions, require explicit market mapping via:
--morpho-market-id <actionRef>=<marketId> (repeatable), or
--morpho-market-map <path>
- For Morpho supply-only strategies, prefer
vault_deposit / vault_withdraw (explicit vault address).
- If vault address is missing, list candidate vaults and require user to pick one; never auto-select.
- For Morpho market strategies (borrow/collateral/lend), require explicit
market_id and use explicit actions:
morpho_blue.supply_collateral(asset, amount, market_id)
morpho_blue.withdraw_collateral(asset, amount, market_id)
- Use bare
0x... address literals in action token fields; quoted address-like strings trigger QUOTED_ADDRESS_LITERAL.
- For Morpho doctor readiness checks, set wallet env explicitly (
GRIMOIRE_WALLET_ADDRESS preferred, fallback WALLET_ADDRESS).
- If a cross-chain run is left waiting, continue with
resume <runId> (use --watch to poll settlement).
- Never place passwords/private keys in agent prompts or inline command assignments.
- Prefer keystore +
--password-env over --private-key for dry-run/live casts.
- Treat
.grimoire/setup.env as plaintext secret material: keep local-only and rotate/remove when no longer needed.
- For commands run outside the project tree, set
GRIMOIRE_SETUP_ENV_FILE=/abs/path/to/.grimoire/setup.env when needed.
Command Surface (Core)
init
setup
format
compile
compile-all
validate
triggers
simulate
cast
venues
venue
venue doctor
history
log
resume
wallet (generate, address, balance, import, wrap, unwrap)
Use references/cli-quick-reference.md for concise command signatures and safety-critical flags.
Runtime Behavior Model
- One runtime semantics: preview first, commit only for execute paths.
simulate and cast --dry-run are preview-only flows.
- Live
cast can commit irreversible actions when policy and runtime checks pass.
simulate supports explicit --rpc-url, with precedence: --rpc-url -> RPC_URL_<chainId> -> RPC_URL.
- Phase 1 cross-chain execution uses two-spell orchestration (
--destination-spell) with one logical run id and resume support.
- Use
triggers <spell> to discover stable handler ids natively before targeted execution.
simulate and cast support selected-trigger execution via --trigger-id, --trigger-index, and legacy --trigger.
- For multi-handler spells, prefer
--trigger-id; --trigger is label-based and can be ambiguous.
- Cross-chain
simulate / cast must forward the same selected trigger into per-chain execution.
- In
--json mode, parse stdout only; progress and spinner output can still appear on stderr.
Query Functions (price / balance / apy / metric)
Always prefer query functions over advisory for structured data fetching. These are deterministic, fast, and don't require LLM calls.
price(BASE, QUOTE[, SOURCE]) — live token price via query provider (requires Alchemy RPC URL)
balance(ASSET[, ADDRESS]) — on-chain token balance via RPC (any RPC URL)
apy(VENUE, ASSET[, SELECTOR]) — venue-backed APY surface (for example Aave and Morpho)
metric(SURFACE, VENUE[, ASSET[, SELECTOR]]) — generic protocol metric surface
- Selector guidance:
- market/vault id selector:
apy(morpho, USDC, "wbtc-usdc-86")
- vault selector (Morpho):
metric("vault_net_apy", morpho, USDC, "vault=0xVaultAddress")
- Morpho
vault_apy / vault_net_apy require explicit selector; do not rely on implicit defaults.
- key/value selector:
metric("quote_out", uni_v3, USDC, "asset_out=WETH,amount=1000000,fee_tier=3000")
- Never use an advisory (
advise) just to fetch prices, balances, APYs, or other structured metrics
Use advisory only when the task requires LLM judgment, reasoning, or interpretation.
Advisory Operating Rules
- Advisory must be explicit statement form:
x = advise advisor: "prompt" { ... }.
- Treat advisory outputs as typed contracts; enforce schema with
output.
- Require
timeout and fallback in every advisory block.
- Prefer
validate --strict when advisory logic gates value-moving actions.
- Use replay for determinism when moving from preview/dry-run to live execution.
- For runtime debugging, use
--advisory-trace-verbose (non-JSON mode) to stream detailed advisory traces.
Venue Metadata and Snapshots
Use venue skills for snapshot parameters and market metadata:
grimoire-aave
grimoire-uniswap
grimoire-morpho-blue
grimoire-hyperliquid
grimoire-pendle
grimoire-polymarket
Formatting policy for venue CLI output:
- prefer
--format json for automation or nested payloads
- use
--format table for human-readable summaries
References
references/syntax-capabilities.md
references/authoring-workflow.md
references/anvil-cheatsheet.md
references/cast-cheatsheet.md
references/cli-quick-reference.md
docs/how-to/simulate-on-anvil-fork.md
docs/how-to/use-wallet-commands-end-to-end.md
docs/how-to/use-advisory-decisions.md
docs/how-to/compare-protocol-metrics.md
docs/explanation/advisory-decision-flow.md
docs/reference/cli.md
docs/reference/spell-syntax.md
docs/reference/grimoire-dsl-spec.md
docs/reference/compiler-runtime.md
1---2name: grimoire3description: Install and operate Grimoire, author .spell files with full syntax coverage (including advisory decision logic), and run compile/validate/simulate/cast safely. Use when users ask to create, edit, debug, validate, simulate, execute, or explain Grimoire strategies.4---5
6# Grimoire CLI Skill
7
8This skill is the base operating playbook for Grimoire.
9
10## When To Use
11
12Use this skill when the task includes:
13
14- install/setup of Grimoire tooling
15- creating or editing `.spell` files
16- syntax questions about DSL capability
17- advisory (`advise`) authoring, debugging, and replay workflows
18- setup/compile/validate/simulate/cast/resume workflows
19- debugging spell compile/runtime failures
20
21## Mandatory Loading Rules
22
23All `references/` and `docs/` paths below are relative to this skill directory (`skills/grimoire/`). These rules are **required** — they solve syntax coverage gaps that cause authoring errors.
24
25**STOP — read this first:** Do NOT search the codebase, grep for syntax patterns, or rely on memory for DSL syntax. The reference files bundled with this skill are the single source of truth. IMMEDIATELY use the Read tool on the files listed below before writing or editing any spell content.
26
271. For any `.spell` authoring/editing task — IMMEDIATELY read these files using the Read tool before doing anything else:
28 - `references/syntax-capabilities.md`
29 - `references/authoring-workflow.md`
302. For CLI flag details — IMMEDIATELY read using the Read tool:
31 - `references/cli-quick-reference.md`
323. For any advisory task (`advise`, `advisors`, replay) — IMMEDIATELY read using the Read tool:
33 - `docs/how-to/use-advisory-decisions.md`
34 - `docs/explanation/advisory-decision-flow.md`
354. For local fork preview workflows — IMMEDIATELY read using the Read tool:
36 - `references/anvil-cheatsheet.md`
37 - `docs/how-to/simulate-on-anvil-fork.md`
385. For wallet setup and execution key flows — IMMEDIATELY read using the Read tool:
39 - `docs/how-to/use-wallet-commands-end-to-end.md`
406. For RPC/signer/transaction diagnostics — IMMEDIATELY read using the Read tool:
41 - `references/cast-cheatsheet.md`
42
43## Installation Resolution
44
45Select the first working invocation and reuse it for the session.
46
471. Global:
48 - `npm i -g @grimoirelabs/cli`
49 - command prefix: `grimoire`
502. No-install:
51 - command prefix: `npx -y @grimoirelabs/cli`
523. Repo-local:
53 - command prefix: `bun run packages/cli/src/index.ts --`
54
55If one path fails, move to the next path automatically.
56
57If `grimoire venue doctor ...` fails with `Unknown venue adapter "doctor"`, prefer repo-local invocation (`bun run packages/cli/src/index.ts`) or upgrade global CLI.
58
59When using repo-local Bun execution, always keep the trailing `--` so Bun forwards flags to Grimoire instead of consuming them.
60
61## Fast Start (Immediate Success Path)
62
63Use this sequence before writing custom spells:
64
651. `<grimoire-cmd> --help`
662. `<grimoire-cmd> setup` (guided interactive execute onboarding)
673. `<grimoire-cmd> validate spells/compute-only.spell`
684. `<grimoire-cmd> simulate spells/compute-only.spell --chain 1`
69
70If all three pass, proceed to spell authoring.
71
72Setup security/runtime expectations:
73
74- setup prompts for hidden passwords and never echoes input
75- blank RPC input falls back to chain default public RPC
76- setup may write `.grimoire/setup.env` unless `--no-save-password-env` is used
77- CLI auto-loads nearest `.grimoire/setup.env` at startup without overriding existing env vars
78
79## Authoring and Execution Policy
80
811. Read syntax references first (mandatory rule above).
822. Author/update spell.
833. Run `format` to canonicalize layout before validation.
844. Run `validate` (use `--strict` for advisory-heavy spells).
855. Fix errors/warnings and re-run until validation passes.
866. Run `simulate`.
877. Before venue metadata queries or value-moving runs, execute `venue doctor` for the target adapter/chain.
88 - Example: `<grimoire-cmd> venue doctor --adapter uniswap --chain 1 --rpc-url <rpc> --json`
898. Before value-moving runs on EVM venues, verify endpoint and signer state with Foundry Cast quickchecks (`chain-id`, `block-number`, `balance`, `nonce`).
90 - Do not apply Anvil/Cast checks to offchain venues such as `hyperliquid`.
919. For advisory steps intended for deterministic execution, record and then use `--advisory-replay <runId>` in dry-run/live cast.
9210. If spell includes irreversible actions, require `cast --dry-run` before any live cast.
9311. Ask for explicit user confirmation before live value-moving `cast`.
9412. For cross-chain mode, require explicit per-chain RPC mappings:
95 - `--rpc-url <sourceChainId>=<url>`
96 - `--rpc-url <destinationChainId>=<url>`
9713. For cross-chain Morpho actions, require explicit market mapping via:
98 - `--morpho-market-id <actionRef>=<marketId>` (repeatable), or
99 - `--morpho-market-map <path>`
10014. For Morpho supply-only strategies, prefer `vault_deposit` / `vault_withdraw` (explicit vault address).
101 - If vault address is missing, list candidate vaults and require user to pick one; never auto-select.
10215. For Morpho market strategies (borrow/collateral/lend), require explicit `market_id` and use explicit actions:
103 - `morpho_blue.supply_collateral(asset, amount, market_id)`
104 - `morpho_blue.withdraw_collateral(asset, amount, market_id)`
10516. Use bare `0x...` address literals in action token fields; quoted address-like strings trigger `QUOTED_ADDRESS_LITERAL`.
10617. For Morpho doctor readiness checks, set wallet env explicitly (`GRIMOIRE_WALLET_ADDRESS` preferred, fallback `WALLET_ADDRESS`).
10718. If a cross-chain run is left waiting, continue with `resume <runId>` (use `--watch` to poll settlement).
10819. Never place passwords/private keys in agent prompts or inline command assignments.
10920. Prefer keystore + `--password-env` over `--private-key` for dry-run/live casts.
11021. Treat `.grimoire/setup.env` as plaintext secret material: keep local-only and rotate/remove when no longer needed.
11122. For commands run outside the project tree, set `GRIMOIRE_SETUP_ENV_FILE=/abs/path/to/.grimoire/setup.env` when needed.
112
113## Command Surface (Core)
114
115- `init`
116- `setup`
117- `format`
118- `compile`
119- `compile-all`
120- `validate`
121- `triggers`
122- `simulate`
123- `cast`
124- `venues`
125- `venue`
126- `venue doctor`
127- `history`
128- `log`
129- `resume`
130- `wallet` (`generate`, `address`, `balance`, `import`, `wrap`, `unwrap`)
131
132Use `references/cli-quick-reference.md` for concise command signatures and safety-critical flags.
133
134## Runtime Behavior Model
135
136- One runtime semantics: preview first, commit only for execute paths.
137- `simulate` and `cast --dry-run` are preview-only flows.
138- Live `cast` can commit irreversible actions when policy and runtime checks pass.
139- `simulate` supports explicit `--rpc-url`, with precedence: `--rpc-url` -> `RPC_URL_<chainId>` -> `RPC_URL`.
140- Phase 1 cross-chain execution uses two-spell orchestration (`--destination-spell`) with one logical run id and resume support.
141- Use `triggers <spell>` to discover stable handler ids natively before targeted execution.
142- `simulate` and `cast` support selected-trigger execution via `--trigger-id`, `--trigger-index`, and legacy `--trigger`.
143- For multi-handler spells, prefer `--trigger-id`; `--trigger` is label-based and can be ambiguous.
144- Cross-chain `simulate` / `cast` must forward the same selected trigger into per-chain execution.
145- In `--json` mode, parse stdout only; progress and spinner output can still appear on stderr.
146
147## Query Functions (price / balance / apy / metric)
148
149**Always prefer query functions over advisory for structured data fetching.** These are deterministic, fast, and don't require LLM calls.
150
151- `price(BASE, QUOTE[, SOURCE])` — live token price via query provider (requires Alchemy RPC URL)
152- `balance(ASSET[, ADDRESS])` — on-chain token balance via RPC (any RPC URL)
153- `apy(VENUE, ASSET[, SELECTOR])` — venue-backed APY surface (for example Aave and Morpho)
154- `metric(SURFACE, VENUE[, ASSET[, SELECTOR]])` — generic protocol metric surface
155- Selector guidance:
156- market/vault id selector: `apy(morpho, USDC, "wbtc-usdc-86")`
157- vault selector (Morpho): `metric("vault_net_apy", morpho, USDC, "vault=0xVaultAddress")`
158- Morpho `vault_apy` / `vault_net_apy` require explicit selector; do not rely on implicit defaults.
159- key/value selector: `metric("quote_out", uni_v3, USDC, "asset_out=WETH,amount=1000000,fee_tier=3000")`
160- Never use an advisory (`advise`) just to fetch prices, balances, APYs, or other structured metrics
161
162Use advisory only when the task requires LLM judgment, reasoning, or interpretation.
163
164## Advisory Operating Rules
165
166- Advisory must be explicit statement form: `x = advise advisor: "prompt" { ... }`.
167- Treat advisory outputs as typed contracts; enforce schema with `output`.
168- Require `timeout` and `fallback` in every advisory block.
169- Prefer `validate --strict` when advisory logic gates value-moving actions.
170- Use replay for determinism when moving from preview/dry-run to live execution.
171- For runtime debugging, use `--advisory-trace-verbose` (non-JSON mode) to stream detailed advisory traces.
172
173## Venue Metadata and Snapshots
174
175Use venue skills for snapshot parameters and market metadata:
176
177- `grimoire-aave`
178- `grimoire-uniswap`
179- `grimoire-morpho-blue`
180- `grimoire-hyperliquid`
181- `grimoire-pendle`
182- `grimoire-polymarket`
183
184Formatting policy for venue CLI output:
185
186- prefer `--format json` for automation or nested payloads
187- use `--format table` for human-readable summaries
188
189## References
190
191- `references/syntax-capabilities.md`
192- `references/authoring-workflow.md`
193- `references/anvil-cheatsheet.md`
194- `references/cast-cheatsheet.md`
195- `references/cli-quick-reference.md`
196- `docs/how-to/simulate-on-anvil-fork.md`
197- `docs/how-to/use-wallet-commands-end-to-end.md`
198- `docs/how-to/use-advisory-decisions.md`
199- `docs/how-to/compare-protocol-metrics.md`
200- `docs/explanation/advisory-decision-flow.md`
201- `docs/reference/cli.md`
202- `docs/reference/spell-syntax.md`
203- `docs/reference/grimoire-dsl-spec.md`
204- `docs/reference/compiler-runtime.md`