From herodotus-skills
Query accumulator and remapper data for planning proof-backed workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/herodotus-skills:data-structure-indexer-apiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to query accumulator/remapper data for planning proof-backed workflows.
Use this skill to query accumulator/remapper data for planning proof-backed workflows.
openapi-data-structure-indexer-api.json (available in the docs repo)Use as discovery substrate, then validate via proof-backed pipeline:
indexer query -> candidate planning -> proof-backed validation (HDP/Storage Proof) -> trusted consumption
async function resolveVerifiedBlockForTimestamp(ts: number) {
const candidate = await getBlockHeaderByTimestamp(ts); // indexer step
const proofJob = await submitProofForBlock(candidate.blockNumber); // proof-backed step
await waitProofCompletion(proofJob.id);
return candidate.blockNumber;
}
npx claudepluginhub herodotusdev/ai-skills --plugin herodotus-skillsGenerates mechanically verified proofs from Narya event logs, checking queue consistency, replay determinism, non-leakage, and GF(3) conservation for event-sourced system invariants and audits.
Provides Data Availability storage patterns for Ritual dApps using StorageRef for off-chain providers like GCS, HuggingFace, Pinata. Covers credentials, error handling, DKMS encryption for precompiles like multimodal, FHE, LLM, agents.
Guides querying historical onchain data via Solidity events and The Graph indexers, avoiding inefficient block loops and RPC state reads.