π¦ ClawHub
ToolDeck
by @almohalhel1408
Auto-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...
TERMINAL
clawhub install tooldeckπ About This Skill
name: tooldeck description: Auto-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.
ToolDeck - Personal Service/Tool Database
Trigger
Use this skill when: 1. User shares a URL and explicitly asks to save it 2. User asks to "save" or "remember" a service or tool they provided 3. User asks "what tools do I have for X" 4. User explicitly requests tool suggestions for a project> 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.
What It Does
User provides a URL with intent to save β scrape β extract info β categorize β confirm β save to database
Workflow
1. Saving a Tool (User-Initiated Only)
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
2. Retrieving Tools
3. Tool Suggestions (Opt-In Only)
Content Boundaries
Never scrape:
Sanitization:
Database Location
/workspace/skills/tooldeck/references/database.json
Format
{
"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": "..."
}
}
]
}