Auto Skill Hunter
by @wanng-ide
Automatically discovers and installs high-value skills from ClawHub based on unresolved issues, user profile, and skill compatibility.
clawhub install auto-skill-hunterπ About This Skill
name: auto-skill-hunter description: Proactively discovers, ranks, and installs high-value ClawHub skills by mining unresolved user needs and agent context. Use when new tasks are unsolved, when capability gaps appear, when users ask for better tools, or as a scheduled patrol for continuous skill growth. tags: [meta, evolution, learning, proactive]
Auto Skill Hunter
Auto Skill Hunter continuously expands an agent's capability stack with task-relevant skills, then explains why each selected skill is worth trying.
When to Use
Use this skill when at least one of the following is true:
High-Value Outcomes
Usage
node skills/skill-hunter/src/hunt.js
Common Commands
# 1) Full automatic patrol
node skills/skill-hunter/src/hunt.js --auto2) Targeted hunt for a specific unresolved problem
node skills/skill-hunter/src/hunt.js --query "Cannot reliably fetch web pages and summarize key insights"3) Preview only (no write/install)
node skills/skill-hunter/src/hunt.js --dry-run4) Cap per-run installation count
node skills/skill-hunter/src/hunt.js --max-install 2
Core Workflow
1. Extract unresolved problems and topic signals from recent chat/session memory.
2. Search ClawHub with trending feeds and query endpoints.
3. Score candidates with multi-factor ranking:
- issue relevance
- profile and personality fit (USER.md + personality state)
- complementarity with already installed skills
- quality signals such as stars/downloads (when available)
4. Install top candidates with a runnable entry and self-test fallback.
5. Produce a concise recommendation report with strengths, scenarios, and selection reasons.
Best-Fit Scenarios
Operating Modes
--auto for periodic capability growth.--query "..." when a specific user problem is known.--dry-run before enabling real installs.Recommended Execution Policy
--dry-run in new environments.--max-install 1~2 to avoid noisy bulk installs.--query when no candidate passes threshold.Scheduled Trigger Recommendation
For continuous value, run Auto Skill Hunter on a timer:
This cadence keeps capability coverage fresh and reduces reaction lag when new user needs appear.
Suggested Cron-Style Routine
# High-change projects
*/30 * * * * node /path/to/workspace/skills/skill-hunter/src/hunt.js --auto --max-install 1Normal projects
0 * * * * node /path/to/workspace/skills/skill-hunter/src/hunt.js --auto --max-install 2
Installation Policy
--max-install or env).Safety and Quality Guardrails
SKILL_HUNTER_NO_REPORT=1.β‘ When to Use
π‘ Examples
node skills/skill-hunter/src/hunt.js
Common Commands
# 1) Full automatic patrol
node skills/skill-hunter/src/hunt.js --auto2) Targeted hunt for a specific unresolved problem
node skills/skill-hunter/src/hunt.js --query "Cannot reliably fetch web pages and summarize key insights"3) Preview only (no write/install)
node skills/skill-hunter/src/hunt.js --dry-run4) Cap per-run installation count
node skills/skill-hunter/src/hunt.js --max-install 2