🎯

lucid-agent-creator

🎯Skill

from daydreamsai/skills-market

VibeIndex|
What it does

Generates inline JavaScript event handlers and entry points for creating Lucid Agents with streamlined configuration and deployment.

πŸ“¦

Part of

daydreamsai/skills-market(5 items)

lucid-agent-creator

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add daydreamsai/skills-market
Install PluginInstall plugin from marketplace
/plugin install <skill-name>@daydreams-skills
πŸ“– Extracted from docs: daydreamsai/skills-market
1Installs
14
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# Daydreams Skills Market

Skills for building paid Lucid Agents with x402.

Goals

  1. Build paid agents β€” Every skill should help create monetizable Lucid Agents
  2. Be concise β€” Only include what agents don't already know
  3. No repetition β€” Don't explain CLI basics, common patterns, or standard tooling
  4. Composable β€” Skills should work standalone or together
  5. Real data only β€” No hardcoded mocks; agents must fetch live data

Skill Requirements

Must Have

  • YAML frontmatter with name and description
  • .claude-plugin/plugin.json manifest
  • Focus on Lucid Agents ecosystem (x402, ERC-8004)
  • Zod v4 for schemas (not v3)
  • Modern imports: @lucid-agents/core, @lucid-agents/http, etc.

Must NOT Have

  • CLI usage basics (curl, git, npm commands everyone knows)
  • Obvious programming patterns
  • Verbose explanations of common concepts
  • Hardcoded/mock data examples
  • Outdated SDK patterns (monolithic imports, agent.listen())

Quality Bar

```

❌ 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

```

Installation

```bash

/plugin marketplace add daydreamsai/skills-market

/plugin install @daydreams-skills

```

Available Skills

Core Pipeline

| Skill | Purpose |

|-------|---------|

| trend-discovery | Find monetizable topics |

| api-research | Validate free data APIs |

| railway-deploy | Deploy to Railway |

| agent-factory | Meta: orchestrates above |

SDK & Infrastructure

| Skill | Purpose |

|-------|---------|

| lucid-agents-sdk | SDK patterns & extensions |

| lucid-client-api | Multi-agent runtime API |

| lucid-agent-creator | Inline JS handlers |

| xgate-server | x402 service registry |

Automation

| Skill | Purpose |

|-------|---------|

| paid-agent | Full agent pipeline with tests |

| autonomous-lucid | Generate 10-agent monorepos |

Contributing

Add a Skill

```

plugins//

β”œβ”€β”€ .claude-plugin/plugin.json

└── skills/SKILL.md

```

plugin.json

```json

{

"name": "",

"description": "",

"version": "1.0.0",

"author": { "name": "" },

"keywords": ["lucid-agents", ...],

"skills": "./skills"

}

```

Review Criteria

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

Agent Collaboration

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](https://x402.org) | [daydreams.systems](https://daydreams.systems)