Install
openclaw skills install tooldeckAuto-scrapes URLs to extract tool/service info, auto-categorizes, and saves to a personal database. Use when user explicitly shares a URL to save or asks to remember a service. Always confirm before saving. Never auto-save without user intent.
openclaw skills install tooldeckUse this skill when:
Privacy first: Never scrape, save, or monitor URLs without explicit user request. The skill is entirely passive — it only acts when the user intentionally asks it to.
User provides a URL with intent to save → scrape → extract info → categorize → confirm → save to database
Step 1: Confirm intent
Step 2: Scrape the URL
web_fetch to get page infoStep 3: Auto-categorize
Step 4: Find social media
web_search with tool name + "social media"Step 5: Auto-generate tags
Step 6: Confirm and save
Never scrape:
Sanitization:
/workspace/skills/tooldeck/references/database.json
{
"tools": [
{
"url": "https://example.com",
"title": "Tool Name",
"description": "What it does",
"category": "Development",
"tags": ["python", "api", "free"],
"use_case": "For building APIs",
"notes": "Good alternatives to X",
"saved_date": "2026-04-04",
"price": "Free / $X/mo",
"social_media": {
"linkedin": "...",
"facebook": "...",
"instagram": "..."
},
"contact": {
"email": "...",
"location": "..."
}
}
]
}