Install
$ agentstack add skill-rube-de-cc-skills-oasis-dev ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Oasis Dev
Comprehensive assistance for building on the Oasis Network: Sapphire confidential EVM ParaTime, ROFL (Runtime OFfchain Logic) applications, Oasis CLI, SDK development, and ParaTime operations.
Triggers
Use this skill when the user mentions: "oasis", "sapphire", "sapphire paratime", "rofl", "oasis cli", "oasis sdk", "oasis network", "confidential evm", "oasis-sdk", "sapphire-paratime", "oasisprotocol", "oasis rofl", "paratime", "emerald", "cipher", "rose token", "oasis wallet", "sapphire contracts", "oasis node", "oasis core".
Also activate when the user is working in repos: oasisprotocol/sapphire-paratime, oasisprotocol/oasis-sdk, oasisprotocol/cli.
MCP Context
If MCP Context7 is available, use it to fetch latest docs:
- Library ID:
oasis_io_llms_txtathttps://context7.com/llmstxt/oasis_io_llms_txt
Quick Start
Install CLI
# Download latest release from https://github.com/oasisprotocol/cli/releases
# Linux
wget https://github.com/oasisprotocol/cli/releases/latest/download/oasis_cli_linux_amd64.tar.gz
tar xf oasis_cli_linux_amd64.tar.gz
sudo mv oasis /usr/local/bin/
# macOS
brew install oasisprotocol/tools/oasis
Create a Wallet
# Ed25519 (Oasis native)
oasis wallet create my_wallet
# secp256k1 (EVM-compatible, for Sapphire/Emerald)
oasis wallet create my_wallet --algorithm secp256k1-bip44
Get Testnet Tokens
Visit https://faucet.testnet.oasis.io to get TEST tokens for Sapphire Testnet.
Deploy a Sapphire dApp (Hardhat)
npx hardhat init
npm install -D @oasisprotocol/sapphire-hardhat
// hardhat.config.js
import '@oasisprotocol/sapphire-hardhat';
module.exports = {
solidity: "0.8.24",
networks: {
sapphire_testnet: {
url: "https://testnet.sapphire.oasis.io",
chainId: 0x5aff,
accounts: [process.env.PRIVATE_KEY],
},
sapphire_mainnet: {
url: "https://sapphire.oasis.io",
chainId: 0x5afe,
accounts: [process.env.PRIVATE_KEY],
},
},
};
Build a ROFL App
oasis rofl init my-app
oasis rofl create --network testnet --account my_wallet
oasis rofl build
echo -n "my-secret" | oasis rofl secret set MY_SECRET -
oasis rofl deploy
Common Tasks by Intent
| Developer wants to... | Action | |-----------------------|--------| | Create a Sapphire dApp | Use Hardhat + @oasisprotocol/sapphire-hardhat plugin | | Build a ROFL app | oasis rofl init, oasis rofl create, oasis rofl build, oasis rofl deploy | | Check account balance | oasis account show | | Transfer tokens | oasis account transfer --network testnet --paratime sapphire | | Deposit to ParaTime | oasis account deposit --network testnet --paratime sapphire | | Withdraw from ParaTime | oasis account withdraw --network testnet --paratime sapphire | | Manage ROFL secrets | oasis rofl secret set - (pipe value via stdin) | | View ROFL logs | oasis rofl machine logs | | Check ROFL status | oasis rofl machine show | | Inspect a ParaTime block | oasis paratime show --network testnet --paratime sapphire | | Use Go SDK with Sapphire | Import sapphire "github.com/oasisprotocol/sapphire-paratime/clients/go" | | Use JS/TS with Sapphire | npm install @oasisprotocol/sapphire-paratime | | Verify ROFL origin on-chain | Subcall.roflEnsureAuthorizedOrigin(roflAppID) in Solidity |
Key Concepts
ParaTimes
ParaTimes are parallel runtimes on Oasis. Key ones:
- Sapphire: Confidential EVM-compatible (18 decimals, chain ID 0x5afe mainnet / 0x5aff testnet)
- Emerald: Non-confidential EVM-compatible (18 decimals)
- Cipher: Confidential WebAssembly (9 decimals)
Confidential Computing
Sapphire provides end-to-end encryption for smart contracts:
- Contract state is encrypted at rest
- Transactions are encrypted end-to-end
- Cryptographically secure randomness available on-chain
- TEE (Trusted Execution Environment) hardware protects execution
ROFL (Runtime OFfchain Logic)
Containerized off-chain applications running in TEEs, managed via Sapphire:
- Docker Compose based container orchestration
- Intel SGX/TDX trusted execution
- Decentralized per-app key management
- Built-in secret management (end-to-end encrypted)
- Proxy with automatic TLS for published ports
appdREST API for key generation, transaction signing, and queries
Token Denominations
| Network | Decimals | Symbol | |---------|----------|--------| | Consensus (Mainnet/Testnet) | 9 | ROSE / TEST | | Sapphire / Emerald | 18 | ROSE / TEST | | Cipher | 9 | ROSE / TEST |
Reference Documents
For deep dives, consult these references:
| Reference | Content | |-----------|---------| | [CLI.md](references/CLI.md) | Complete CLI command reference: wallet, account, network, paratime, ROFL, transactions | | [SAPPHIRE.md](references/SAPPHIRE.md) | Sapphire ParaTime development: EVM patterns, SDKs (Go, JS/TS, Python), Hardhat, confidential contracts | | [ROFL.md](references/ROFL.md) | ROFL framework: app lifecycle, containers, secrets, appd API, deployment, proxy configuration | | [SDK-CORE.md](references/SDK-CORE.md) | Oasis SDK and core concepts: architecture, ParaTimes, staking, consensus, cryptography |
Troubleshooting
Sapphire Transaction Sent in Plaintext
If using Go SDK, always use backend.Transactor(senderAddr) for TransactOpts. Forgetting this sends transactions unencrypted.
For JS/TS, ensure @oasisprotocol/sapphire-paratime wraps the provider before any contract interactions.
ROFL Build Failures
- Ensure Docker/Podman is running
- Use fully qualified image URLs in
compose.yaml(e.g.,docker.io/library/python:3.12-alpine) - Environment variables in entrypoint are not evaluated — inject directly
ROFL appd 422 Errors
Verify request body matches expected format. Check required fields: kind for keys, tx structure for sign-submit.
Decimal Mismatch
Sapphire/Emerald use 18 decimals, consensus uses 9. Wrong decimals = wrong token amounts. Always verify with oasis paratime list.
Rust Compilation for Oasis SDK
Add to .cargo/config.toml:
[build]
rustflags = ["-C", "target-feature=+aes,+ssse3"]
External Resources
- Docs: https://docs.oasis.io
- Faucet: https://faucet.testnet.oasis.io
- Explorer: https://explorer.oasis.io
- GitHub: https://github.com/oasisprotocol
- Sapphire repo: https://github.com/oasisprotocol/sapphire-paratime
- SDK repo: https://github.com/oasisprotocol/oasis-sdk
- CLI repo: https://github.com/oasisprotocol/cli
Workflow
When helping with Oasis development:
- Identify the task: Sapphire dApp, ROFL app, CLI operation, SDK code, or architecture decision
- Check the language: For SDK questions, determine Rust/Go/TypeScript/Python
- Consult references: Use the reference docs for detailed patterns and commands
- Verify confidentiality: For Sapphire code, ensure encryption wrappers are used correctly
- Check decimals: Confirm correct decimal places for the target network/ParaTime
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: rube-de
- Source: rube-de/cc-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.