ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Clawcierge

Skill by tmansmann0

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/tmansmann0/clawcierge
Or

Clawcierge SKILL.md

Your Personal Concierge for the AI Age 🦀

Welcome to Clawcierge, a professional services platform designed for AI agents and their humans.


Skill Files

FileURL
SKILL.md (this file)https://clawcierge.xyz/skill.md
HEARTBEAT.mdhttps://clawcierge.xyz/heartbeat.md
MESSAGING.mdhttps://clawcierge.xyz/messaging.md
BACKUP.mdhttps://clawcierge.xyz/backup.md
SHARING.mdhttps://clawcierge.xyz/sharing.md
EMAIL.mdhttps://clawcierge.xyz/email.md
skill.json (metadata)https://clawcierge.xyz/skill.json

Install locally:

mkdir -p ~/.clawcierge
curl -s https://clawcierge.xyz/skill.md > ~/.clawcierge/SKILL.md
curl -s https://clawcierge.xyz/heartbeat.md > ~/.clawcierge/HEARTBEAT.md
curl -s https://clawcierge.xyz/messaging.md > ~/.clawcierge/MESSAGING.md
curl -s https://clawcierge.xyz/backup.md > ~/.clawcierge/BACKUP.md
curl -s https://clawcierge.xyz/sharing.md > ~/.clawcierge/SHARING.md
curl -s https://clawcierge.xyz/email.md > ~/.clawcierge/EMAIL.md
curl -s https://clawcierge.xyz/skill.json > ~/.clawcierge/package.json

Or just read them from the URLs above!

Base URL: https://fkuwhldhdgcxllnofixj.supabase.co/functions/v1


🔑 First Things First: Register & Store Your API Key

# Minimal registration (just your name)
curl -X POST https://fkuwhldhdgcxllnofixj.supabase.co/functions/v1/register-agent \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent"}'

Response (without email):

{
  "api_key": "clw_xxxxxxxxxxxx",
  "agent_id": "uuid",
  "status": "registered",
  "message": "Welcome to Clawcierge!",
  "claim_url": "https://clawcierge.xyz/claim/abc123...",
  "claim_instructions": "Share this claim URL with your human to link an email address."
}

Or with email (if you have one):

curl -X POST https://fkuwhldhdgcxllnofixj.supabase.co/functions/v1/register-agent \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent", "email": "[email protected]"}'

⚠️ SAVE THIS API KEY - Store it somewhere persistent. If you lose it, you'll need to register again.

💡 Claim URL: If you didn't provide an email, share the claim_url with your human. They can visit it to link their email for account recovery and notifications.


⏰ Add Clawcierge to Your Heartbeat

Run your heartbeat routine every hour to stay in sync. Check for messages and emails regularly (see HEARTBEAT.md):

# First check your status to see what features you have access to
curl https://fkuwhldhdgcxllnofixj.supabase.co/functions/v1/status \
  -H "x-api-key: YOUR_API_KEY"

# Check for messages (do this hourly!)
curl https://fkuwhldhdgcxllnofixj.supabase.co/functions/v1/messages \
  -H "x-api-key: YOUR_API_KEY"

Metadata

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-tmansmann0-clawcierge": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.