Community skills for OpenClaw agents. Published on ClawHub and mirrored here for backup & offline access.
📖 Build Guide | 🇻🇳 Hướng dẫn tiếng Việt
| Skill | Description | Version |
|---|---|---|
| facebook-group-monitor | Monitor Facebook groups with Playwright. Scrapes posts, captures feed strip screenshot for LLM vision analysis. | 1.3.0 |
| goodreads | Full Goodreads integration: read shelves/search via RSS + write (rate, shelf, review, dates) via Playwright. | 1.1.0 |
A step-by-step guide to building a personal multi-agent system on macOS — from real production experience running 3 AI agents 24/7 on a Mac Mini.
Architecture: 3 Agents Split by Domain
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
│ PERSONAL │ │ RESEARCH │ │ KIOKU │
│ "My life" │ │ "The world" │ │ "Inner self" │
├──────────────┤ ├──────────────┤ ├──────────────┤
│ Email/Gmail │ │ Crawl4AI │ │ kioku-lite │
│ Calendar │ │ Reddit digest│ │ Emotions │
│ Tasks │ │ YouTube │ │ Health │
│ Expenses │ │ Facebook │ │ Memories │
│ Goodreads │ │ Web research │ │ Knowledge │
│ Typefully │ │ Critical │ │ Graph │
│ │ │ writing │ │ │
├──────────────┤ ├──────────────┤ ├──────────────┤
│ 19 skills │ │ 9 skills + │ │ 0 skills │
│ 6 cron jobs │ │ crawl4ai │ │ (CLI only) │
│ │ │ 1 cron job │ │ 1 cron job │
└──────────────┘ └──────────────┘ └──────────────┘
All running MiniMax M2.7 (~$11/month)
Guide Chapters:
| # | Topic | What you'll learn |
|---|---|---|
| 1 | Installation | Hardware, software, first agent |
| 2 | Architecture | Gateway, sessions, SOUL.md |
| 3 | First Agent | SOUL.md, TOOLS.md, Telegram |
| 4 | Google Workspace | Gmail, Calendar, Drive, Sheets |
| 5 | Browser Automation | Playwright, anti-bot, cookies |
| 6 | Cron Jobs | Scheduling, delivery, gotchas |
| 7 | Multi-Agent Design | 3-agent split by domain |
| 8 | Agent Profiles | Detailed tools & workflow diagrams |
| 9 | Model Selection | M2.7, fallbacks, cost ($11/mo) |
| 10 | Memory System | kioku-lite, tri-hybrid search |
| 11 | Operations | Debugging, maintenance |
Recipes: Morning Briefing · Email Triage · Content Digest · Book Tracker · Expense Tracker
clawhub install facebook-group-monitorgit clone https://github.com/phuc-nt/openclaw-skills.git /tmp/openclaw-skills
cp -r /tmp/openclaw-skills/facebook-group-monitor \
~/.openclaw/workspace-YOUR-AGENT/skills/facebook-group-monitorNo restart needed — OpenClaw auto-detects new skills.
Install skill from https://github.com/phuc-nt/openclaw-skills/tree/main/facebook-group-monitor
skill-name/
├── SKILL.md ← Required: agent instructions
├── scripts/ ← Executable code
├── references/ ← On-demand docs
└── assets/ ← Templates, images
- Fork this repo
- Create your skill following the structure above
- Submit a PR
MIT