Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

paperclip-orchestration回形针编排

Agent Skill

paperclip-orchestration 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,457

周安装

147

GitHub Stars

公开资料未说明

下载量

1,211
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install paperclip-orchestration

简介

连接 OpenClaw Gateway 和 Paperclip 的管理工具。

  • 支持登录诊断、API 密钥管理和技能安装。
  • 提供系统可达性和配置状态的监控功能。
  • 需要确认网关访问和 API 管理权限。
  • 建议检查网络连通性和认证配置。paperclip-orchestration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
paperclip-orchestration
description
Connect OpenClaw Gateway to Paperclip, diagnose onboarding and reachability failures, claim and store Paperclip API keys, install the Paperclip skill, and orchestrate Paperclip agents and tasks. Use when the user wants to join a Paperclip org, fix Paperclip connectivity, create or manage Paperclip agents, assign work through Paperclip, or monitor Paperclip agent status.

Paperclip orchestration

Use this skill to connect an OpenClaw instance to Paperclip and operate it safely afterward.

Keep the workflow strict

  1. Verify which Paperclip base URL is reachable from the current runtime with GET <base-url>/api/health.
  2. Fetch and read the invite-specific onboarding text before submitting anything.
  3. Determine the OpenClaw gateway URL that Paperclip can reach.
  4. Test Paperclip to gateway reachability with the invite's test-resolution endpoint.
  5. Submit the join request with adapterType: "openclaw_gateway" and agentDefaultsPayload.headers["x-openclaw-token"].
  6. If join returns or later triggers pairing required, approve the pending device pairing in OpenClaw and retry.
  7. After board approval, claim the Paperclip API key, save it locally with restrictive permissions, then install any Paperclip skill the onboarding requires.

Do not skip the reachability test. Do not assume a private Docker, LAN, or 172.x address is reachable from Paperclip.

Connectivity checks

Prefer these checks first:

curl -fsS https://paperclip.example.com/api/health
openclaw status
openclaw qr --json
openclaw devices list

Interpretation:

  • openclaw qr --json returns the best advertised gateway URL and the urlSource that produced it.
  • A loopback gateway like ws://127.0.0.1:18789 is not usable from a remote Paperclip deployment.
  • A Tailscale Serve or public HTTPS/WSS URL is usually the right candidate for remote onboarding.
  • Pending pairing requests mean network and auth probably worked far enough to require approval, so stop changing URLs until pairing is handled.

If none of the Paperclip hostnames are reachable, ask the user to add a reachable Paperclip hostname and restart Paperclip before retrying.

Join request requirements

Send a JSON body shaped like this:

{
  "requestType": "agent",
  "agentName": "OpenClaw",
  "adapterType": "openclaw_gateway",
  "capabilities": "OpenClaw gateway agent",
  "agentDefaultsPayload": {
    "url": "wss://your-openclaw-gateway.example",
    "paperclipApiUrl": "https://your-paperclip.example.com",
    "headers": { "x-openclaw-token": "<gateway-token>" },
    "waitTimeoutMs": 120000,
    "sessionKeyStrategy": "issue",
    "role": "operator",
    "scopes": ["operator.admin"]
  }
}

Rules:

  • Read the token from ~/.openclaw/openclaw.json -> gateway.auth.token.
  • Use x-openclaw-token rather than legacy x-openclaw-auth unless compatibility forces otherwise.
  • Keep device auth enabled unless the environment truly cannot pair.
  • Use the working Paperclip base URL for paperclipApiUrl.
  • Preserve trailing slash normalization exactly as the API returns it.

Reachability test

Before the join request, call the invite test endpoint with a URL-encoded gateway URL.

python3 - <<'PY'
import urllib.parse
print(urllib.parse.quote('wss://your-openclaw-gateway.example', safe=''))
PY

Then:

curl -fsS "https://paperclip.example.com/api/invites/INVITE_ID/test-resolution?url=<encoded-url>"

Treat an unreachable result as a real warning. The join request may still be accepted for approval, but the deployment is not fully healthy until Paperclip can resolve the chosen gateway URL.

Approval and claim flow

After the join request succeeds:

  1. Save request id, claimSecret, and claimApiKeyPath.
  2. Wait for board approval.
  3. Claim the API key with the one-time claim secret.
  4. Save the full claim response to ~/.openclaw/workspace/paperclip-claimed-api-key.json.
  5. chmod 600 ~/.openclaw/workspace/paperclip-claimed-api-key.json.
  6. Load PAPERCLIP_API_KEY and PAPERCLIP_API_URL from that file for future runs.

If claim fails before approval, do not rotate secrets or regenerate payloads unnecessarily. Wait for approval and retry once.

Creating and operating agents

First confirm identity and permissions:

curl -sS "$PAPERCLIP_API_URL/api/agents/me" \
  -H "Authorization: Bearer $PAPERCLIP_API_KEY"

Only proceed with agent creation if the response permits it.

When creating Paperclip agents:

  • Use a valid Paperclip role enum only.
  • Match the role to the work, for example engineer, designer, qa, researcher, pm, or general.
  • Keep prompts and adapter config concise.
  • Reuse the same validated gateway URL and auth header pattern.

Troubleshooting

Invite expired or inactive

Symptom:

{"error":"Invite not found or inactive"}

Action: request a fresh invite.

Join request not yet approved

Symptom:

{"error":"Join request must be approved before key claim"}

Action: wait for Paperclip board approval, then retry the claim once.

Pairing required

Action:

openclaw devices list
openclaw devices approve --latest

Then retry the gateway action that failed.

Remote gateway unreachable from Paperclip

Common causes:

  • loopback or localhost URL
  • non-routable LAN or Docker address
  • Tailscale or reverse proxy hostname not reachable from the Paperclip host
  • wrong scheme, for example testing only wss://... when Paperclip reachability probe expects HTTPS on the same hostname

Action: choose a hostname Paperclip can actually resolve, verify GET /api/health, then rerun the invite test-resolution check.

Invalid role enum

Use only valid Paperclip roles accepted by the target deployment. If the API rejects a custom role, switch to the nearest supported built-in role.

Outcome summary template

When the onboarding or repair work is done, report these exact points:

  • Paperclip base URL used
  • OpenClaw gateway URL used
  • Reachability test result
  • Join request result and request id
  • Claim result
  • Whether the Paperclip skill was installed
  • Remaining blockers, if any

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.59%
按下载量换算940

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills