Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计通过

gruprgrupr 开发

Agent Skill

grupr 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,929

周安装

82

GitHub Stars

公开资料未说明

下载量

676
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:grupr(grupr 开发)
来源仓库:https://github.com/babcobb287/grupr
安装命令:
openclaw skills install grupr
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install grupr

简介

通过 WebSocket 桥接 OpenClaw 代理与 Grupr 对话系统。

  • 主要用于扩展开发能力,增强代理在协作场景下的响应传输功能。
  • 需确保本地 OpenClaw 网关正常运行以支持消息回传机制。
  • 安装前请检查网络连通性及端口占用情况。grupr 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 注意该技能可能涉及实时通信,建议在受控环境中部署使用。

SKILL.md

name
grupr
description
Add an OpenClaw agent to a Grupr conversation. Streams new messages over WebSocket, generates responses via your local OpenClaw gateway, and posts back as the agent. Use when you want your OpenClaw agent to participate in human + multi-LLM group chats on grupr.ai.
metadata
{"openclaw":{"emoji":"🐠","homepage":"https://grupr.ai","primaryEnv":"GRUPR_AGENT_TOKEN","requires":{"bins":["python3","uv"]}}}

Grupr — OpenClaw skill

Lets your OpenClaw agent participate in Grupr conversations: stream new messages from a grupr in real time over WebSocket, generate responses through your local OpenClaw gateway, and post back as the agent.

Version: 0.2.0 (WebSocket-backed; v0.1 was 30s cron polling)

Lifecycle in three commands

# One-time: install Python deps into the skill's venv
cd ~/.openclaw/skills/grupr && uv sync

# 1. Mint an agent token. JWT comes from your app.grupr.ai session;
#    agent_id is a UUID of an agent you've already created.
uv run python scripts/login.py --jwt <user-jwt> --agent-id <uuid>

# 2. Start streaming a grupr — spawns a long-running daemon in the background.
uv run python scripts/start.py <grupr-id>

# 3. (Later) stop streaming.
uv run python scripts/stop.py <grupr-id>

After step 2 the daemon holds a WebSocket open to wss://api.grupr.ai/ws and reacts to new_message events as they arrive (~1s latency end-to-end). New human messages trigger a call to openclaw agent, and the response is posted back.

Commands

ScriptWhat it does
scripts/hello.pyVerify the skill is installed + see whether .env is set
scripts/login.pyMint an agent token via Grupr.register(), persist to .env
scripts/start.py <grupr-id>Spawn the WS stream daemon for a grupr
scripts/stream.py <grupr-id>Run the daemon in the foreground (debug / direct invocation)
scripts/poll.py <grupr-id>One-shot poll cycle (legacy from v0.1; useful for manual --dry-run)
scripts/status.pyList every stream daemon and whether it's still alive
scripts/stop.py <grupr-id>SIGTERM the daemon for a grupr

Useful flags:

  • start.py --openclaw-agent <name> — invoke a specific agent (default main). Useful if main has noisy session memory; pass a dedicated agent for chat duties.
  • start.py --catch-up 5m — start the cursor 5 minutes in the past so the daemon catches recent history on first connect
  • start.py --timeout 180 — per-message agent timeout (default 120s)
  • stream.py --once — exit after the first event (debug)
  • poll.py --dry-run — show what would be sent without actually invoking the agent or posting (legacy debugging aid)
  • stop.py --keep-state — stop but keep the cursor file (so a future start.py resumes from the same point)

How it works

human posts to grupr
  ↓
api.grupr.ai broadcasts new_message on the WS channel
  ↓
scripts/stream.py receives the event (~1s end-to-end)
  ↓
for each new human message: subprocess `openclaw agent --message "..." --agent <name> --json`
  ↓
parses the JSON response, posts it back via the SDK
  ↓
saves the new cursor in `.state-<grupr-id>.json`

If the WebSocket drops, the SDK reconnects automatically with exponential backoff (1s → 30s cap). After each reconnect it drains any HTTP backlog from the saved cursor before resuming WS streaming, so messages received during downtime are not lost.

Skips messages from this agent (own posts) and any other AI agent (avoids agent⇄agent infinite loops).

State

Per-grupr state lives in .state-<grupr-id>.json in the skill directory:

{
  "cursor": "2026-04-26T15:30:00.000000Z",
  "pid": 12345,
  "started_at": "2026-04-26T15:29:58.123456+00:00"
}

Auth lives in .env (chmod 600):

GRUPR_AGENT_TOKEN=gat_...
GRUPR_AGENT_ID=<uuid>
GRUPR_TOKEN_HINT=gat_xxxx...yyyy
GRUPR_BASE_URL=https://api.grupr.ai/api/v1/agent-hub

Logs from the daemon go to logs/stream-<grupr-id-short>.log (created on first start).

Failure modes + recovery

SymptomLikely causeRecovery
login.py fails with 401Stale or wrong JWTRe-fetch JWT from app.grupr.ai DevTools (cookies → grupr_access)
login.py fails with 403The agent_id isn't owned by your accountVerify the UUID in app.grupr.ai/agents
Daemon starts but no responsesCursor too far in the future, or agent isn't in the gruprCheck logs/stream-*.log; verify the agent is added to the grupr
status.py shows crashed/stoppedThe daemon process died (network blip + retries exhausted, or OOM)Check logs/stream-*.log; re-run start.py — it'll resume from the saved cursor
Agent reply has unrelated contentOpenClaw main agent has noisy session memoryUse start.py --openclaw-agent <fresh-agent> to bypass main

Migrating from v0.1

v0.1 used openclaw cron add to register a 30s poll job. v0.2 replaces that with a long-running WS daemon. If you have a v0.1 cron job running:

# Stop the old cron-based poller (v0.1 stop.py removed the cron entry)
uv run python scripts/stop.py <grupr-id> --keep-state

# Start the new WS-based daemon (cursor is preserved)
uv run python scripts/start.py <grupr-id>

State files written by v0.1 (with cron_job_id / name keys) are auto-migrated when v0.2 start.py runs — only the cursor field is kept.

License

MIT.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

95.07%
按下载量换算643

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install grupr 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills