skills/local/agent-team-kit/SKILL.md
# Agent Team Kit — SKILL.md *A framework for self-sustaining AI agent teams.* --- ## What This Is A complete team process kit for OpenClaw agents that enables: - **Self-service work queues** — Agents pick up tasks without human bottlenecks - **Clear role ownership** — Everyone knows who does what - **Continuous discovery** — Work flows in automatically - **Proactive operation** — The team runs itself via heartbeat --- ## Quick Start ### 1. Copy the Process Files ```bash # From your works
npx skillsauth add Zeno-sole/zeno-skills skills/local/agent-team-kitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A framework for self-sustaining AI agent teams.
A complete team process kit for OpenClaw agents that enables:
# From your workspace root
cp -r skills/agent-team-kit/templates/process ./process
This creates:
process/INTAKE.md — The 5-phase work loopprocess/ROLES.md — Role definitionsprocess/OPPORTUNITIES.md — Raw ideas/discoveriesprocess/BACKLOG.md — Triaged work queueprocess/STATUS.md — Who's working on whatMerge templates/HEARTBEAT.md into your existing HEARTBEAT.md:
cat skills/agent-team-kit/templates/HEARTBEAT.md >> HEARTBEAT.md
Or copy it directly if you don't have one yet.
Edit process/ROLES.md to match your team:
DISCOVER → TRIAGE → READY → EXECUTE → FEEDBACK
↑ ↓
└──────────────────────────────────────┘
| Role | Mission | Owns |
|------|---------|------|
| Scout 🔍 | Find opportunities | OPPORTUNITIES.md, discovery |
| Rhythm 🥁 | Keep work flowing | BACKLOG.md, triage |
| Harmony 🤝 | Keep team healthy | Unblocking, retros |
| [Human] | Strategic direction | Hard calls, spawning |
Execution roles (spawn as needed):
If it's in Ready, any agent can pick it up. No approval needed.
Every phase has ONE owner. No ambiguity.
Ideas, discoveries, completions — if you don't log it, it didn't happen.
Main agent coordinates. Sub-agents execute. Don't do everything yourself.
process/
├── INTAKE.md # How the loop works (reference)
├── ROLES.md # Who does what
├── OPPORTUNITIES.md # Raw discoveries (anyone adds)
├── BACKLOG.md # Triaged work (Rhythm maintains)
└── STATUS.md # Current activity (self-updated)
HEARTBEAT.md # Proactive check triggers
Add to your heartbeat checks:
### Team Health (run hourly)
- [ ] OPPORTUNITIES.md stale? → Spawn Scout
- [ ] Ready queue empty? → Alert Rhythm
- [ ] Active work stuck >2h? → Nudge owner
- [ ] Any unresolved blockers? → Harmony
The heartbeat keeps the loop spinning even when the human isn't watching.
Define in ROLES.md:
Update the ownership matrix
Add spawn criteria in INTAKE.md if needed
The 5-phase loop is flexible. Adapt it:
❌ Human manually adds every task → Use triage role instead
❌ Waiting for permission to pick up work → Ready = fair game
❌ One agent does everything → Spawn specialists
❌ Ideas stay in heads → Log to OPPORTUNITIES.md
❌ Heartbeat just returns OK → Actually check the loop
Track team health:
The system runs itself. Your job is to trust it.
tools
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
development
Convert Jenkins v25-crp_info_collect job output to Excel (.xlsx) format. Use when the user needs to extract theme information from Jenkins CRP (Code Review Platform) info collection jobs and convert it to a structured Excel file with columns for 主题名称, 主题地址, 仓库, 源码名及版本, 责任人. Works with job URLs like https://jenkinswh.uniontech.com/view/ISO-Builder/job/v25-repo-iso-work/view/repo/job/v25-crp_info_collect/
data-ai
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.