epic: Sync skills to remote #16
Conversation
…r Quick Start workflow
…d skill, default nibid RPC
… and validate scripts
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 95982b8. Configure here.
| NODE="https://rpc.archive.nibiru.fi:443" | ||
| # helper alias | ||
| sai_perps_q() { nibid query wasm contract-state smart "$1" "$2" --node "$NODE" --output json; } | ||
| sai_perps_q() { nibid query wasm contract-state smart "$1" "$2"; } |
There was a problem hiding this comment.
Accidental removal of --output json from helper function
High Severity
The sai_perps_q helper function lost --output json when --node "$NODE" was removed. Without it, nibid defaults to text/YAML output, but every usage example in this file shows expected JSON output (e.g., # → {"data":{"long":"..."}}). The companion sai_q function in slp-vaults.md correctly includes --output json, confirming the omission here is accidental.
Reviewed by Cursor Bugbot for commit 95982b8. Configure here.


Expand ai-skills playbooks and Sai/Epics references
This PR refreshes the Cursor
ai-skills/tree so agents get clearer operational guidance: new reusable skills for reviews and authoring, richer Epics+ and repo-navigation workflows, and deeper Sai mainnet query docs—while leaning onnibidconfig instead of hard-coded RPC endpoints where examples used to pin archive nodes.Key Changes
gh-pr-review(structured PR review),skill-creator(authoring loop +quick_validatehelpers + ApacheLICENSE),md-tasks(checkbox conventions),writing-tech(prose/style for agent-facing docs).repo-mapcross-reference forrepos, and a dedicated “Finding or Searching for Epics” mode with JSON scan fields, ranking, output shapes, and status/limit flags.nibiru-cli-nibiddocumentsget.nibiru.fiinstalls; bank send example drops inline archive--node;repo-mapadds NibiruChain remote table andcloning.mdwith~/kiclone recipes.SKILL.md, newslp-vaults.mdrunbook (health, caps, rewards, raw keys), andsai_perps_quses defaultnibidRPC.ai-skills/.marksman.tomlstub for workspace tooling.Note
Low Risk
Low risk documentation-focused update; only minor operational risk is that examples now rely on local
nibidconfig defaults (no hard-coded RPC), which could confuse users with misconfigured CLI settings.Overview
Refreshes the
ai-skills/knowledge base with new reusable playbooks (gh-pr-review,skill-creator,md-tasks,writing-tech) and extends existing skills with clearer workflows and cross-references.Improves operational guidance for planning and navigation by expanding
epics-plus(search mode + scan/index usage),repo-map(GitHub remote mapping + cloning guide), anddrill-spec(decision capture), and deepens Sai mainnet contract query docs by adding an SLP Vault runbook (slp-vaults.md) and updating examples to use defaultnibidconfiguration rather than pinned RPC flags.Reviewed by Cursor Bugbot for commit 95982b8. Configure here.