Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计异常

clawd-control爪式控制

Agent Skill

clawd-control 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

192

周安装

8

GitHub Stars

115

下载量

64
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clawd-control(爪式控制)
来源仓库:https://github.com/temaki-ai/clawd-control
仓库路径:skills/clawd-control
安装命令:
npx skills add https://github.com/temaki-ai/clawd-control --skill clawd-control
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/temaki-ai/clawd-control --skill clawd-control

简介

Clawd Control 用于监控和管理 Clawdbot 代理舰队,通过仪表板 API 实现健康检查和会话管理。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要自动化运维多代理系统的场景。
  • 支持心跳触发、会话检查与认证凭据管理,需配合 Clawd Control 服务器运行。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或命令执行。
  • clawd-control 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Clawd Control — Agent Skill

Monitor and manage your Clawdbot agent fleet through the Clawd Control dashboard API. This skill lets agents check fleet health, inspect sessions, trigger heartbeats, and manage other agents — all programmatically.

Prerequisites

  • Clawd Control server running and accessible (default: http://<host>:3100)
  • Auth credentials: password from auth.json in the Clawd Control directory
  • Full server: github.com/temaki-ai/clawd-control

Authentication

All API calls require a session cookie. Obtain one first:

curl -s -c cookies.txt http://<HOST>:3100/api/login \
  -H "Content-Type: application/json" \
  -d '{"password": "<PASSWORD>"}'

Or use the Authorization: Bearer <session_token> header.

For agents with web_fetch, you can use the session cookie approach or pass the token as a header.

API Reference

Fleet Overview

GET /api/snapshot Returns the full fleet state: all agents + host metrics in a single call.

Response shape:

{
  "ts": 1706000000000,
  "agents": {
    "gandalf": {
      "id": "gandalf",
      "name": "Gandalf",
      "emoji": "🧙",
      "online": true,
      "lastSeen": 1706000000000,
      "health": { "agents": [...], "uptime": 3600 },
      "sessions": { "sessions": [...] },
      "usage": { "totalCost": 12.50, "shared": true },
      "heartbeat": { "ts": 1706000000000 },
      "channels": { "channels": { "telegram": { "running": true } } },
      "cron": { "jobs": [...] }
    }
  },
  "host": {
    "hostname": "darth-maul",
    "loadAvg": [0.5, 0.3, 0.2],
    "memory": { "total": 16000000000, "used": 8000000000, "available": 8000000000 },
    "disk": { "total": 219000000000, "used": 24000000000 },
    "uptime": 86400
  }
}

Individual Agent State

GET /api/agents/:id Returns live state for a specific agent.

Agent Detail (workspace files + live state)

GET /api/agents/:id/detail Returns everything about an agent: config, workspace files (SOUL.md, MEMORY.md, TASKS.md, etc.), skills list, memory files, recent daily notes, and live state.

Agent Actions

POST /api/agents/:id/action

Body: {"action": "<action_name>"}

Available actions:

ActionDescription
heartbeat-enableEnable heartbeat polling
heartbeat-disableDisable heartbeat polling
heartbeat-triggerTrigger an immediate heartbeat
session-newArchive current main session, start fresh
session-resetDelete ALL sessions (nuclear — creates backup)

Create Agent

POST /api/create-agent

Body:

{
  "name": "Merry",
  "emoji": "🌿",
  "soul": "Loyal, practical, action-oriented.",
  "model": "anthropic/claude-sonnet-4-5",
  "telegramToken": "123456:ABC-DEF..."
}

Returns step-by-step creation log and result.

Host Metrics

GET /api/host Returns current host machine metrics (CPU load, RAM, disk, uptime).

SSE Live Stream

GET /api/stream Server-Sent Events stream. Emits:

  • snapshot — full state on connect
  • agent — individual agent updates (includes removed: true when agent is deleted)
  • host — host metrics updates

Security Audit

GET /api/security-audit Runs security checks: secrets management, credential exposure, network/ports, system security, gateway config, account inventory.

Usage Patterns

Check if all agents are healthy

Fetch /api/snapshot, iterate agents, check each has online: true.
Flag any with online: false or stale lastSeen (> 5 min).

Monitor costs

Fetch /api/snapshot, sum usage.totalCost across agents.
Note: usage is shared per gateway, so avoid double-counting agents on the same gateway.

Trigger a heartbeat for a specific agent

POST /api/agents/gandalf/action with body {"action": "heartbeat-trigger"}

Reset a stuck agent

POST /api/agents/pippin/action with body {"action": "session-new"}
This archives the current session and starts fresh.

Notes

  • The server binds to a specific IP by default (not 0.0.0.0) for security. Ensure your agent can reach it.
  • Session tokens are in-memory and expire after sessionTtlHours (default: 24h).
  • The SSE stream reconnects automatically on disconnect (client-side).
  • Agent state is polled every 15s by default (configurable in agents.json).

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.81%
按下载量换算22

Claude

29.81%
按下载量换算19

Cursor

17.53%
按下载量换算11

Gemini CLI

9.43%
按下载量换算6

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills