Vendor-neutral AI skill playbooks for building with Herodotus Cloud Services. These skills provide architecture patterns, implementation workflows, anti-hallucination guardrails, and reference examples for every Herodotus product.
Run the installer and pick the tools you use from an interactive selector (auto-detects what's installed):
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bashOr skip the selector and install for specific tools directly:
# Claude Code only
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --claude
# Cursor only
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --cursor
# Codex / Gemini CLI (both use .agents/skills standard)
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --codex
# Google Jules
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --google
# Google Antigravity
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --antigravity
# Cursor into current project (instead of global)
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --cursor --project
# Codex into current project (instead of global)
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --codex --project
# Antigravity into current project (instead of global)
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --antigravity --projectUses the native plugin marketplace:
# In Claude Code CLI
/plugin marketplace add HerodotusDev/ai-skills
/plugin install herodotus-skills@herodotusThen invoke any skill:
/herodotus-skills:herodotus # full stack overview — start here
/herodotus-skills:atlantic-api
/herodotus-skills:data-processor
/herodotus-skills:storage-proof-api
Skills are installed as SKILL.md files under a herodotus/ folder. The installer places them in ~/.cursor/skills/herodotus/ (global) or .cursor/skills/herodotus/ (per-project).
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --cursorOr manually copy any skill:
mkdir -p .cursor/skills/herodotus/atlantic-api
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/plugins/herodotus-skills/skills/atlantic-api/SKILL.md \
-o .cursor/skills/herodotus/atlantic-api/SKILL.mdBoth Codex and Gemini CLI read skills from the .agents/skills/ standard path. One install covers both tools.
Skills are installed under ~/.agents/skills/herodotus/ (global) or .agents/skills/herodotus/ (per-project).
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --codex
# or equivalently:
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --gemini-cliOr install into the current project:
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --codex --projectOr manually copy any skill:
mkdir -p .agents/skills/herodotus/atlantic-api
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/plugins/herodotus-skills/skills/atlantic-api/SKILL.md \
-o .agents/skills/herodotus/atlantic-api/SKILL.mdDownloads an AGENTS.md file into your project root:
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --googleOr copy it manually:
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/AGENTS.md -o AGENTS.mdSkills are installed under ~/.gemini/antigravity/skills/herodotus/ (global) or .agent/skills/herodotus/ (per-project):
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --antigravityOr install into the current project:
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --antigravity --projectOr manually copy any skill:
mkdir -p .agent/skills/herodotus/atlantic-api
curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/plugins/herodotus-skills/skills/atlantic-api/SKILL.md \
-o .agent/skills/herodotus/atlantic-api/SKILL.mdDownload any individual skill directly:
| Skill | Download |
|---|---|
| Herodotus (Full Stack) | SKILL.md |
| Atlantic API | SKILL.md |
| Data Processor | SKILL.md |
| Data Processor API | SKILL.md |
| Storage Proof API | SKILL.md |
| Satellite Contracts | SKILL.md |
| Data Structure Indexer API | SKILL.md |
| Skill | Purpose |
|---|---|
| Herodotus (Full Stack) | Start here — complete guide to the stack, helps pick the right products, cross-product composition patterns |
| Atlantic API | Submit Cairo proving jobs, track query/job lifecycle, download artifacts, integrate L1/L2 verification |
| Data Processor (HDP) | Build Cairo modules consuming proof-backed chain data, run dry-run/fetch-proofs/sound-run pipelines |
| Data Processor API | Orchestrate HDP tasks/modules via HTTP, manage task lifecycle and module registry |
| Storage Proof API | Request proof-backed data, track completion, consume verified values on-chain via Satellite |
| Satellite Contracts | Integrate ISatellite in Solidity, read verified historical on-chain values with safe access patterns |
| Data Structure Indexer API | Discover accumulators/remappers, plan proof-backed workflows from indexed data |
ai-skills/
├── .claude-plugin/
│ └── marketplace.json # Claude Code marketplace catalog
├── plugins/
│ └── herodotus-skills/
│ ├── .claude-plugin/
│ │ └── plugin.json # Claude Code plugin manifest
│ └── skills/
│ ├── herodotus/SKILL.md # full stack overview
│ ├── atlantic-api/SKILL.md
│ ├── data-processor/SKILL.md
│ ├── data-processor-api/SKILL.md
│ ├── storage-proof-api/SKILL.md
│ ├── satellite-contracts/SKILL.md
│ └── data-structure-indexer-api/SKILL.md
├── AGENTS.md # Google Jules agent instructions
├── install.sh # Universal installer script
└── README.md
- Docs: https://docs.herodotus.cloud
- Console: https://www.herodotus.cloud
- GitHub: https://github.com/HerodotusDev
- Support: hello@herodotus.dev
MIT