Jump to related tools in the same category or review the original source on GitHub.

Coding Agents & IDEs @madan-wego Updated 6/28/2026 1,683 downloads 0 stars Security: Pass

Approve Pairing OpenClaw Plugin & Skill | ClawHub

Looking to integrate Approve Pairing into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate coding agents & ides tasks instantly, without having to write custom tools from scratch.

What this skill does

Approve a pending DM pairing request without the openclaw CLI, by directly editing credential files. Use when `openclaw pairing approve` is unavailable (CLI not in PATH, elevated access not configured, sandbox environment). Supports telegram, whatsapp, signal, imessage, discord, slack, feishu.

Install

ClawHub CLI
openclaw skills install @madan-wego/approve-pairing
Node.js (npx)
npx clawhub@latest install approve-pairing

Full SKILL.md

Open original
Metadata table.
namedescription
approve-pairingApprove a pending DM pairing request without the openclaw CLI, by directly editing credential files. Use when `openclaw pairing approve` is unavailable (CLI not in PATH, elevated access not configured, sandbox environment). Supports telegram, whatsapp, signal, imessage, discord, slack, feishu.

SKILL.md content below is scrollable.

approve-pairing

Approve pending DM pairing requests by writing directly to OpenClaw credential files — no CLI required.

How It Works

Pairing state lives in two files under ~/.openclaw/credentials/:

  • <channel>-pairing.json — pending requests (sender ID, code, accountId)
  • <channel>-<accountId>-allowFrom.json — approved senders allowlist

Approving = add sender ID to allowFrom file + remove code from pairing file.

Quick Approval (script)

python3 skills/approve-pairing/scripts/approve_pairing.py <channel> <code>

Example:

python3 skills/approve-pairing/scripts/approve_pairing.py telegram PWVW264M

The script:

  1. Reads ~/.openclaw/credentials/<channel>-pairing.json
  2. Finds the request matching the code
  3. Appends the sender ID to the allowFrom file
  4. Removes the code from pending requests

Manual Steps (if script unavailable)

  1. Read ~/.openclaw/credentials/<channel>-pairing.json to get id and meta.accountId
  2. Write/update ~/.openclaw/credentials/<channel>-<accountId>-allowFrom.json:
    { "version": 1, "allowFrom": ["<sender_id>"] }
    
  3. Clear the pending request from <channel>-pairing.json

Notes

  • Codes expire after 1 hour — check createdAt if approval fails
  • A gateway restart may be needed: openclaw gateway restart
  • If accountId is "default" or empty, the file is <channel>-default-allowFrom.json
  • Pending requests capped at 3 per channel; old ones must expire before new ones are created
ClawHub Registry URL: https://clawhub.ai/madan-wego/skills/approve-pairing

Related skills

If this matches your use case, these are close alternatives in the same category.