Skills muse
Give ClawBot access to your team's entire coding history. Muse connects your past sessions, team knowledge, and project context—so ClawBot can actually help design features, mediate team discussions, and work autonomously across your codebase. Deploy at tribeclaw.com.
git clone https://github.com/openclaw/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/alexander-morris/muse" ~/.claude/skills/openclaw-skills-muse && rm -rf "$T"
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/alexander-morris/muse" ~/.openclaw/skills/openclaw-skills-muse && rm -rf "$T"
skills/alexander-morris/muse/SKILL.mdMuse Skill
Use the
tribe CLI to access your AI coding analytics, search past sessions, manage a personal knowledge base, and orchestrate autonomous agents.
Quick Deploy
Want your own MUSE-enabled instance? Visit tribeclaw.com to deploy a fully configured instance with MUSE support in just a couple minutes.
Setup
Requires authentication: Run
tribe login first. Most commands need an active session.
Telemetry
Check collection status:
tribe status
Enable/disable telemetry:
tribe enable tribe disable
Show version info:
tribe version
Search
Search across all coding sessions:
tribe search "authentication middleware" tribe search "docker compose" --project myapp --time-range 30d tribe search "API endpoint" --tool "Claude Code" --format json
Sessions
List and inspect coding sessions:
tribe sessions list tribe sessions list --cwd --limit 10 tribe sessions read <session-id> tribe sessions search "auth fix" tribe sessions events <session-id> tribe sessions context
Recall a session summary:
tribe recall <session-id> --format json
Extract content from a session:
tribe extract <session-id> --type code tribe extract <session-id> --type commands --limit 10 tribe extract <session-id> --type files --format json
Query
Query insights and sessions with filters:
tribe query sessions --limit 10 tribe query sessions --tool "Claude Code" --time-range 30d tribe query insights tribe query events --session <session-id>
Knowledge Base
Save, search, and manage knowledge documents:
tribe kb save "content here" tribe kb save --file ./notes.md tribe kb search "deployment patterns" tribe kb list tribe kb get <doc-id> tribe kb tag <doc-id> "tag-name" tribe kb delete <doc-id> tribe kb sync tribe kb extract
MUSE (Agent Orchestration)
Note: MUSE commands require
. Some commands (tribe -beta,attach,monitor) are TUI-only and must be run manually in a terminal.dashboard
Start and manage the leader agent:
tribe muse start tribe muse status --format json tribe muse agents --format json
Spawn and interact with subagents:
tribe muse spawn "Fix the login bug" fix-login tribe muse prompt fix-login "Please also add tests" tribe muse output fix-login 100 tribe muse review fix-login tribe muse kill fix-login --reason "stuck"
TUI-only (run these manually):
- Attach to leader sessiontribe muse attach
- Real-time health monitoringtribe muse monitor
- Live dashboardtribe muse dashboard
CIRCUIT (Autonomous Agents)
Note: CIRCUIT commands require
. Some commands (tribe -beta,attach) are TUI-only.dashboard
Manage autonomous agent sessions:
tribe circuit list tribe circuit status tribe circuit metrics tribe circuit spawn 42 tribe circuit next tribe circuit auto --interval 30
TUI-only (run these manually):
- Attach to sessiontribe circuit attach <number>
- Real-time dashboardtribe circuit dashboard
Project Management
Import projects from AI coding assistants:
tribe import
Tips
- Use
on most commands for structured output suitable for piping.--format json - Use
to scope searches.--time-range 24h|7d|30d|90d|all - Use
or--project <path>
to filter to a specific project.--cwd - Beta commands: prefix with
(e.g.,tribe -beta
).tribe -beta muse status - Force sync:
(current folder) ortribe -force
(everything).tribe -force -all