maintaining-skills/tests/fixtures/sample-skills/skill-beta/SKILL.md
Another sample skill for testing. Use when the user wants to create widgets with advanced features or mentions beta testing.
npx skillsauth add juanjosegongi/skills skill-betaInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A sample skill that overlaps significantly with skill-alpha.
function createWidget(name: string) {
return { name, type: "basic" };
}
function createEnhancedWidget(name: string, features: Feature[]) {
return { name, type: "enhanced", features };
}
development
Guides Dockerfile creation and optimization. Use when Dockerfile or Docker Compose is detected. Supports multi-stage builds, cache optimization, security hardening, and image size minimization.
development
Provides comprehensive testing and TDD guidance. Use for writing tests before implementing new features (TDD, test-driven development, red-green-refactor), creating reproduction tests for bug fixes, running regression tests during refactoring, and checking test coverage during code reviews. Enforces AAA pattern, test-first workflow, and 100% business logic coverage goal. Also covers testing anti-patterns, mock discipline, and testable design.
data-ai
A completely different skill for database operations. Use when working with PostgreSQL queries, schema design, or database migrations.
testing
A sample skill for testing. Use when the user mentions alpha testing, widget creation, or component design patterns.