Skip to main content

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.

Overview

SKALE provides documentation in AI-consumable formats so that AI assistants, agents, and tools can access up-to-date information about the SKALE Network without scraping web pages.

What Is llms.txt?

llms.txt is a proposed standard for providing documentation to large language models. It follows a structured format that makes it easy for AI tools to:
  • Discover available documentation
  • Retrieve relevant sections on-demand
  • Stay up to date with the latest changes

SKALE’s llms.txt

SKALE exposes documentation at:
https://docs.skale.space/llms.txt
This file contains:
  • SKALE Network overview — Architecture, chain types, gas model
  • Programmable Privacy — Encrypted transactions, CTX, re-encryption, confidential tokens
  • Developer guides — Smart contract deployment, SDK usage, bridging
  • Cookbook recipes — Step-by-step tutorials for common tasks
  • API references — TypeScript SDK, Solidity helpers, JSON-RPC methods

How to Use with AI Tools

With Claude

Reference the llms.txt URL in your prompt:
Check https://docs.skale.space/llms.txt for SKALE documentation.
Help me deploy an ERC20 token to SKALE Base.

With Cursor / Windsurf

Add the llms.txt URL to your project’s documentation sources in settings.

With the SKALE MCP Server

The MCP server automatically uses SKALE’s llms.txt for context when answering questions about the network. See SKALE MCP Server for setup instructions.

With Custom Agents

// Fetch SKALE documentation for your AI agent
const response = await fetch('https://docs.skale.space/llms.txt');
const docs = await response.text();

// Use as context for your agent
const prompt = `Based on this SKALE documentation:\n${docs}\n\nHelp me encrypt a transaction.`;

What’s Included

SectionContent
Network OverviewArchitecture, consensus, chain types
Programmable PrivacyEncryption, CTX, re-encryption, confidential tokens
Developer GuidesDeployment, SDK usage, bridging
CookbookStep-by-step tutorials
API ReferenceSDK methods, Solidity helpers, precompiles
Chain InfoRPC endpoints, chain IDs, block explorers