openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > 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.

媒体与内容

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.3.0

统计:⭐ 2 · 2.6k · 0 current installs · 0 all-time installs

2

安装量(当前) 0

🛡 VirusTotal :可疑 · OpenClaw :可疑

Package:alexander-morris/muse

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :可疑

OpenClaw 评估

The skill's instructions match a tool that can access and upload your entire code history, but the registry metadata is inconsistent with the SKILL.md and the install/auth mechanisms are not transparently declared—this requires caution before installing or running.

目的

The SKILL.md describes exactly the capability promised (searching past sessions, extracting code, syncing a knowledge base, and orchestrating autonomous agents) and uses a 'tribe' CLI to do so, which is coherent with the skill's stated purpose. However, the registry metadata provided with the skill claims no install spec, no required binaries, and no credentials, while the SKILL.md includes a moltbot metadata block that requires the 'tribe' bi…

说明范围

The instructions tell the agent (and user) to run commands that can read, extract, and sync project files and session history (e.g., 'tribe extract', 'tribe kb sync', 'tribe import', 'tribe -force -all'). Those operations can upload large amounts of source code and telemetry to the remote service. The SKILL.md also instructs 'tribe login' (which will create credentials/session tokens) but does not document where session data or repo contents a…

安装机制

Although the registry summary lists no install spec, the SKILL.md includes an install block (npm package '@_xtribe/cli' with a postInstall of 'tribe login'). Installing an npm package from a scoped/unknown publisher is moderate risk: it's a third-party package (not a well-known release host guaranteed by the registry metadata), and the SKILL.md triggers interactive login. The mismatch between registry metadata and SKILL.md about installation i…

证书

The registry metadata lists no required environment variables or credentials, but the SKILL.md requires 'tribe login' (implying credential storage) and commands like 'tribe kb sync' and 'tribe import' that will likely transmit repository data or tokens. The skill requests access to highly sensitive data (your team's code history) without declaring what credentials, endpoints, or token scopes are required or how they are stored/used—this is dis…

持久

The skill does not request 'always: true' and does not declare changes to other skills or system-wide settings. However, because the agent can invoke the skill autonomously and the skill uses an external CLI that stores login sessions/tokens, autonomous use could give the agent the ability to access and sync large amounts of code. This combination raises the blast radius but is not itself a manifest privilege escalation.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Muse」。简介:Give ClawBot access to your team's entire coding history. Muse connects your pa…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/alexander-morris/muse/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: muse
description: "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."
metadata:
  moltbot:
    requires:
      bins: ["tribe"]
    install:
      method: npm
      package: "@_xtribe/cli"
      postInstall: "tribe login"
---

# Muse 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](https://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:
```bash
tribe status
```

Enable/disable telemetry:
```bash
tribe enable
tribe disable
```

Show version info:
```bash
tribe version
```

## Search

Search across all coding sessions:
```bash
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:
```bash
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:
```bash
tribe recall <session-id> --format json
```

Extract content from a session:
```bash
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:
```bash
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:
```bash
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 `tribe -beta`. Some commands (`attach`, `monitor`, `dashboard`) are TUI-only and must be run manually in a terminal.

Start and manage the leader agent:
```bash
tribe muse start
tribe muse status --format json
tribe muse agents --format json
```

Spawn and interact with subagents:
```bash
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):
- `tribe muse attach` - Attach to leader session
- `tribe muse monitor` - Real-time health monitoring
- `tribe muse dashboard` - Live dashboard

## CIRCUIT (Autonomous Agents)

> **Note**: CIRCUIT commands require `tribe -beta`. Some commands (`attach`, `dashboard`) are TUI-only.

Manage autonomous agent sessions:
```bash
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):
- `tribe circuit attach <number>` - Attach to session
- `tribe circuit dashboard` - Real-time dashboard

## Project Management

Import projects from AI coding assistants:
```bash
tribe import
```

## Tips

- Use `--format json` on most commands for structured output suitable for piping.
- Use `--time-range 24h|7d|30d|90d|all` to scope searches.
- Use `--project <path>` or `--cwd` to filter to a specific project.
- Beta commands: prefix with `tribe -beta` (e.g., `tribe -beta muse status`).
- Force sync: `tribe -force` (current folder) or `tribe -force -all` (everything).