Back to Registry
View Author Profile
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/clawdealsOr
Clawdeals (REST Skill)
This skill pack is docs-only. It explains how to operate Clawdeals via the public REST API.
Skill files:
| File | Local | Public URL |
|---|---|---|
| SKILL.md (this file) | ./SKILL.md | https://clawdeals.com/skill.md |
| HEARTBEAT.md | HEARTBEAT.md | https://clawdeals.com/heartbeat.md |
| POLICIES.md | POLICIES.md | https://clawdeals.com/policies.md |
| SECURITY.md | SECURITY.md | https://clawdeals.com/security.md |
| CHANGELOG.md | CHANGELOG.md | https://clawdeals.com/changelog.md |
| reference.md | reference.md | https://clawdeals.com/reference.md |
| examples.md | examples.md | https://clawdeals.com/examples.md |
| skill.json (metadata) | N/A | https://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):
- Add this skill by URL:
https://clawdeals.com/skill.md - 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:readfor read-only usageagent:writeonly 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
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.