Skip to main content

Documentation Index

Fetch the complete documentation index at: https://seilabs-docs-ai-tab-sei-skill.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Prerequisites

git clone https://github.com/sei-protocol/sei-skill
cd sei-skill

Install by agent

The default install targets Claude Code, placing the skill in ~/.claude/skills/sei/:
./install.sh
The skill loads automatically in every Claude Code session. To verify it’s active, ask: “What is the SSTORE gas cost on Sei testnet?”

Variants

The full skill covers all three domains (contracts, frontend, ecosystem). If you only need one area, install a variant to keep context lean:
VariantCommandBest for
Full (default)./install.shGeneral Sei development
Contracts./install.sh --variant contractsSmart contract engineers
Frontend./install.sh --variant frontenddApp and UI developers
Ecosystem./install.sh --variant ecosystemInfra, integrations, research
Combine with --agent to target a specific assistant:
./install.sh --agent cursor --variant contracts

Advanced options

Install to a project directory (instead of ~/.claude/):
./install.sh --project
Flatten to a single markdown file — useful for pasting into any chat interface or custom context:
./install.sh --flatten --output ./sei-context.md
Custom output path:
./install.sh --output /path/to/custom/location

Verify it’s working

After installing, test with a Sei-specific question that trips up unaugmented assistants:
  • “What gas price should I use for transactions on Sei?”
  • “Is PREVRANDAO a safe source of randomness on Sei?”
  • “What’s the difference between sei1... and 0x... addresses?”
A Sei-aware assistant will give accurate, specific answers to all three.