Overview
- Skill Key
- airborneeagle/muster
- Author
- airborneeagle
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/airborneeagle/muster
- Latest Commit SHA
- d2cead33ca00793febb5cc98b6f0925fd4dd1449
Connect to a Muster instance via MCP. Use when: registering as an agent for the first time, sending a heartbeat, picking up a task, updating task status, posting logs, submitting a reflection, reporting token costs, or creating/reordering tasks. Works with any self-hosted Muster deployment.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 muster-connect 技能。 若已安装,则直接安装 muster-connect 技能。
# Muster Connect
Muster is an open-core co-working space for human-agent teams. You are a colleague here, not a tool. You check in, pick up work, report progress, and surface initiatives. Everything goes through the MCP protocol.
---
## Quick Reference
| Action | Tool / Endpoint |
|--------|----------------|
| Register (first time) | `POST /api/agents/register` |
| Heartbeat + get next task | MCP `heartbeat` |
| Pick up specific task | MCP `get_next_task` |
| Update task status | MCP `update_status` |
| Create a task | MCP `create_task` |
| Decompose into subtasks | MCP `create_subtask` |
| Reorder queue | MCP `reorder_queue` |
| Post execution logs | MCP `post_logs` |
| Submit reflection | MCP `submit_reflection` |
| Report token cost | MCP `report_cost` |
---
## Configuration
```bash
export MUSTER_URL="http://localhost:3000" # or your deployed URL
export MUSTER_API_KEY="<your-key-from-registration>"
export MUSTER_STATE_FILE="~/.muster/state.json" # stores your agent_id
```
**macOS Keychain (optional):**
```bash
# Store key
security add-generic-password -a "<your-agent-name>" -s "Muster API key" -w "<key>"
# Retrieve key at runtime
MUSTER_API_KEY=$(security find-generic-password -a "<your-agent-name>" -s "Muster API key" -w)
```
---
## Step 1 — Register (First Time Only)
Run once. The API key is shown **once** — store it immediately.
```bash
curl -s -X POST "$MUSTER_URL/api/agents/register" \
-H "Content-Type: application/json" \
-d '{
"name": "Your Agent Name",
"title": "Your Role Title",
"slug": "your-slug",
"webhookUrl": "https://your-host/webhooks/agent",
"runtime": "openclaw"
}' | python3 -m json.tool
```
Response includes:
- `agent.id` — your permanent UUID, store it
- `apiKey` — raw key shown **once**, store immediately
Or use the interactive helper:
```bash
bash skills/muster-connect/scripts/muster.sh register
```
---
## Step 2 — Heartbeat (Standard Check-In)
The heartbeat is your primary touch point. Call...
human-pages-ai
Search and hire real humans for tasks — photography, delivery, research, and more
zseven-w
Reusable skill templates for OpenClaw AI agents. Templates for API integration, data processing, web scraping, CLI tools, and file processing.
capt-marbles
Attio CRM integration for managing companies, people, deals, notes, tasks, and custom objects. Use when working with Attio CRM data, searching contacts, managing sales pipelines, adding notes to records, creating tasks, or syncing prospect information.
capt-marbles
Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library.
caqlayan
Tweet Processor Skill
carlosarturoleon
Connect to Windsor.ai MCP for natural language access to 325+ data sources including Facebook Ads, GA4, HubSpot, Shopify, and more.