Awesome-omni-skill celestia
Celestia data availability node—bridge/full/light types, headers, shares, DAS, state API, P2P discovery, and fraud proofs.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/backend/celestia" ~/.claude/skills/diegosouzapw-awesome-omni-skill-celestia && rm -rf "$T"
manifest:
skills/backend/celestia/SKILL.mdsource content
Skill based on celestia-node, generated from
. Doc path:sources/celestia,sources/celestia/README.md, and packagesources/celestia/docs/adr/(header, share, das, state).doc.go
Celestia-node is the Go implementation of Celestia’s data availability (DA) node types: bridge, full, and light. The DA network wraps celestia-core by consuming or producing ExtendedHeaders and making block data available via share sampling (DAS). Use this skill to operate nodes, query headers/shares/state, submit PayForBlob and other transactions, and reason about P2P discovery and fraud proofs.
Core References
| Topic | Description | Reference |
|---|---|---|
| Node types | Bridge, full, light—roles, DAS, and CLI init/start | core-node-types |
| Headers | ExtendedHeader, header service flow, sync, Header module API | core-headers |
| Shares and DAS | GetSharesByNamespace, availability, DASer, Shares/DAS module | core-shares-and-das |
| State and transactions | StateModule, SubmitTx, SubmitPayForBlob, Transfer, staking, Accessor | core-state-and-txs |
Features
Public API and discovery
| Topic | Description | Reference |
|---|---|---|
| Public API | Module-centric API (Header, Shares, P2P, Node, DAS, State, Fraud, Metrics) | features-public-api |
| P2P discovery | Full-node discovery, advertising, bridge/light behavior, tagging | features-p2p-discovery |
| Fraud proofs | BEFP, subscribe/verify, storage, fraud sync, halting | features-fraud-proofs |
Best Practices
| Topic | Description | Reference |
|---|---|---|
| State verification | Verifying balance (and state) against header AppHash with Merkle proofs | best-practices-state-verification |