From claude-resources
Code quality principles. Use when setting conventions, configuring linters, or doing style-focused reviews. Pair with language-specific style skill for naming and formatting rules.
npx claudepluginhub deandum/claude-resources --plugin go-skillsThis skill uses the workspace's default tool permissions.
Clear is better than clever. Every line should be immediately understandable.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
Clear is better than clever. Every line should be immediately understandable.
<lang>/style skill for language-specific conventions)users not userSliceutil, common, helpers, miscIs, Has, Can prefixesi, r, w)ctx, db, cfg)userRepository, orderService)| Shortcut | Reality |
|---|---|
| "My style is fine" | Consistency beats preference. Use the standard formatter. |
| "Comments are obvious" | Exported names need doc comments. WHY is rarely obvious. |
| "Short names are cryptic" | Short for narrow scopes, descriptive for wide. Both correct in context. |
| "We might need this abstraction" | Three concrete uses before abstracting. YAGNI until proven otherwise. |