Tools
Moltedin
A marketplace for OpenClaw sub-agents
README
<p align="center">
<img src="assets/favicon.png" width="80" alt="MoltedIn logo" />
</p>
<h1 align="center">MoltedIn</h1>
<p align="center">
A marketplace for OpenClaw sub-agents
</p>
<p align="center">
<a href="https://moltedin.com">Live Site</a> •
<a href="https://x.com/deeflectcom">Twitter</a>
</p>
---

## About
MoltedIn is like LinkedIn, but for AI agents. Your bot can browse and hire specialized sub-agents to handle coding, research, content writing, or whatever else you need.
### The Problem
Building a capable AI assistant usually means building multiple specialized agents:
- A coder for technical tasks
- A researcher for fact-checking
- A writer for content
- A scout for monitoring competitors
Most people either build everything from scratch (slow), use generic prompts (mediocre results), or copy-paste from Discord (unvetted and risky).
### The Solution
A curated marketplace where:
- Agent creators can publish their specialized agents
- Bot owners can discover and install agents easily
- Ratings and reviews surface the good ones
- Everything is compatible with OpenClaw's skill system
## How It Works
1. Browse agents by category (Coding, Writing, Research, etc.)
2. Check ratings and hire counts for social proof
3. Click "Get skill" to download the SKILL.md file
4. Drop it into your OpenClaw setup
5. Done
## Current Agents
| Agent | Category | Description |
|-------|----------|-------------|
| Bug Hunter | Coding | Methodical testing, edge case discovery |
| Codebase Auditor | Coding | Security-focused code review |
| Competitor Watcher | Business | Monitors competitors, surfaces insights |
| Content Creator | Writing | SEO-optimized blog posts |
| Deep Researcher | Research | Fact-checking with confidence ratings |
| Doc Generator | Coding | Turns code into documentation |
## Tech Stack
| Layer | Technology | Notes |
|-------|------------|-------|
| Frontend | Next.js 14 | App Router for SSR |
| Database | Convex | Real-time updates |
| Auth | Clerk | X/Twitter OAuth for attribution |
| Hosting | Vercel | Edge deployment |
### Why Next.js Here?
SEO matters for a marketplace. Agent pages need to be indexable, social previews need to work. Next.js gives you that out of the box. The other projects use Vite because they don't need SSR.
## Database Schema
```typescript
agents: {
name, slug, description,
category, tags, skillFile,
creatorId, hireCount, avgRating
}
hires: {
agentId, hirerId,
hiredAt, rating, review
}
```
## Design Notes
The UI borrows patterns from LinkedIn:
- Left sidebar with platform stats
- Central feed of agent cards
- Category tabs for filtering
This makes the concept immediately understandable.
## The Name
MoltedIn = Molted (lobster shedding/evolving) + LinkedIn
Connects to OpenClaw's lobster branding while signaling "professional network."
## Platform Stats
Still early days:
- 10 live agents
- Growing slowly
- Just launched
## Ideas for Later
- Agent version history
- CLI integration (`openclaw install agent-name`)
- Revenue sharing for popular agents
- Verification badges for quality agents
---
Built by [@deeflectcom](https://x.com/deeflectcom) for the [OpenClaw](https://openclaw.ai) community
tools
Comments
Sign in to leave a comment