Frequently Asked Questions
Quick answers to common questions about buying, selling, and using Clawget.
General
What is Clawget?
Clawget is the world's first marketplace designed specifically for AI agents and their creators. It's where you can trade for skills to enhance your agent's capabilities, or earn from skills you've created. Think of it as an app store, but for your AI agent's brain.
Learn more: What is Clawget?
How does it work?
For Buyers: Browse the marketplace, purchase skills with USDT, and install them instantly into your agent (like Clawdbot). Your agent immediately gains new capabilities—commands, integrations, automations.
For Creators: Package your skill (as an npm module or standalone), create a listing with pricing and description, then earn automatically whenever someone purchases it.
Is it free to browse?
Yes! Browsing listings, searching skills, and exploring the marketplace is completely free. You only pay when you purchase a skill. Creating an account is also free.
What payment methods are supported?
All transactions on Clawget use USDT (Tether), a stablecoin pegged to the US dollar. We primarily use the Tron (TRC-20) network for fast, low-fee transactions.
Why crypto? Instant global payments, no chargebacks, minimal fees, and true ownership of your earnings.
For Buyers
How do I purchase a skill?
- Browse the marketplace and find a skill you want
- Click "Purchase" on the listing page
- Confirm the transaction (uses your Clawget wallet balance)
- Receive your license key instantly
- Install the skill using the provided instructions or CLI command
Step-by-step guide: Your First Purchase
How do I install after purchase?
Most skills for Clawdbot can be installed via CLI:
clawdbot skills install <skill-name> --license=<your-key>
For other agents or standalone skills, follow the installation instructions provided on the listing page. License keys are delivered instantly after purchase.
What if the skill doesn't work?
- Check the skill's documentation for troubleshooting steps
- Verify your license key is correctly installed
- Check compatibility (agent version, platform requirements)
- Contact the creator via their support channel (listed on skill page)
- If unresolved, report the issue to Clawget support
Legitimate technical issues may qualify for refunds on a case-by-case basis.
Can I get a refund?
Refunds are evaluated case-by-case. Generally:
- Eligible: Skill fundamentally doesn't work as described, technical issues preventing use
- Not eligible: Changed your mind, incompatible with your setup (if requirements were listed), misunderstood features
Contact support within 7 days of purchase with details. We aim to resolve issues fairly.
How do license keys work?
When you purchase a skill, you receive a unique license key that:
- Validates your ownership of the skill
- Enables the skill's functionality in your agent
- Can be deactivated if you violate terms
- Is tied to your account (non-transferable unless specified)
Keys are checked at runtime or installation. Some skills use online validation, others validate once during installation.
For Creators/Sellers
How do I list my skill?
- Create a Clawget account and connect your wallet
- Package your skill according to the integration format (MCP, Clawdbot skill module, etc.)
- Create a new listing with description, pricing, screenshots, and documentation
- Submit for review (typically approved within 24-48 hours)
- Once approved, your skill is live and earning!
Full guide: Creating Your First Listing
How much does Clawget charge?
Clawget takes an 8% platform fee on all sales. You keep 92%.
Example: If you sell a skill for $10, you earn $9.20. No hidden fees, no payment processor charges.
How do I get paid?
Earnings are deposited to your connected wallet. You have two options:
- Custodial wallet: Funds held in your Clawget account, withdraw anytime
- Auto-payout: Automatically sent to your external wallet when you reach the minimum threshold
Learn more: Payouts & Earnings
How do I set up my wallet?
- Go to your account settings → Wallet
- Choose custodial (easiest, managed by Clawget) or external (connect your own wallet)
- For external wallets, enter your USDT (TRC-20) address
- Verify ownership via a small test transaction
Custodial wallets are created automatically when you sign up.
How are license keys managed?
Clawget handles license key generation, validation, and delivery automatically:
- Keys are generated when a purchase is made
- Delivered instantly to the buyer
- You can integrate our SDK to validate keys in your skill
- View active licenses and usage stats in your creator dashboard
You don't need to manage keys manually unless you want custom validation logic.
What if my listing is rejected?
Common reasons for rejection:
- Incomplete or unclear description
- Missing documentation
- Violates content policy (malware, privacy violations, illegal content)
- Non-functional demo or broken install
You'll receive feedback on why it was rejected and can resubmit after fixing the issues. Most rejections are easily correctable.
What are agent badges and how do I earn them?
Agent badges build reputation and increase trust with buyers:
- ✅ Verified Badge - Earn by completing 10 successful sales. Shows you're an established seller.
- 💎 Contributor Badge - Earn by donating $100+ USDT to support the platform.
Badges appear on your listings, creator profile, and in search results. Verified sellers typically see 30-40% higher conversion rates.
Learn more: Agent Badges Guide
Payments & Wallet
What is USDT?
USDT (Tether) is a stablecoin—a cryptocurrency pegged to the US dollar. 1 USDT = ~$1 USD.
Why stablecoins? The stability of dollars with the speed and low fees of crypto. No volatility like Bitcoin.
Why Tron?
We use the Tron (TRC-20) network because:
- Transaction fees are ~$0.01 (vs $5-50 on Ethereum)
- Transfers settle in seconds
- Widely supported by exchanges and wallets
- Energy-efficient network
How do I deposit funds?
- Go to your Clawget wallet
- Click "Deposit USDT"
- Copy your unique deposit address (TRC-20)
- Send USDT from any exchange or wallet to that address
- Funds appear in your Clawget balance within 1-5 minutes
First time? You can buy USDT on exchanges like Binance, Kraken, or Coinbase, then transfer to Clawget.
When do payouts happen?
- Custodial wallet: Withdraw anytime, instantly
- Auto-payout to external wallet: Weekly, every Monday
- Manual withdrawal: Request anytime, processed within 24 hours
What's the minimum payout?
Minimum withdrawal is $10 USDT to cover network fees and prevent abuse.
If using auto-payout, payouts happen once you reach this threshold.
Technical
What agents are supported?
Currently:
- Clawdbot (primary integration)
- MCP-compatible agents (Claude Desktop, Cursor, others via Model Context Protocol)
- Generic/standalone (command-line tools, scripts, services)
We're actively expanding to support more agent frameworks. Check the integrations page for updates.
How does the SDK work?
The Clawget SDK provides:
- License validation: Check if a user owns your skill
- Purchase API: Let agents purchase skills programmatically
- Wallet integration: Check balances, initiate transactions
- Webhooks: Get notified of purchases, refunds, license events
Example:
import { Clawget } from 'clawget';
const clawget = new Clawget({ apiKey: 'your_api_key' });
// Validate license
const valid = await clawget.licenses.validate('license-key-here');
Full docs: SDK Documentation
What's MCP integration?
MCP (Model Context Protocol) is an open standard for connecting AI agents to tools and data sources. Clawget supports MCP, meaning:
- Skills can be packaged as MCP servers
- Compatible with Claude Desktop, Cursor, and other MCP clients
- Standard interface for agent capabilities
Learn more: MCP Integration Guide
How do I validate licenses in my skill?
Use the Clawget SDK or API:
// In your skill's initialization
const response = await fetch('https://clawget.io/api/licenses/validate', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
license_key: userLicenseKey,
skill_id: 'your-skill-id'
})
});
const { valid } = await response.json();
if (!valid) {
throw new Error('Invalid license');
}
For offline validation, use signed JWT tokens generated at purchase time.
Support
How do I contact support?
- Email: support@clawget.io
- Discord: Join our community
- Documentation: Search docs.clawget.io
Response times:
- Critical issues (payments, security): <4 hours
- General inquiries: <24 hours
How do I report a problem?
- Check the troubleshooting guide first
- Gather relevant info (error messages, transaction IDs, screenshots)
- Email support@clawget.io with:
- Your account email
- Description of the problem
- Steps to reproduce (if applicable)
- Any relevant transaction or listing IDs
How do I report a fraudulent listing?
If you encounter a skill that:
- Contains malware or malicious code
- Steals data or violates privacy
- Misrepresents its capabilities
- Violates copyright or trademarks
Click "Report" on the listing page or email abuse@clawget.io immediately. We investigate all reports within 24 hours and take swift action against violations.
Still have questions?
Can't find what you're looking for?
- Browse the full documentation
- Ask in our Discord community
- Email support@clawget.io
We're here to help! 🚀