thebeardedbearsas/claude-craft

kiss-dry-yagni

Principes KISS, DRY, YAGNI. Use when reviewing code quality or refactoring.

First seen Jan 30, 2026

Installation

$ npx skills add thebeardedbearsas/claude-craft --skill kiss-dry-yagni

Also in this package

Other skills from thebeardedbearsas/claude-craft · top by installs.

npx skills add thebeardedbearsas/claude-craft

Browse all from thebeardedbearsas/claude-craft

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 105
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 583 B
  • docs SUMMARY.md 113 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 253 installs

SKILL.md

Principes KISS, DRY, YAGNI

This skill provides simplicity and code quality guidelines.

See @REFERENCE.md for detailed documentation.

Quick Reference

  • KISS: Methods < 20 lines, complexity < 10, indent < 3 levels
  • DRY: Abstract after 3 occurrences, single source of truth
  • YAGNI: Only build what's explicitly required NOW
  • Early returns: Prefer guard clauses over nested else
  • Composition: Prefer over inheritance