⏳ This skill is pending AI review.
Scores will appear once Curio's pipeline completes.
v0.0.0
openclaw-opc-orchestrator
@jingchang0623-crypto⭐ 0 stars
Activate when the user wants to:
—/10
Invalid Date// RATINGS
// README
# OpenClaw OPC Orchestrator 🤖🏢
> Run your entire one-person company with a team of AI agents — orchestrated by OpenClaw.
**One-Person Company (OPC) × AI Agent Team** — This skill turns OpenClaw into a multi-agent orchestrator that manages your entire business workflow. Define agent roles, set up cron schedules, coordinate tasks, and let your AI team handle marketing, content, SEO, community, and more.
Built from real-world experience running [妙趣AI (Miaoquai)](https://miaoquai.com) — a solo-operated AI tools & news platform powered by 5+ AI agents.
## 🎯 Why This Exists
The "one-person company" model is becoming viable with AI agents, but most people struggle with:
- **Agent coordination** — who does what, when?
- **Task scheduling** — how do you keep everything running 24/7?
- **Handoff protocols** — how do agents pass work to each other?
- **Quality control** — how do you review agent outputs?
This skill provides battle-tested templates and orchestration patterns from a real OPC running in production.
## 🚀 Quick Start
### Install as OpenClaw Skill
```bash
# Copy to your OpenClaw skills directory
cp -r openclaw-opc-orchestrator ~/.openclaw/skills/opc-orchestrator
# Or install from GitHub
git clone https://github.com/jingchang0623-crypto/openclaw-opc-orchestrator.git ~/.openclaw/skills/opc-orchestrator
```
### Configure Your Agent Team
```yaml
# ~/.openclaw/opc-team.yaml
company:
name: "Your Company"
website: "https://your-site.com"
agents:
marketing:
role: "Marketing & Content Agent"
schedule: "0 8 * * *" # Daily at 8am
tasks:
- generate_news_digest
- social_media_posts
seo:
role: "SEO & Content Agent"
schedule: "0 1 * * *" # Daily at 1am
tasks:
- generate_tool_pages
- internal_link_audit
community:
role: "Community Agent"
schedule: "0 10,16,22 * * *" # 3x daily
tasks:
- github_discussions
- discord_updates
monitor:
role: "Trends Monitor"
schedule: "0 5,12,18 * * *" # 3x daily
tasks:
- trending_scan
- competitor_check
```
### Run Orchestration
```bash
# Check agent status
openclaw "use the opc-orchestrator skill to show my agent team status"
# Generate a new agent role
openclaw "use the opc-orchestrator skill to create a customer-support agent role"
# Run daily briefing
openclaw "use the opc-orchestrator skill to generate today's briefing for all agents"
```
## 🤖 Included Agent Templates
| Agent Role | Schedule | Key Tasks |
|-----------|----------|-----------|
| 🎯 Marketing Agent | 08:00/22:00 | News digest, social media, ad copy |
| 🔍 SEO Agent | 01:00/03:00 | Tool pages, glossary, link audit |
| 💬 Community Agent | 10:00/16:00/22:00 | GitHub, Discord, dev communities |
| 📡 Trends Monitor | 05:00/12:00/18:00 | GitHub trending, news, competitors |
| 📝 Content Agent | 06:00 | Blog posts, tutorials, stories |
| 📊 Analytics Agent | 22:00 | Daily reports, metrics, insights |
## 📁 Project Structure
```
openclaw-opc-orchestrator/
├── SKILL.md # Skill definition
├── package.json # Package config
├── README.md # This file
├── LICENSE # MIT
├── src/
│ ├── orchestrator.js # Core orchestration logic
│ ├── status.js # Agent status checker
│ └── scheduler.js # Cron schedule manager
├── docs/
│ ├── agent-roles.md # Detailed agent role specs
│ ├── handoff-protocols.md # Inter-agent handoff rules
│ └── opc-playbook.md # Full OPC playbook
└── templates/
├── team-config.yaml # Sample team configuration
├── agent-role.yaml # Single agent role template
└── daily-briefing.md # Daily briefing template
```
## 🔧 Advanced: Cron-Based Automation
Set up each agent as a cron job in OpenClaw:
```bash
# Marketing Agent - daily news digest
openclaw cron add \
--name "marketing-daily" \
--schedule "0 8 * * *" \
--message "Generate today's AI news digest for miaoquai.com"
# SEO Agent - nightly tool page generation
openclaw cron add \
--name "seo-nightly" \
--schedule "0 1 * * *" \
--message "Generate 5 AI tool detail pages for SEO"
# Community Agent - 3x daily
openclaw cron add \
--name "community-morning" \
--schedule "0 10 * * *" \
--message "Check GitHub Discussions and respond"
```
## 🔄 Handoff Protocol
Agents pass work using a shared memory system:
```markdown
## Agent Handoff Log
### [Timestamp] Marketing → SEO
- Generated: ai-news-2026-04-22.html
- Action needed: Add internal links from tool pages
- Priority: Normal
### [Timestamp] Monitor → Marketing
- Detected: OpenClaw v2026.4.15 released
- Action needed: Include in today's news digest
- Priority: High
```
## 💡 OPC Principles (From Real Experience)
1. **Automation First** — If you do it twice, cron it
2. **Quality Gates** — Always review before publish
3. **Memory Systems** — Agents need persistent context
4. **Graceful Degradation** — If one agent fails, others continue
5. **Inter-Agent Communication** — Shared memory > direct messaging
## 🌐 Real-World Example
[妙趣AI (Miaoquai)](https://miaoquai.com) runs on this pattern:
- **5+ AI agents** handling marketing, SEO, community, monitoring, and content
- **20+ cron jobs** running 24/7
- **128+ glossary pages**, 142+ RSS digest issues, 124+ tutorials
- **GitHub**: 40+ discussions, 8 topics, 4 open-source tools
- **All operated by one human** with AI agent orchestration
## 🤝 Contributing
Contributions welcome! Especially:
- New agent role templates
- Handoff protocol improvements
- Integration with other AI frameworks
- Real-world OPC case studies
## 📄 License
MIT — Use it to build your own AI-powered one-person company!
---
**🔗 Links**
- 🏠 [Miaoquai AI](https://miaoquai.com) — AI Tools + News Platform
- 📰 [AI News Daily](https://miaoquai.com/news/) — Daily AI news digest
- 📖 [AI Glossary](https://miaoquai.com/glossary/) — 128+ AI terms explained
- 😂 [踩坑实录](https://miaoquai.com/stories/) — AI pitfall stories
Made with 🤖 by [妙趣AI](https://miaoquai.com)
// HOW IT'S BUILT
KEY FILES
SKILL.mdREADME.md
// REPO STATS
0 stars