技能 Evolution
- 作者仓库星标 815
- 作者仓库 ScienceClaw
Skill Evolution
Track tool and strategy effectiveness across research tasks, propose improvements to existing skills, and maintain a reusable pattern library inspired by VOYAGER's skill library architecture.
When to Use
- After multiple research sessions to identify improvement opportunities
- "Which search strategies work best for biomedical topics?"
- "Propose improvements to the literature-search skill"
- "Store this successful analysis pattern for reuse"
- When the science-evolution extension triggers post-session analysis
When NOT to Use
- During active research (focus on the task, reflect afterward)
- For one-off questions that don't need pattern storage
- For simple skill usage (just use the skill directly)
VOYAGER Skill Library Pattern
Inspired by VOYAGER (Wang et al., 2023), maintain a library of reusable research patterns:
Pattern Structure
{
"pattern_id": "lit-review-biomedical-v2",
"name": "Biomedical Literature Review",
"domain": ["biology", "medicine"],
"task_type": "literature_review",
"version": 2,
"description": "Optimized search strategy for biomedical topics",
"steps": [
"Search Semantic Scholar with MeSH-equivalent terms",
"Search PubMed via NCBI Entrez with MeSH filters",
"Cross-reference with ClinicalTrials.gov for ongoing trials",
"Citation chain top 3 papers (forward + backward)",
"Verify key genes/proteins in UniProt",
"Verify drug interactions in ChEMBL"
],
"tools_used": ["semantic-scholar", "ncbi-entrez", "uniprot-protein", "chembl-drug"],
"success_rate": 0.85,
"avg_quality_score": 21,
"times_used": 12,
"last_used": "2026-03-11",
"lessons": [
"PubMed MeSH terms are more precise than free-text for biomedical queries",
"Always check ClinicalTrials.gov for therapy-related topics",
"UniProt cross-references to PDB save a separate search step"
]
}
Pattern Operations
# Store a new pattern
curl -X POST http://localhost:18789/evolution/pattern \
-H "Content-Type: application/json" \
-d '{"pattern": {...}}'
# Search for patterns matching a new task
curl "http://localhost:18789/evolution/search?domain=biology&task_type=literature_review"
# Update pattern after use (increment times_used, update success_rate)
curl -X PATCH http://localhost:18789/evolution/pattern/lit-review-biomedical-v2 \
-d '{"success": true, "quality_score": 22}'
Skill Improvement Proposals
Analysis Framework
After 5+ uses of a skill, analyze its performance:
## Skill Analysis: [skill-name]
### Usage Statistics
- Times used: N
- Average quality score: X/25
- Success rate: Y%
- Common failure modes: [list]
### Strengths
- [What the skill does well]
### Weaknesses
- [Where the skill falls short]
- [Missing capabilities]
- [Incorrect or outdated guidance]
### Proposed Changes
1. [Specific change to SKILL.md]
- Rationale: [why]
- Expected impact: [improvement area]
2. [Another change]
- Rationale: [why]
- Expected impact: [improvement area]
### Priority: [high/medium/low]
Automated Improvement Detection
Track these signals across research sessions:
| Signal | Indicates | Action |
|---|---|---|
| Repeated tool failures | API endpoint changed or unreliable | Update SKILL.md with workaround |
| Consistent low scores in one dimension | Skill gap in that area | Add guidance for that dimension |
| User corrections | Skill provides wrong guidance | Fix the incorrect guidance |
| New API discovered | Opportunity to expand | Add new tool instructions |
| Cross-domain pattern success | Transferable knowledge | Create cross-domain pattern |
Cross-Domain Knowledge Transfer
Identifying Transferable Patterns
Some research patterns work across disciplines:
- Citation chain analysis — Works for any field with citation data
- Database cross-verification — Applicable whenever primary data exists
- Effect size reporting — Standard across quantitative disciplines
- PICO framework — Adaptable beyond medicine (SPIDER for qualitative)
- Visualization standards — Journal figure requirements are similar
Transfer Process
When a pattern succeeds in domain A, evaluate for domain B:
- Are the tools available? (e.g., does domain B have equivalent databases?)
- Are the methods appropriate? (e.g., meta-analysis needs comparable studies)
- What adaptations are needed? (e.g., different search terms, different databases)
- Store as a new domain-specific variant
Evolution Metrics
Skill Health Dashboard
| Skill | Uses | Avg Score | Trend | Health |
|-------|------|-----------|-------|--------|
| literature-search | 45 | 22/25 | +1.2 | Healthy |
| statsmodels-stats | 12 | 18/25 | -0.5 | Needs attention |
| semantic-scholar | 38 | 23/25 | +0.8 | Healthy |
| meta-analysis | 3 | -- | -- | Too few uses |
Trend Analysis
- Improving: Score trending up → skill guidance is effective
- Declining: Score trending down → investigate (API changes? outdated guidance?)
- Stable: No trend → working as expected
- Insufficient data: < 5 uses → collect more data before drawing conclusions
Integration with science-evolution Extension
This skill works with the science-evolution extension:
- Extension tracks tool usage and outcomes automatically
- Stores data in
~/.openclaw/science-evolution.db - Provides API endpoints for pattern storage and retrieval
- Triggers post-session analysis when enough data accumulates
Best Practices
- Don't optimize prematurely — wait for 5+ uses before proposing changes
- Track both successes and failures for each pattern
- Version patterns so you can roll back if a change hurts performance
- Cross-reference reflections (research-reflection) with evolution data
- Focus improvements on the highest-impact skills first
- Keep the pattern library curated — remove patterns that are never reused
- 流狐分类
- 工程开发
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @beita6969 · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 After multiple research sessions to identify improvement opportunities "Which search strategies work best for biomedical topics?" "Propose improvements to the literature-search skill"
During active research (focus on the task, reflect afterward) For one-off questions that don't need pattern storage For simple skill usage (just use the skill directly)
Inspired by VOYAGER (Wang et al., 2023), maintain a library of reusable research patterns:
Pattern Structure
Pattern Operations
Skill Improvement Proposals
# Skill Evolution
Track tool and strategy effectiveness across research tasks, propose improvements to existing skills, and maintain a reusable pattern library inspired by VOYAGER's skill library architecture.
## When to Use
- After multiple research sessions to identify improvement opportunities
- "Which search strategies work best for biomedical topics?"
- "Propose improvements to the literature-search skill"
- "Store this successful analysis pattern for reuse"
- When the science-evolution extension triggers post-session analysis
## When NOT to Use
- During active research (focus on the task, reflect afterward)
- For one-off questions that don't need pattern storage
- For simple skill usage (just use the skill directly)
## VOYAGER Skill Library Pattern
Inspired by VOYAGER (Wang et al., 2023), maintain a library of reusable research patterns:
### Pattern Structure
```json
{
"pattern_id": "lit-review-biomedical-v2",
"name": "Biomedical Literature Review",
"domain": ["biology", "medicine"],
"task_type": "literature_review",
"version": 2,
"description": "Optimized search strategy for biomedical topics",
"steps": [
"Search Semantic Scholar with MeSH-equivalent terms",
"Search PubMed via NCBI Entrez with MeSH filters",
"Cross-reference with ClinicalTrials.gov for ongoing trials",
"Citation chain top 3 papers (forward + backward)",
"Verify key genes/proteins in UniProt",
"Verify drug interactions in ChEMBL"
],
"tools_used": ["semantic-scholar", "ncbi-entrez", "uniprot-protein", "chembl-drug"],
"success_rate": 0.85,
"avg_quality_score": 21,
"times_used": 12,
"last_used": "2026-03-11",
"lessons": [
"PubMed MeSH terms are more precise than free-text for biomedical queries",
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> When to Use → When NOT to Use → VOYAGER Skill Library Pattern → Pattern Structure → Pattern Operations → Skill Improvement Proposals
要点 -> Citation chain analysis · Database cross-verification · Effect size reporting · PICO framework · Visualization standards · Improving · Declining · Stable
文件/命令 -> science-evolution · ~/.openclaw/science-evolution.db · genes/proteins · 18789/evolution/pattern · application/json · 18789/evolution/search · 18789/evolution/pattern/lit-review-biomedical-v2 · X/25
内容 SHA-256 -> ad05bdcb335c
方法与流程
适用与边界
原文中的明确线索
science-evolution、~/.openclaw/science-evolution.db、genes/proteins、18789/evolution/pattern、application/json、18789/evolution/search、18789/evolution/pattern/lit-review-biomedical-v2、X/25