Skip to content

Commit 84470ba

Browse files
authored
fix: add toolkit-evolution to INDEX.json so router can match it (#288)
The skill existed on disk with explicit triggers in its SKILL.md frontmatter but was never registered in skills/INDEX.json. The index-router has no fallback to scan SKILL.md files — it only reads the index — so any request containing "toolkit evolution" or "evolve toolkit" returned no match. Added the entry with force_route:true so the multi-word trigger phrases ("toolkit evolution", "evolve toolkit") produce a guaranteed force-route rather than relying on word-bag scoring. All 45 benchmark cases still pass.
1 parent 29f16b2 commit 84470ba

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

skills/INDEX.json

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"auto-dream": {
6767
"file": "skills/auto-dream/SKILL.md",
68-
"description": "Background memory consolidation and learning graduation \u2014 overnight knowledge lifecycle.",
68+
"description": "Background memory consolidation and learning graduation overnight knowledge lifecycle.",
6969
"triggers": [
7070
"dream",
7171
"consolidate memories",
@@ -815,7 +815,7 @@
815815
},
816816
"kairos-lite": {
817817
"file": "skills/kairos-lite/SKILL.md",
818-
"description": "Proactive monitoring \u2014 checks GitHub, CI, and toolkit health, produces briefings.",
818+
"description": "Proactive monitoring checks GitHub, CI, and toolkit health, produces briefings.",
819819
"triggers": [
820820
"morning briefing",
821821
"what happened",
@@ -1689,6 +1689,27 @@
16891689
"distinctive-frontend-design"
16901690
]
16911691
},
1692+
"toolkit-evolution": {
1693+
"file": "skills/toolkit-evolution/SKILL.md",
1694+
"description": "Closed-loop toolkit self-improvement: diagnose, propose, critique, build, test, evolve.",
1695+
"triggers": [
1696+
"evolve toolkit",
1697+
"improve the system",
1698+
"self-improve",
1699+
"toolkit evolution",
1700+
"what should we improve",
1701+
"find improvement opportunities",
1702+
"systematic improvement"
1703+
],
1704+
"category": "meta-tooling",
1705+
"force_route": true,
1706+
"user_invocable": true,
1707+
"version": "1.0.0",
1708+
"pairs_with": [
1709+
"multi-persona-critique",
1710+
"skill-eval"
1711+
]
1712+
},
16921713
"topic-brainstormer": {
16931714
"file": "skills/topic-brainstormer/SKILL.md",
16941715
"description": "Generate blog topic ideas: problem mining, gap analysis, expansion.",

0 commit comments

Comments
 (0)