hairyf/blockchain-skills

cosmos

Cosmos SDK module development—modules, keepers, Msg/Query services, genesis, app wiring, upgrades, and structure.

First seen Feb 28, 2026

Installation

$ npx skills add hairyf/blockchain-skills --skill cosmos

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from hairyf/blockchain-skills · top by installs.

npx skills add hairyf/blockchain-skills

Browse all from hairyf/blockchain-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4
License LICENSE.md
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version2026.2.24
More metadata
author
hairy
version
2026.2.24
source
Generated from https://github.com/cosmos/cosmos-sdk, scripts at https://github.com/antfu/skills

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,828 B
  • docs SUMMARY.md 129 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

Skill based on Cosmos SDK, generated from sources/cosmos. Doc path: sources/cosmos/docs/docs/, sources/cosmos/README.md, and sources/cosmos/x/.

The Cosmos SDK is a modular framework for building application-specific blockchains. Applications are composed of modules that own state (via keepers), expose Msg and Query services (Protobuf/gRPC), and plug into the app lifecycle (genesis, BeginBlock, EndBlock, upgrades). Use this skill when implementing or wiring SDK modules, keepers, services, depinject, or migrations.

Core References

Topic Description Reference
Modules intro Role of modules, main components, composability and capabilities [core-modules-intro](references/core-modules-intro.md)
Module manager AppModule interfaces, BasicManager, Manager, execution order [core-module-manager](references/core-module-manager.md)
Messages and queries Msg/Query types, gRPC services, legacy paths, protobuf [core-messages-queries](references/core-messages-queries.md)
Keeper Type definition, store access, inter-module access, methods [core-keeper](references/core-keeper.md)
Genesis GenesisState, DefaultGenesis, ValidateGenesis, Init/ExportGenesis [core-genesis](references/core-genesis.md)
App anatomy App type, constructor, InitChainer, PreBlocker, Begin/EndBlocker [core-app-anatomy](references/core-app-anatomy.md)
BaseApp and store ABCI, routers, volatile states; multistore, KVStore, IAVL [core-baseapp-store](references/core-baseapp-store.md)

Features

Topic Description Reference
Msg services Implementing Msg service, validation, state transition, events [features-msg-services](references/features-msg-services.md)
Query services gRPC Query implementation, modulequerysafe [features-query-services](references/features-query-services.md)
depinject Module config proto, ProvideModule, app wiring [features-depinject](references/features-depinject.md)
Upgrades ConsensusVersion, in-place migrations, RegisterMigration [features-upgrade](references/features-upgrade.md)

Best Practices

Topic Description Reference
Errors Registration, wrapping, ABCI helpers [best-practices-errors](references/best-practices-errors.md)
Module structure Recommended folder and file layout [best-practices-module-structure](references/best-practices-module-structure.md)