SKALE Skills are reusable knowledge packages that give AI agents specialized capabilities for building on SKALE. They provide expert-level instructions, code examples, and reference materials your agent uses automatically.Documentation Index
Fetch the complete documentation index at: https://docs.skale.space/llms.txt
Use this file to discover all available pages before exploring further.
Quick Install
Install all SKALE Skills in one command:Available Skills
Programmable Privacy
Skill name:programmable-privacy
Encrypted transactions, conditional transactions (CTX), re-encryption, and confidential tokens on SKALE. Covers precompiles, Solidity helpers, and TypeScript SDK usage.
Best for: Privacy dApps, confidential voting, sealed-bid auctions, encrypted state, data sharing
What’s included:
- Precompile reference (EncryptTE, EncryptECIES, SubmitCTX)
- Solidity helper patterns and examples
- TypeScript SDK usage rules
- Foundry configuration guidance
IMA Bridging on SKALE
Skill name:ima-bridging-on-skale
Programmatic IMA (Interchain Messaging Agent) bridging for SKALE chains. Send and receive messages between SKALE chains and Ethereum.
Best for: Cross-chain token transfers, bridging ETH/ERC20/ERC721/ERC1155, custom messaging
SKALE CLI
Skill name:skale-cli
Operational command playbooks for SKALE CLI usage. Exact command syntax, target selection, parameter formatting, and error handling.
Best for: Chain management, node operations, validator commands, network administration
x402 on SKALE
Skill name:x402-on-skale
Build AI agents with x402 payments on SKALE. Covers facilitator setup, payment middleware, and agent client for monetized AI services.
Best for: Agent-to-agent payments, API monetization, x402 integration
About SKALE
Skill name:about-skale
Learn about SKALE Network — what it is, chain types, and gas models. Useful for understanding SKALE architecture.
Best for: General SKALE knowledge, architecture decisions, chain selection
How Skills Work
- Install — Run
npx skills addto download the skill files into your project - Auto-load — Your agent loads the skill when it detects relevant tasks
- Reference — The skill provides rules, examples, and reference materials
- Execute — Your agent uses the skill’s knowledge to complete tasks
Skill Structure
Each skill contains:| Component | Description |
|---|---|
SKILL.md | Main skill description and trigger conditions |
rules/ | Behavioral rules and constraints |
references/ | Technical reference documentation |
examples/ | Code examples and patterns |
assets/ | Supporting files and templates |
Example: Using Programmable Privacy
Once installed, your agent can handle tasks like:- Load the programmable-privacy skill
- Reference the CTX rules and precompile documentation
- Generate a Solidity contract following the skill’s patterns
- Include proper compiler settings (Solidity >= 0.8.27, EVM version istanbul) import AiIntegrationComparison from ”../../_snippets/_ai-integrations.mdx”
