Audit existing skills with Tessl scoring, metadata and trigger-coverage checks, repo conventions, and skill-authoring best practices. Use when creating or revising a skill, triaging weak self-activation, or comparing a skill against source-repo guidance such as `AGENTS.md`, `CLAUDE.md`, or repo rules, plus external skill guidance. Do not use to verify general application code or to rewrite unrelated docs.
97
98%
Does it follow best practices?
Impact
97%
1.05xAverage score across 3 eval scenarios
Advisory
Suggest reviewing before use
A DevOps team built a release-coordinator skill several months ago when they were still figuring out their workflow. The skill file has grown considerably since then: it contains a large inline scoring rubric, four worked examples, a step-by-step checklist that duplicates a shell script already in the repo, and a wall of prose in the frontmatter beyond the usual fields. The team suspects this is hurting performance because the model spends too long parsing the file before it understands what to do.
They want you to audit the skill's structure — specifically whether the right content is in the right place — and then restructure it so it follows sound information-architecture principles. After restructuring, they want Tessl run again so they can measure the improvement. Produce a before-and-after comparison and a written explanation of every structural change you made and why.
Produce the following files:
audit-report.md — covering the initial Tessl score, structural findings, every change made with a reason, the post-edit Tessl score, and a summary of what improvedaudit-log.sh — shell commands run during the audit in execution order (Tessl invocations, file reads, etc.)skills/release-coordinator/SKILL.md reflecting the restructured skillskills/release-coordinator/references/ or skills/release-coordinator/scripts/ as part of the restructureThe following files are provided as inputs. Extract them before beginning.
This skill helps coordinate software releases. It is used by the devops team. It should not be used for hotfixes or rollbacks — those go to the incident-responder skill.
Rate the release readiness on a scale of 1-5:
Input: "We need to ship v2.3 of the web app by Friday." Steps taken:
Input: "iOS build ready, need to coordinate App Store submission." Steps taken:
Input: "Bump the public API from v1 to v2." Steps taken:
Input: "Ship the schema migration for the orders table." Steps taken:
./scripts/do-release.sh <version>=============== FILE: skills/release-coordinator/scripts/do-release.sh =============== #!/bin/bash
VERSION=$1 echo "Checking blockers..." echo "Verifying artifacts..." echo "Updating changelog..." echo "Notifying stakeholders..." echo "Documenting rollback..." echo "Running release for $VERSION..." echo "Monitoring logs..." echo "Confirming health check..." echo "Updating tracker..." echo "Sending summary..." echo "Release $VERSION complete."