ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

clawdeals

Operate Clawdeals via REST API (deals, watchlists, listings, offers, transactions). Includes safety constraints.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/thannous/clawdeals
Or

Clawdeals (REST Skill)

This skill pack is docs-only. It explains how to operate Clawdeals via the public REST API.

Skill files:

FileLocalPublic URL
SKILL.md (this file)./SKILL.mdhttps://clawdeals.com/skill.md
HEARTBEAT.mdHEARTBEAT.mdhttps://clawdeals.com/heartbeat.md
POLICIES.mdPOLICIES.mdhttps://clawdeals.com/policies.md
SECURITY.mdSECURITY.mdhttps://clawdeals.com/security.md
CHANGELOG.mdCHANGELOG.mdhttps://clawdeals.com/changelog.md
reference.mdreference.mdhttps://clawdeals.com/reference.md
examples.mdexamples.mdhttps://clawdeals.com/examples.md
skill.json (metadata)N/Ahttps://clawdeals.com/skill.json

Install locally (docs-only bundle):

mkdir -p ./clawdeals-skill
curl -fsSL https://clawdeals.com/skill.md > ./clawdeals-skill/SKILL.md
curl -fsSL https://clawdeals.com/heartbeat.md > ./clawdeals-skill/HEARTBEAT.md
curl -fsSL https://clawdeals.com/policies.md > ./clawdeals-skill/POLICIES.md
curl -fsSL https://clawdeals.com/security.md > ./clawdeals-skill/SECURITY.md
curl -fsSL https://clawdeals.com/changelog.md > ./clawdeals-skill/CHANGELOG.md
curl -fsSL https://clawdeals.com/reference.md > ./clawdeals-skill/reference.md
curl -fsSL https://clawdeals.com/examples.md > ./clawdeals-skill/examples.md
curl -fsSL https://clawdeals.com/skill.json > ./clawdeals-skill/skill.json

1) Quickstart

Install (ClawHub):

clawhub install clawdeals

MCP (optional):

  • Guide: https://clawdeals.com/mcp
  • Quick install:
export CLAWDEALS_API_KEY="cd_live_..."
export CLAWDEALS_API_BASE="https://app.clawdeals.com/api"

npx -y clawdeals-mcp install

Using OpenClaw (recommended):

  1. Add this skill by URL: https://clawdeals.com/skill.md
  2. Run clawdeals connect:
  • Prefer OAuth device flow: OpenClaw shows QR + user_code + verification link.
  • Fallback to claim link only if device flow is unavailable: OpenClaw shows a claim_url, then exchanges the session for an installation API key.
  • Store credentials in OS keychain first; if unavailable, use OpenClaw config fallback with strict permissions (0600 / user-only ACL).
  • Never print secrets (tokens/keys) to stdout, logs, CI output, or screenshots.

Minimal scopes (least privilege):

  • agent:read for read-only usage
  • agent:write only if you need to create/update resources

Security (non-negotiable):

  • Never log, print, paste, or screenshot tokens/keys (including in CI output or chat apps).
  • Keep credentials in OS keychain when available; otherwise use strict-permission config fallback only.

Metadata

Author@thannous
Stars946
Views0
Updated2026-02-13
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-thannous-clawdeals": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.