mongodb
✓Configures MongoDB document storage and query operations for Sorcha's distributed ledger Use when: implementing document storage, querying collections, creating indexes, or working with Register/Transaction/Docket data
Installation
SKILL.md
MongoDB is the document store for Sorcha's Register Service, providing storage for registers, transactions, dockets, and system blueprints. The codebase uses a two-tier storage architecture: warm-tier (mutable IDocumentStore ) and cold-tier (immutable IWormStore for WORM/ledger data).
| Filter Builders | Type-safe queries | Builders .Filter.Eq(x => x.Id, id) | | Update Builders | Atomic updates | Builders .Update.Set(x => x.Height, 10) | | Composite Indexes | Multi-field queries | IndexKeys.Ascending(x => x.RegisterId).Ascending(x => x.TxId) | | WORM Store | Immutable ledger data | IWormStore - no updates/deletes |
| Document Store | Mutable documents | IDocumentStore - full CRUD |
Configures MongoDB document storage and query operations for Sorcha's distributed ledger Use when: implementing document storage, querying collections, creating indexes, or working with Register/Transaction/Docket data Source: stuartf303/sorcha.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/stuartf303/sorcha --skill mongodb- Source
- stuartf303/sorcha
- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is mongodb?
Configures MongoDB document storage and query operations for Sorcha's distributed ledger Use when: implementing document storage, querying collections, creating indexes, or working with Register/Transaction/Docket data Source: stuartf303/sorcha.
How do I install mongodb?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/stuartf303/sorcha --skill mongodb Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/stuartf303/sorcha
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01