Skip to content

HerodotusDev/ai-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Herodotus AI Skills

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.

Quick Install

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 | bash

Or 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 --project

Per-Tool Setup

Claude Code

Uses the native plugin marketplace:

# In Claude Code CLI
/plugin marketplace add HerodotusDev/ai-skills
/plugin install herodotus-skills@herodotus

Then invoke any skill:

/herodotus-skills:herodotus              # full stack overview — start here
/herodotus-skills:atlantic-api
/herodotus-skills:data-processor
/herodotus-skills:storage-proof-api

Cursor

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 -- --cursor

Or 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.md

Codex / Gemini CLI

Both 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-cli

Or install into the current project:

curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --codex --project

Or 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.md

Google Jules

Downloads an AGENTS.md file into your project root:

curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --google

Or copy it manually:

curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/AGENTS.md -o AGENTS.md

Google Antigravity

Skills 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 -- --antigravity

Or install into the current project:

curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --antigravity --project

Or 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.md

Manual Download

Download 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

Available Skills

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

Repository Structure

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

Links

License

MIT

About

Herodotus SKILLs for LLMs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages