Content
57%Weight 40%Scale 1-5Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
The body is a thorough, code-rich reference with a clear setup sequence, but it is monolithic: plugin and framework-specific material that belongs in separate reference files is inlined, setup steps lack validation checkpoints for destructive database operations, and there is some redundancy with the description.
Suggestions
Split plugin details, framework-specific handler guides, and advanced configuration into separate reference files under ./references/ and link to them from SKILL.md to improve progressive disclosure.
Add explicit validation checkpoints to the setup workflow (e.g., after 'npx @better-auth/cli generate/migrate', verify the schema was applied and the /api/auth/* route responds) so destructive database operations have a validate-then-proceed feedback loop.
Remove feature/framework lists that duplicate the frontmatter description and trim introductory prose about what authentication is, tightening conciseness without losing actionable code.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | The ~700-line body is mostly efficient code/config, but repeats framework lists and feature enumerations already covered in the frontmatter description, and includes some explanatory prose Claude already knows; it could be tightened without losing value. | 3 / 5 |
Actionability | Provides extensive executable code and concrete commands (npm install, npx @better-auth/cli generate, framework-specific handlers) across common cases, but several examples contain placeholders ('// Database configuration', undefined sendEmail) that prevent fully copy-paste readiness. | 4 / 5 |
Workflow Clarity | A clear Step 1-7 setup sequence and an implementation checklist exist, but database migration/generation steps lack explicit validation checkpoints, and the destructive/batch database operations have no validate-then-proceed feedback loop, capping the score at 3 per the rubric. | 3 / 5 |
Progressive Disclosure | Section headers give the body reasonable structure, but no bundle files exist and content that clearly belongs in separate references (per-plugin guides, framework-specific guides, advanced config) is all inlined into a single monolithic SKILL.md rather than split with signaled one-level-deep references. | 3 / 5 |
Total | 13 / 20 Passed |