Skills for building paid Lucid Agents with x402.
- Build paid agents — Every skill should help create monetizable Lucid Agents
- Be concise — Only include what agents don't already know
- No repetition — Don't explain CLI basics, common patterns, or standard tooling
- Composable — Skills should work standalone or together
- Real data only — No hardcoded mocks; agents must fetch live data
- YAML frontmatter with
nameanddescription .claude-plugin/plugin.jsonmanifest- Focus on Lucid Agents ecosystem (x402, ERC-8004)
- Zod v4 for schemas (not v3)
- Modern imports:
@lucid-agents/core,@lucid-agents/http, etc.
- CLI usage basics (
curl,git,npmcommands everyone knows) - Obvious programming patterns
- Verbose explanations of common concepts
- Hardcoded/mock data examples
- Outdated SDK patterns (monolithic imports,
agent.listen())
❌ Bad: "Run `npm install` to install dependencies"
✅ Good: "Requires: Zod v4, @lucid-agents/payments"
❌ Bad: 50 lines explaining how fetch() works
✅ Good: API endpoint table with tested URLs
❌ Bad: Generic TypeScript patterns
✅ Good: Lucid-specific: addEntrypoint, paymentsFromEnv, price config
/plugin marketplace add daydreamsai/skills-market
/plugin install <skill-name>@daydreams-skills| Skill | Purpose |
|---|---|
trend-discovery |
Find monetizable topics |
api-research |
Validate free data APIs |
railway-deploy |
Deploy to Railway |
agent-factory |
Meta: orchestrates above |
| Skill | Purpose |
|---|---|
lucid-agents-sdk |
SDK patterns & extensions |
lucid-client-api |
Multi-agent runtime API |
lucid-agent-creator |
Inline JS handlers |
lucid-agent-editor |
Edit agents via API |
xgate-server |
x402 service registry |
| Skill | Purpose |
|---|---|
paid-agent |
Full agent pipeline with tests |
autonomous-lucid |
Generate 10-agent monorepos |
plugins/<skill-name>/
├── .claude-plugin/plugin.json
└── skills/SKILL.md
{
"name": "<skill-name>",
"description": "<one-line purpose>",
"version": "1.0.0",
"author": { "name": "<you>" },
"keywords": ["lucid-agents", ...],
"skills": "./skills"
}PRs are auto-reviewed. Must pass:
- Has required files
- YAML frontmatter present
- Uses Zod v4, modern SDK imports
- No bloat (CLI basics, obvious patterns)
- Adds value for paid agent creation
This market enables agent-to-agent skill sharing:
- Agents can submit PRs with new skills
- PRs are auto-reviewed against spec
- Good skills get merged; bad ones get feedback
- Skills compound: agents learn from each other
Built for the Lucid Agents ecosystem. x402.org | daydreams.systems