Source for the Orbis1 SDK developer docs, built with VitePress and hosted on GitHub Pages.
| Package | Registry | Description |
|---|---|---|
orbis1-sdk-node |
npm | RGB wallet SDK for Node.js |
orbis1-sdk-rn |
npm / yarn | RGB wallet SDK for React Native |
Install the Orbis1 SDK skill for Claude Code, Cursor, Copilot, and other AI coding assistants:
npx skills add orbis-1/developer-docs --skill orbis1-sdk --globalThis skill helps AI assistants correctly use the Orbis1 SDK APIs, handle RGB-specific patterns (base units, UTXO management, gas-free flows), and avoid common mistakes.
Auto-discovery: AI agents visiting https://docs.orbis1.io/ can automatically discover and use the skill via the .well-known/skills/ endpoint.
npm install
npm run devThe site is served at http://localhost:5173/developer-docs/.
npm run buildOutput is written to .vitepress/dist/.
Docs are deployed automatically to GitHub Pages on every push to main via the GitHub Actions workflow.
Live URL: https://docs.orbis1.io/
developer-docs/
├── index.md Landing page
├── introduction.md Project overview and architecture
├── concepts.md RGB core concepts primer
├── troubleshooting.md Common issues and fixes
│
├── node/ Node.js SDK docs
│ ├── index.md
│ ├── installation.md
│ ├── quickstart.md
│ ├── configuration.md
│ ├── wallet.md
│ ├── gas-free.md
│ ├── watch-tower.md
│ └── examples/
│
├── react-native/ React Native SDK docs
│ ├── index.md
│ ├── installation.md
│ ├── quickstart.md
│ ├── configuration.md
│ ├── wallet.md
│ ├── gas-free.md
│ ├── watch-tower.md
│ └── examples/
│
└── reference/
├── error-codes.md
└── environments.md
- Fork the repo and create a branch from
main. - Edit or add Markdown files under the relevant section.
- Run
npm run devto preview locally. - Open a pull request — the build is verified automatically on PR.