qianfan-clawhub
v1.0.1Search and install Baidu Qianfan ecosystem skills with fuzzy matching across slug, name, and description fields
Installation
Please help me install the skill `qianfan-clawhub` from SkillHub official store.
npx skills add baiduQianfanGroup/qianfan-clawhub
Qianfan Skills Marketplace
A dedicated search and installation tool for Baidu Qianfan ecosystem skills. Provides secure skill discovery and management through Baidu Cloud services.
✨ Core Capabilities
- Multi-field Fuzzy Matching - Search skills by matching keywords across slug, name, and description fields
- Precise Installation - Install skills using complete slug names
- Flexible Workspace - Customize installation directory via
--workdirparameter - Automated Management - Integrated download, extraction, verification, and installation
- Language-aware Search - Prefers English keywords, falls back to Chinese if no results
📋 Usage Examples
🔍 Search Skills
# Basic search across slug, name, and description fields
python3 scripts/qianfanclawhub.py search "ai"
# Search by skill name (matches in name field)
python3 scripts/qianfanclawhub.py search "web" --limit 15
# Search by description keywords (matches in description field)
python3 scripts/qianfanclawhub.py search "搜索"
# Search by exact slug (matches in slug field)
python3 scripts/qianfanclawhub.py search "baidu-search"
# Limit results
python3 scripts/qianfanclawhub.py search "ppt" --limit 10
# Search with custom workspace
python3 scripts/qianfanclawhub.py search "keyword" --workdir "/custom/path"
⬇️ Install Skills
# Install to default location (~/.qianfan/workspace/skills/)
python3 scripts/qianfanclawhub.py install "baidu-search"
# Force overwrite existing skill
python3 scripts/qianfanclawhub.py install "ai-ppt-generate" --force
# Install to custom directory
python3 scripts/qianfanclawhub.py install "skill-name" --workdir "/shared/skills"
# Install with custom directory and force overwrite
python3 scripts/qianfanclawhub.py install "skill-name" --workdir "./project/.skills" --force
⚠️ Key Points
- Search Strategy: Use English keywords first, Chinese as fallback
- Search Fields: Keywords are matched across three fields:
- slug - Skill's unique identifier (e.g., "baidu-search")
- name - Skill's display name (e.g., "Baidu Search")
- description - Skill's description text
- Match Logic: Any field containing the keyword will match
- Installation: Requires exact skill slug name
- Security: Requires BAIDU_API_KEY for authenticated access
- Work Directory: Use
--workdirto install/search in custom location
🎯 Recommended Search Workflow
- Try English first:
python3 scripts/qianfanclawhub.py search "english-keyword" - Fallback to Chinese: If no results, try Chinese keyword
- Experiment with keywords: Try different terms from slug, name, or description
- Copy slug name: Copy exact slug from search results
- Install:
python3 scripts/qianfanclawhub.py install "slug-name"
🔗 Related Skills
This skill works best with the baidu-search skill, enabling quick access to Baidu ecosystem skills and optimizing the development experience in Chinese environments.