Configure Continuous Clearing Auction (CCA) smart contract parameters for fair and transparent token distribution.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionconfiguratorExecute the skills CLI command in your project's root directory to begin installation:
Fetches configurator from uniswap/uniswap-ai and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate configurator. Access via /configurator in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
198
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
198
stars
Configure Continuous Clearing Auction (CCA) smart contract parameters for fair and transparent token distribution.
Runtime Compatibility: This skill uses
AskUserQuestionfor interactive prompts. IfAskUserQuestionis not available in your runtime, collect the same parameters through natural language conversation instead.
When the user invokes this skill, guide them through a bulk interactive form configuration flow using AskUserQuestion. Collect parameters in batches to minimize user interaction rounds.
Collect parameters in these batches:
Question 1: Task Type
After collection: If not "Configure auction parameters", skip to appropriate section.
Question 1: Network
chainId, blockTime, rpcUrl, currencyDecimals (for selected currency)Question 2: Token Address
tokenQuestion 3: Total Supply
totalSupplyQuestion 4: Currency
currencyAfter collection: Validate all inputs, show summary of basic configuration.
Question 1: Auction Duration
auctionBlocksQuestion 2: Prebid Period
prebidBlocksQuestion 3: Floor Price
Q96 * ratio / 10^(tokenDecimals - currencyDecimals)Q96 * ratio / 10^12Q96 * ratio / 10^0 = Q96 * ratiofloorPriceRatio, floorPrice (Q96), tokenDecimals, currencyDecimalsQuestion 4: Tick Spacing
tickSpacing = int(floorPrice * percentage)roundedFloorPrice = (floorPrice // tickSpacing) * tickSpacingroundedFloorPrice % tickSpacing == 0 must be truetickSpacingPercentage, tickSpacing (Q96), roundedFloorPriceAfter collection: Validate inputs, verify floor price divisibility, calculate and display Q96 values, show timing summary.
Question 1: Tokens Recipient
tokensRecipientQuestion 2: Funds Recipient
fundsRecipientQuestion 3: Start Time
startBlockendBlock = startBlock + prebidBlocks + auctionBlocks, claimBlock = endBlockQuestion 4: Minimum Funds Required
requiredCurrencyRaisedAfter collection: Validate addresses, fetch current block from RPC, calculate full block timeline.
Question 1: Validation Hook
validationHookAfter collection: Validate hook address if provided.
If MCP server is not running, provide instructions to start it:
# Navigate to MCP server directory
cd packages/plugins/uniswap-cca/mcp-server/supply-schedule
# Run setup script (first time only)
chmod +x setup.sh
./setup.sh
# Start the MCP server
python3 server.py
Once the MCP server is running, call the cca-supply-schedule__generate_supply_schedule MCP tool with the collected parameters. The tool expects a JSON object:
{
"auction_blocks": 86400,
"prebid_blocks": 0
}
Replace the values with the actual auctionBlocks and prebidBlocks collected from the user.
If the MCP tool is unavailable, use the fallback Python algorithm directly (see Supply Schedule Configuration section).
Store: supplySchedule
After collecting all parameters and generating the supply schedule, display the complete JSON configuration in the CLI output:
{
"[chainId]": {
"token": "...",
"totalSupply": ...,
"currency": "...",
"tokensRecipient": "...",
"fundsRecipient": "...",
"startBlock": ...,
"endBlock": ...,
"claimBlock": ...,
"tickSpacing": ...,
"validationHook": "...",
"floorPrice": ...,
"requiredCurrencyRaised": ...,
"supplySchedule": [...]
}
}
Do NOT automatically create a file. Let the user copy the JSON or specify a filepath to save it.
Show the user a comprehensive formatted summary including:
Ask the user what they want to do:
script/auction-config.json)Q96 * ratio / 10^(tokenDecimals - currencyDecimals)roundedFloorPrice = (floorPrice // tickSpacing) * tickSpacingroundedFloorPrice % tickSpacing == 0Store these for quick reference:
const NETWORKS = {
1: {
name: 'Mainnet',
blockTime: 12,
rpc: 'https://ethereum-rpc.publicnode.com',
usdc: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
},
130: {
name: 'Unichain',
blockTime: 1,
rpc: 'https://mainnet.unichain.org',
usdc: '0x078D782b760474a361dDA0AF3839290b0EF57AD6',
},
1301: {
name: 'Unichain Sepolia (Testnet)',
blockTime: 2,
rpc: 'https://sepolia.unichain.org',
usdc: '0x078D782b760474a361dDA0AF3839290b0EF57AD6',
},
8453: {
name: 'Base',
blockTime: 2,
rpc: 'https://mainnet.base.org',
usdc: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
},
42161: {
name: 'Arbitrum',
blockTime: 2,
rpc: 'https://arb1.arbitrum.io/rpc',
usdc: '0xaf88d065e77c8cc2239327c5edb3a432268e5831',
},
11155111: {
name: 'Sepolia',
blockTime: 12,
rpc: 'https://ethereum-sepolia-rpc.publicnode.com',
usdc: '0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238',
},
};
// Q96 = 2^96 (JavaScript BigInt notation)
const Q96 = 79228162514264337593543950336n;
Python equivalent:
# Q96 = 2**96
Q96 = 79228162514264337593543950336
CCA (Continuous Clearing Auction) is a novel auction mechanism that generalizes the uniform-price auction into continuous time. It provides fair price discovery for bootstrapping initial liquidity while eliminating timing games and encouraging early participation.
Key features:
| Task... | Use This Section |
|---|---|
| Configure auction parameters | Configuration Guide |
| Generate supply schedule | Supply Schedule Configuration |
| Understand auction mechanics | Technical Overview |
CCA auctions are configured through the AuctionParameters struct:
struct AuctionParameters {
address currency; // Token to raise funds in (address(0) for ETH)
address tokensRecipient; // Address to receive leftover tokens
address fundsRecipient; // Address to receive all raised funds
uint64Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
configurator reduced setup friction for our internal harness; good balance of opinion and flexibility.
configurator is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend configurator for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Registry listing for configurator matched our evaluation — installs cleanly and behaves as described in the markdown.
Solid pick for teams standardizing on skills: configurator is focused, and the summary matches what you get after install.
Keeps context tight: configurator is the kind of skill you can hand to a new teammate without a long onboarding doc.
configurator is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
configurator reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for configurator matched our evaluation — installs cleanly and behaves as described in the markdown.
configurator has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 63