Skills
The sweepster-integration Claude Code skill guides an engineer through integrating Sweepster as a builder — from registration to a working sweep flow — using Claude Code as an AI pair programmer.
What it covers
- Prerequisites (Node 22+, viem, builder API key)
- Get a builder account (self-serve at dashboard.sweepster.xyz)
- Request a quote from the orchestrator
- EIP-712-sign the
SweepDelegateSweepOrder+ sign an EIP-7702 authorization with viem/wagmi - Submit (signature + authorization) and poll intent status
- Attribution choices (API key vs. on-chain signed fields)
- Using the
@sweepster/mcpserver for agent-driven integration - Links to the full API reference and integration guide
Install the skill
User-level (available in all projects)
bash
# Copy the skill into your global Claude skills directory
cp -r skills/sweepster-integration ~/.claude/skills/sweepster-integrationProject-level (available only in this project)
bash
# Copy into your project's .claude/skills/ directory
cp -r skills/sweepster-integration .claude/skills/sweepster-integrationUse the skill in Claude Code
/sweepster-integrationOr in a Claude Code session:
Use the sweepster-integration skill to help me integrate Sweepster into my wallet app.Claude will:
- Check your prerequisites
- Walk you through registration
- Generate working TypeScript code for quote → sign → submit → poll
- Offer to install and configure the MCP server
- Verify the integration works
Skill location
The skill lives at skills/sweepster-integration/ in the Sweepster repository:
skills/sweepster-integration/
├── SKILL.md # skill manifest + content
└── references/
├── api-cheatsheet.md # quick reference for all endpoints
└── integration-example.ts # copy-paste TypeScript exampleManual skill usage
If you prefer to read the skill directly without Claude Code:
- API cheatsheet:
skills/sweepster-integration/references/api-cheatsheet.md - Integration example:
skills/sweepster-integration/references/integration-example.ts - Full skill:
skills/sweepster-integration/SKILL.md
Related
- MCP Server — AI-native API access via MCP tools
- Integration Guide — full TypeScript example
- API Reference