3.2 KiB
3.2 KiB
Spawner MCP Integration for QwenClaw
Overview
Spawner is a skill-based agent system that extends AI capabilities by automatically spawning specialist agents for your specific project needs.
Features
- 50+ Expert Skills - Specialists for frameworks, development, integrations, design, marketing, product, and startup strategy
- YAML-Powered Skills - Structured 4-file YAML packages (skill.yaml, sharp-edges.yaml, validations.yaml, collaboration.yaml)
- Sharp Edges Detection - Warns about real pitfalls before you hit them
- Automated Validation - Catches bugs and anti-patterns before shipping
- Auto-Spawning - Skills are automatically matched to your stack
- Memory & Persistence - Remembers project structure, conventions, and domain rules
Integration with QwenClaw
Option 1: MCP Server (Recommended)
Add Spawner as an MCP server to QwenClaw Rig service:
- Install Spawner MCP:
npx github:vibeforge1111/vibeship-spawner-skills install --mcp
- Configure in Rig service:
{
"mcpServers": {
"spawner": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.vibeship.co"]
}
}
}
- Use in QwenClaw:
// In your QwenClaw code
import { RigClient } from "./rig";
const rig = new RigClient({ host: "127.0.0.1", port: 8080 });
// Use Spawner for project planning
const plan = await rig.executePrompt(sessionId, `
Use Spawner to plan this project:
Build me an invoice tracking SaaS
`);
Option 2: Skills Integration
Copy Spawner skills to QwenClaw skills directory:
# Clone Spawner skills
git clone https://github.com/vibeforge1111/vibeship-spawner-skills.git
# Copy to QwenClaw
cp -r vibeship-spawner-skills/skills/* qwenclaw/skills/spawner/
Available Spawner Skills
Development Skills
frontend-developer- React, Vue, Svelte, Next.js, Nuxtbackend-developer- Node.js, Python, Go, Rustfullstack-developer- End-to-end developmentdevops-engineer- CI/CD, Docker, Kubernetessecurity-engineer- Security best practices
Framework Skills
nextjs-expert- Next.js 14+ App Routerreact-expert- React 18+ patternssupabase-expert- Supabase integrationstripe-expert- Stripe paymentstailwind-expert- Tailwind CSS
Design Skills
ui-designer- UI design principlesux-researcher- User researchdesign-system-architect- Design systems
Product & Business
product-manager- Product strategystartup-advisor- Startup guidancemarketing-strategist- Marketing strategy
Usage Examples
New Project Planning
Use Spawner to plan: Build a SaaS for invoice tracking
Existing Codebase Analysis
Analyze this codebase with Spawner and suggest improvements
Stack Detection
Detect my stack and spawn appropriate specialist agents
Configuration
Add to rig-service/.env:
# Spawner MCP Configuration
SPAWNER_MCP_URL=https://mcp.vibeship.co
SPAWNER_ENABLED=true
Resources
- Website: https://spawner.vibeship.co/
- GitHub: https://github.com/vibeforge1111/vibeship-spawner-skills
- MCP Server: https://mcp.vibeship.co