Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Agent Teams Skill Agent Teams Skill Coordinate multiple specialized agents working together on complex tasks using Beads for task management and state tracking. Overview This skill enables team-based development where a lead agent orchestrates specialized worker agents. Each agent focuses on their expertise while Beads handles: - Task tracking with dependencies - Agent state management - Work assignment (slots) - Async coordination (g Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
agent-teams-skill is best for run, work workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Agent Teams Skill Agent Teams Skill Coordinate multiple specialized agents working together on complex tasks using Beads for task management and state tracking. Overview This skill enables team-based development where a lead agent orchestrates specialized worker agents. Each agent focuses on their expertise while Beads handles: - Task tracking with dependencies - Agent state management - Work assignment (slots) - Async coordination (g
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Centauriagent
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/CentauriAgent/agent-teams-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Centauriagent
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
bd create --type=epic --title="Your Project Goal" --description="What we're building"
bash
# Create subtasks bd create --type=task --title="Design the system" --parent=<epic-id> --priority=1 bd create --type=task --title="Implement core feature" --parent=<epic-id> --priority=2 bd create --type=task --title="Write tests" --parent=<epic-id> --priority=2 # Add dependencies (task depends on another) bd dep add <impl-id> <design-id> # Implement depends on Design bd dep add <test-id> <impl-id> # Tests depend on Implement
bash
bd ready # Shows tasks with no blockers bd blocked # Shows what's waiting bd graph <epic> # Visual dependency graph
bash
bd ready # What's unblocked bd list --status=in_progress # Active work bd activity # Real-time feed
bash
bd close <epic-id> --reason="All tasks complete"
text
sessions_spawn(
task="""You are the ARCHITECT agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Analyze requirements and constraints
3. Create DESIGN.md with:
- System/component diagram
- API/interface definitions
- Data structures
- Key decisions with rationale
4. Complete: `bd close {bead_id} --reason="Design complete"`
FOCUS: Design only. Do not implement. Document decisions clearly.""",
label="architect"
)Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Agent Teams Skill Agent Teams Skill Coordinate multiple specialized agents working together on complex tasks using Beads for task management and state tracking. Overview This skill enables team-based development where a lead agent orchestrates specialized worker agents. Each agent focuses on their expertise while Beads handles: - Task tracking with dependencies - Agent state management - Work assignment (slots) - Async coordination (g
Coordinate multiple specialized agents working together on complex tasks using Beads for task management and state tracking.
This skill enables team-based development where a lead agent orchestrates specialized worker agents. Each agent focuses on their expertise while Beads handles:
Tell the lead agent: "Build X as a team" or "Use agent team to do Y"
The lead will:
| Role | Bead ID | Expertise | |------|---------|-----------| | Architect | clawd-4qc | System design, API design, component structure, technical decisions | | Coder | clawd-iqg | Implementation, feature development, bug fixes | | Tester | clawd-wqf | Unit tests, integration tests, test coverage, TDD | | Reviewer | clawd-gw5 | Code review, quality checks, best practices | | Docs | clawd-2g1 | Documentation, comments, README, API docs |
| Role | Bead ID | Expertise | |------|---------|-----------| | Security | clawd-xp5 | Vulnerability analysis, auth review, input validation | | Frontend | clawd-5aq | UI/UX, React/React Native, components, accessibility | | Backend | clawd-e42 | API endpoints, database, server logic, data modeling | | DevOps | clawd-9f5 | CI/CD, deployment, Docker, infrastructure, monitoring |
bd create --type=epic --title="Your Project Goal" --description="What we're building"
# Create subtasks
bd create --type=task --title="Design the system" --parent=<epic-id> --priority=1
bd create --type=task --title="Implement core feature" --parent=<epic-id> --priority=2
bd create --type=task --title="Write tests" --parent=<epic-id> --priority=2
# Add dependencies (task depends on another)
bd dep add <impl-id> <design-id> # Implement depends on Design
bd dep add <test-id> <impl-id> # Tests depend on Implement
bd ready # Shows tasks with no blockers
bd blocked # Shows what's waiting
bd graph <epic> # Visual dependency graph
Use sessions_spawn with the appropriate template (see below).
bd ready # What's unblocked
bd list --status=in_progress # Active work
bd activity # Real-time feed
bd close <epic-id> --reason="All tasks complete"
sessions_spawn(
task="""You are the ARCHITECT agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Analyze requirements and constraints
3. Create DESIGN.md with:
- System/component diagram
- API/interface definitions
- Data structures
- Key decisions with rationale
4. Complete: `bd close {bead_id} --reason="Design complete"`
FOCUS: Design only. Do not implement. Document decisions clearly.""",
label="architect"
)
sessions_spawn(
task="""You are the CODER agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Check for design docs (DESIGN.md, specs)
3. Implement the feature/fix following existing patterns
4. Ensure code compiles and runs
5. Complete: `bd close {bead_id} --reason="Implementation complete"`
FOCUS: Clean implementation. Follow existing code style.""",
label="coder"
)
sessions_spawn(
task="""You are the TESTER agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Review code to understand what to test
3. Write comprehensive tests:
- Unit tests for functions/methods
- Edge cases and error handling
- Integration tests if applicable
4. Run tests, ensure all pass
5. Complete: `bd close {bead_id} --reason="Tests complete, N tests passing"`
FOCUS: Coverage and edge cases. Find bugs before users do.""",
label="tester"
)
sessions_spawn(
task="""You are the REVIEWER agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Review code for:
- Correctness and logic errors
- Security vulnerabilities
- Performance issues
- Code style and best practices
- Missing error handling
3. Document findings in REVIEW.md with severity levels
4. Complete: `bd close {bead_id} --reason="Review complete, N issues found"`
FOCUS: Quality and correctness. Be thorough but constructive.""",
label="reviewer"
)
sessions_spawn(
task="""You are the DOCS agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Review implemented features and APIs
3. Write/update documentation:
- README.md with usage examples
- API documentation
- Inline code comments where helpful
- Configuration guides
4. Complete: `bd close {bead_id} --reason="Documentation complete"`
FOCUS: Clarity for end users. Include examples.""",
label="docs"
)
sessions_spawn(
task="""You are the SECURITY agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Security review for:
- Authentication/authorization flaws
- Input validation and injection risks
- Sensitive data exposure
- Dependency vulnerabilities
- OWASP Top 10 issues
3. Document findings in SECURITY.md with severity and remediation
4. Complete: `bd close {bead_id} --reason="Security review complete"`
FOCUS: Find vulnerabilities before attackers do.""",
label="security"
)
sessions_spawn(
task="""You are the FRONTEND agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Implement UI components:
- Follow design specs/mockups
- Use existing component library patterns
- Ensure responsive design
- Add accessibility attributes
3. Test in browser/simulator
4. Complete: `bd close {bead_id} --reason="Frontend complete"`
FOCUS: User experience and visual polish.""",
label="frontend"
)
sessions_spawn(
task="""You are the BACKEND agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Implement server-side logic:
- API endpoints following REST/GraphQL patterns
- Database queries and migrations
- Business logic and validation
- Error handling and logging
3. Test endpoints work correctly
4. Complete: `bd close {bead_id} --reason="Backend complete"`
FOCUS: Reliable APIs and data integrity.""",
label="backend"
)
sessions_spawn(
task="""You are the DEVOPS agent. Your task is {bead_id}: {task_title}
WORKFLOW:
1. Claim: `bd update {bead_id} --status=in_progress`
2. Infrastructure work:
- CI/CD pipeline configuration
- Docker/container setup
- Deployment scripts
- Monitoring and alerting
- Environment configuration
3. Test deployment pipeline
4. Complete: `bd close {bead_id} --reason="DevOps complete"`
FOCUS: Reliable deployments and infrastructure.""",
label="devops"
)
bd graph <epic> to visualize the dependency treebd gate for async waits# 1. Create epic
bd create --type=epic --title="Add user authentication" --priority=1
# Returns: clawd-abc
# 2. Create tasks
bd create --type=task --title="Design auth flow" --parent=clawd-abc --priority=1
# Returns: clawd-abc.1
bd create --type=task --title="Implement auth API" --parent=clawd-abc --priority=2
# Returns: clawd-abc.2
bd create --type=task --title="Build login UI" --parent=clawd-abc --priority=2
# Returns: clawd-abc.3
bd create --type=task --title="Write auth tests" --parent=clawd-abc --priority=3
# Returns: clawd-abc.4
bd create --type=task --title="Security review" --parent=clawd-abc --priority=3
# Returns: clawd-abc.5
# 3. Set dependencies
bd dep add clawd-abc.2 clawd-abc.1 # API depends on design
bd dep add clawd-abc.3 clawd-abc.1 # UI depends on design
bd dep add clawd-abc.4 clawd-abc.2 # Tests depend on API
bd dep add clawd-abc.4 clawd-abc.3 # Tests depend on UI
bd dep add clawd-abc.5 clawd-abc.4 # Security after tests
# 4. Visualize
bd graph clawd-abc
# 5. Spawn agents as tasks become ready
# Initially only clawd-abc.1 (design) is ready
sessions_spawn(task="...", label="architect")
# After design completes, API and UI are ready (parallel!)
sessions_spawn(task="...", label="backend")
sessions_spawn(task="...", label="frontend")
# After both complete, tests are ready
sessions_spawn(task="...", label="tester")
# Finally, security review
sessions_spawn(task="...", label="security")
# 6. Close epic
bd close clawd-abc --reason="Auth feature complete"
| Issue | Solution |
|-------|----------|
| Agent stuck | Check bd show <id> for blockers |
| Task not unblocking | Verify parent task is closed with bd show |
| Race condition | Ensure dependencies set before spawning |
| Lost context | Include bead ID in all agent prompts |
bd) installed and configuredsessions_spawn capability.beads/ initializedCreated by Centauri • OpenClaw Agent Teams v0.1.0
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:28:54.133Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "run",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "work",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:run|supported|profile capability:work|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Centauriagent",
"href": "https://github.com/CentauriAgent/agent-teams-skill",
"sourceUrl": "https://github.com/CentauriAgent/agent-teams-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:25:07.562Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:25:07.562Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/centauriagent-agent-teams-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to agent-teams-skill and adjacent AI workflows.