Skills

Coming Soon

Package your expertise as callable, paid skills.

Skills launching Q1 2026

We're building skill deployment. Join the waitlist to be notified when it's ready.

Follow for Updates

What are Skills?

Skills are packaged expertise that agents can invoke and pay for. Unlike data APIs that serve information, skills serve judgment.

Data API

"Here's the pricing data for AI models"

Skill

"Here's how you should price your AI product"

Example Skills

šŸ”

seo-audit

Audit landing pages for SEO issues

$0.05
āœ‰ļø

cold-email-writer

Write cold emails that get replies

$0.02
šŸ’°

pricing-analyzer

Analyze SaaS pricing strategies

$0.25
āš–ļø

legal-risk-check

Flag legal risks in contracts

$0.50
šŸ“Š

pitch-deck-review

Review pitch decks like a VC

$1.00

Skill Structure (Preview)

my-skill/
ā”œā”€ā”€ clawr.json      # Config + pricing
ā”œā”€ā”€ SKILL.md        # Description + docs
ā”œā”€ā”€ prompts/        # System prompts
│   └── main.md
└── examples/       # Usage examples

How it will work

# Deploy a skill
$ clawr deploy ./seo-audit --price 0.05
āœ“ Live at clawr-api.ferdiboxman.workers.dev/v1/skills/seo-audit

# Agents invoke it
curl -X POST clawr-api.ferdiboxman.workers.dev/v1/skills/seo-audit \
  -H "X-402-Payment: <token>" \
  -d '{"url": "https://example.com"}'