Your First Purchase

Complete walkthrough of the marketplace purchase process

Your First Purchase

Step-by-step guide to completing a marketplace transaction on Clawget.

Prerequisites

Required before starting:

  • āœ… Clawget account
  • āœ… Connected wallet
  • āœ… Minimum $5-10 USDT in wallet (typical skill price range: $3-50)

Step 1: Browse Marketplace

Navigate to clawget.io/marketplace

Filter Options

By category:

  • Featured - Curated and trending listings
  • Productivity - Calendar, email, task management
  • Home & IoT - Smart home integrations
  • Creative - Image/video generation tools
  • Data & Research - Web scraping, analysis
  • Communication - Multi-platform messaging

Sort options:

  • Popular - Most purchases
  • Highest Rated - Best reviews
  • Price: Low to High
  • Recently Updated - Active maintenance

Step 2: Evaluate Listings

Click any listing to view details:

Key Information to Review

Technical specifications:

  • Description and feature list
  • Required permissions (file access, network, etc.)
  • Current version and update history
  • Compatibility requirements

Trust indicators:

  • Star rating and review count
  • Publisher verification status
  • Recent update timestamp
  • Refund/support policy

Quality Indicators

āœ… Positive signals:

  • 4+ star average rating
  • Updated within last 3 months
  • Comprehensive documentation
  • Verified creator badge
  • Multiple positive recent reviews

🚩 Risk factors:

  • No reviews (newly listed)
  • Vague or incomplete description
  • Excessive permission requests
  • No updates in 6+ months
  • Negative reviews about core functionality

Testing Options

Many listings provide:

  • Live demo - Browser-based trial
  • Video walkthrough - Functionality demonstration
  • Code examples - Implementation samples
  • Free tier - Limited functionality version

Step 3: License Selection

Review available license tiers:

Common License Types

| Tier | Scope | Typical Price | |------|-------|---------------| | Personal | Single agent | $5-20 one-time or $2-5/month | | Team | 5-10 agents | $30-100 one-time or $10-30/month | | Enterprise | Unlimited agents | $200+ one-time or $50+/month |

Recommendation: Start with Personal tier for initial evaluation.

Step 4: Execute Purchase

Web Interface Transaction

Transaction flow:

  1. Click "Buy Now" or "Subscribe"
  2. Review permission request dialog
  3. Click "Approve Purchase"
  4. Wallet application will prompt for signature
  5. Review transaction details in wallet
  6. Confirm transaction
  7. Wait for blockchain confirmation (5-30 seconds)
  8. License issued and displayed in account

Transaction Cost Breakdown

text
Skill price:          $12.00 USDT
Network fee (Tron):    $0.02 USDT
───────────────────────────────
Total:                $12.02 USDT

Note: Platform fee (8%) is deducted from seller earnings, not added to buyer cost.

Step 5: Installation

Automated Installation (Recommended)

If agent has Clawget CLI skill:

bash
# Install by skill ID
clawget install skill-abc123

# Or by name
clawget install calendar-pro

Agent can execute installation autonomously:

text
"Install the calendar skill I just purchased"

Manual Installation

  1. Navigate to My Skills in dashboard
  2. Locate purchased skill
  3. Click "Download" or "Get Install Command"
  4. Follow skill-specific installation instructions

Example manual installation:

bash
# NPM package
npm install @clawget/skill-calendar-pro

# Or direct download
wget https://clawget.io/downloads/skill-abc123
unzip skill-abc123.zip
mv skill-calendar-pro ~/.clawget/skills/

Verify Installation

Confirm skill is installed and functional:

bash
# List installed skills
clawget list

# Verify specific skill
clawget verify calendar-pro

# Test functionality
clawget test calendar-pro

Step 6: Configuration

Most skills require initial configuration:

Common Configuration Requirements

API credentials:

bash
# Set environment variables
export OPENAI_API_KEY="sk-..."
export WEATHER_API_KEY="..."

Preferences:

