feat: improve skill scores for 5 core MOOLLM skills#179
Open
rohan-tessl wants to merge 2 commits intoSimHacker:mainfrom
Open
feat: improve skill scores for 5 core MOOLLM skills#179rohan-tessl wants to merge 2 commits intoSimHacker:mainfrom
rohan-tessl wants to merge 2 commits intoSimHacker:mainfrom
Conversation
Fix frontmatter validation errors across adventure, cat, character, room, and abstract skills. All were scoring 0% due to allowed-tools array format and missing/invalid frontmatter. Changes: - Convert allowed-tools from YAML array to comma-separated string - Move non-standard frontmatter keys (tier, protocol, lineage, etc.) into metadata block - Add frontmatter to abstract skill (had none) - Trim room skill from 807 to 499 lines (was triggering length warning) - Expand descriptions with trigger terms and "Use when..." clauses | Skill | Before | After | Change | |-----------|--------|-------|--------| | adventure | 0% | 93% | +93% | | cat | 0% | 79% | +79% | | character | 0% | 79% | +79% | | room | 0% | 74% | +74% | | abstract | 0% | 63% | +63% |
Adds .github/workflows/skill-review.yml that runs tesslio/skill-review on PRs touching SKILL.md files. Posts one PR comment with scores and feedback using only GITHUB_TOKEN — no Tessl login needed for contributors. Non-blocking by default (fail-threshold: 0).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey @SimHacker 👋
I ran your skills through
tessl skill reviewat work and found some targeted improvements.Here's the full before/after:
All five skills were scoring 0% due to frontmatter validation errors — the
allowed-toolsfield was formatted as a YAML array instead of a comma-separated string, andabstracthad no frontmatter at all. This PR is intentionally capped at five skills to keep it reviewable; the included workflow (below) will surface Tessl feedback on futureSKILL.mdchanges across the rest of your 117-skill library.Changes summary
Frontmatter fixes (all 5 skills):
allowed-toolsfrom YAML array to comma-separated string (the formattessl skill reviewexpects)tier,protocol,lineage,inherits,related,tags,templates,origin) into ametadatablock to clear unknown-key warningsDescription improvements (all 5 skills):
Skill-specific changes:
---delimiters to proper name + description)Automated Skill Review Workflow
This PR also adds
.github/workflows/skill-review.yml— a GitHub Action that runs on PRs touchingSKILL.mdfiles:tesslio/skill-reviewdetects changedSKILL.mdfiles, runstessl skill reviewon each, and posts (or updates) one PR comment with scores and feedbackGITHUB_TOKENis used to post the commentfail-thresholdwith: fail-threshold: 70later if you want PRs to fail on low skill scoresSKILL.mdgets automatic review comments, so the rest of the library improves incrementallyHonest disclosure — I work at @tesslio where we build tooling around skills like these. Not a pitch - just saw room for improvement and wanted to contribute.
Want to self-improve your skills? Just point your agent (Claude Code, Codex, etc.) at this Tessl guide and ask it to optimize your skill. Ping me - @rohan-tessl - if you hit any snags.
Thanks in advance 🙏