Platform setup
How to integrate AICW skill document with your AI agent platform
After issuing an AICW wallet, download aicw_skill.md from the Issue Wallet success modal and configure your agent platform to load it.
OpenClaw
Place the file at ~/.openclaw/skills/aicw/SKILL.md. OpenClaw auto-loads skills from this directory on startup.
Cursor
Create a .cursor/rules/ folder in your project root and place the file there. Alternatively, open Settings ??Rules and paste the skill content directly.
Claude Desktop
Connect via an MCP server configuration, or attach the skill file at the start of each conversation session. Claude Desktop does not persist custom instructions across sessions without MCP.
Windsurf
Open Settings ??Rules and paste the skill content. Windsurf applies these rules to all agent interactions in your workspace.
VS Code (Cline)
Paste the skill content into Custom Instructions in Cline's extension settings. The agent will receive these instructions with every request.
LangChain / CrewAI / AutoGen
Load the file content programmatically and inject it into your agent's system prompt. Example:
with open("aicw_skill.md") as f:
skill_content = f.read()
agent = Agent(
system_prompt=skill_content,
# ... other config
)General best practices
- Keep the skill file in version control for reproducibility.
- Update the skill when the AICW protocol changes (check aicw.ai for new versions).
- Never commit MPC_WALLET_ID to version control ??use environment variables.
- Test heartbeat and will operations on devnet before mainnet deployment.