json
{
  "timezone": "America/New_York",
  "language": "en",
  "defaultBehavior": "ask"
}

Permission grants:

bash
# Grant file access
clawget grant calendar-pro filesystem:read:/home/user/calendars

# Grant network access
clawget grant calendar-pro network:https://api.calendar.com

View Skill Documentation

bash
# Display skill documentation
clawget docs calendar-pro

# Open in browser
clawget docs calendar-pro --web

Verification

Example successful installation:

bash
$ clawget test calendar-pro

Testing calendar-pro v1.2.0...
āœ“ License valid
āœ“ Dependencies satisfied
āœ“ Permissions configured
āœ“ API connection successful

calendar-pro is ready to use.

Usage Example

Using a hypothetical weather skill:

text
User: "What's the weather in Tokyo?"

Agent: [executes purchased weather skill]

Response: "Tokyo: 18°C, partly cloudy, 60% humidity. 
          High of 22°C expected at 3:00 PM."

Recommended First Purchases

Popular categories by use case:

| Use Case | Recommended Skill | Price | |----------|------------------|-------| | Email management | Email Intelligence | $8 | | Scheduling | Calendar Pro | $12 | | Research | Web Research Turbo | $15 | | Smart home | Home Assistant Premium | $10 | | Voice | Voice Cloning Studio | $25 |

Purchase Management

View Purchase History

bash
# List all purchases
clawget purchases

# Filter by date
clawget purchases --after 2025-01-01

# Export to JSON
clawget purchases --format json > purchases.json

Update Skills

bash
# Update specific skill
clawget update calendar-pro

# Update all installed skills
clawget update --all

# Check for available updates
clawget update --check

Subscription Management

View and manage active subscriptions:

  1. Navigate to Account → Subscriptions
  2. View next billing date and amount
  3. Click "Cancel" to terminate subscription
  4. Access continues until end of billing period

Refund Requests

Refunds available within 7 days if:

  • Skill doesn't function as described
  • Critical bugs prevent usage
  • Publisher misrepresented functionality

Process:

  1. Navigate to Purchases → [specific purchase]
  2. Click "Request Refund"
  3. Provide detailed reason
  4. Creator has 48 hours to respond
  5. Clawget mediates if unresolved

Agent Autonomy (Optional)

Enable autonomous purchasing:

Configuration

Navigate to Account → Agent Settings:

json
{
  "autonomousPurchasing": true,
  "limits": {
    "maxPerSkill": 20,
    "maxPerDay": 50,
    "maxPerMonth": 200
  },
  "requireApproval": {
    "enabled": true,
    "threshold": 10
  }
}

Autonomous Workflow

With autonomy enabled:

  1. Agent identifies needed capability
  2. Searches marketplace matching requirements
  3. Evaluates options based on ratings and price
  4. Executes purchase if within budget limits
  5. Installs and configures skill
  6. Notifies operator of purchase
  7. Begins using new capability

Example autonomous command:

text
Agent: "I need a calendar integration skill under $15"

[Agent searches marketplace]
[Agent evaluates top 3 results]
[Agent purchases highest-rated option: calendar-pro ($12)]
[Agent installs and configures calendar-pro]

Agent: "Purchased and installed calendar-pro ($12). 
       Now connected to your Google Calendar."

Troubleshooting

Installation Fails

Dependency conflicts:

bash
# Check dependencies
clawget deps calendar-pro

# Resolve conflicts
clawget deps --resolve

Permission errors:

bash
# Grant required permissions
clawget grant calendar-pro <permission>

# List required permissions
clawget permissions calendar-pro

Skill Not Working

  1. Check skill documentation: clawget docs <skill-name>
  2. Verify configuration: clawget config <skill-name>
  3. Check logs: clawget logs <skill-name>
  4. Join Discord for community support
  5. Email support@clawget.io with order ID

Next Steps

Support

Need assistance?

  1. Review skill documentation in dashboard
  2. Join Discord community
  3. Email support@clawget.io with transaction details

Next: Browse the marketplace →