Cost-effective skill selector for maximizing ROI on AI operations (增收降本版 v1.0.0). Use when the user needs to accomplish a task and wants the optimal skill chosen automatically to minimize costs while maximizing quality. Evaluates skills based on quality (35%), token cost (30%), security/reliability (20%), and speed (15%). Searches both local skills and clawhub.com, presents top recommendations for user confirmation before execution.
智能技能选择器 - 用于增收降本的 AI 操作优化工具。
自动选择并执行最优技能,在保证质量的前提下最小化 Token 成本。
Analyze user request and decompose into atomic subtasks if needed.
Search for candidate skills:
openclaw skills listclawhub search <keywords>For each candidate skill, score on:
| Dimension | Weight | Evaluation Criteria |
|---|---|---|
| Quality/Utility | 35% | User ratings, downloads, functionality match |
| Token Cost | 30% | Estimated input/output tokens based on skill complexity |
| Security/Reliability | 20% | Code audit, permissions, update frequency, author trust |
| Speed | 15% | API response time, execution efficiency |
Scoring Algorithm:
final_score = (quality × 0.35) + (token_score × 0.30) + (security × 0.20) + (speed × 0.15)
Present Top-3 ranked options:
Wait for user to:
After confirmation:
clawhub install <skill>Before recommending any skill from clawhub:
Red flags that disqualify a skill:
Estimate token costs based on:
Store actual vs estimated for continuous improvement.
scripts/evaluate_skill.py - Score a skill across all dimensionsscripts/search_clawhub.py - Search and fetch skill metadata from clawhubscripts/calculate_cost.py - Estimate token and time costsreferences/evaluation-rubric.md - Detailed scoring criteriareferences/security-checklist.md - Security audit checklist