Skill Entry Point Present
Each skill file must reference or contain a SKILL.md entry point. The entry point is the standard discovery mechanism that agents use to find and invoke skills.
Antipatterns
- Naming the skill entry point
README.mdorindex.mdinstead ofSKILL.md. The check looks for the specific tokenSKILL.mdin the file content. - Creating a skill directory with workflow files but no
SKILL.mdreference. Without the entry point token, the skill is not discoverable. - Referencing a different filename like
skill.md(lowercase). The check matches the exact tokenSKILL.md.
Pass / Fail
Pass
# Check Skill
Entry point: SKILL.md
## Process
1. Run `uv run ails check .`
2. Report results.
Fail
# Check Skill
## Process
1. Run the linter.
2. Report results.
Limitations
Checks for a named token matching "SKILL.md" in the content. Does not verify the SKILL.md file actually exists at the referenced path.
