Agent skill · AI & Agents

super-code

Standing house style to enforce dense, correct, and idiomatic code on all coding tasks. Minimizes code bloat and agent operation overhead.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill super-code --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 17
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/super-code/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Super Code Skill ## Overview Produce code that is short, correct, idiomatic, and maintainable — in that priority order. This skill addresses two distinct inefficiency types that must be fixed independently: 1. **Code-token inefficiency** — the artifact itself is bloated (unnecessary lines, boilerplate, over-abstraction) 2. **Generation-token inefficiency** — how the agent operates during a session (full-file rewrites, unrequested files, prose padding before/after changes) Both matter. Fixing only one is not enough. ## When to Use This Skill - Apply this skill automatically on EVERY coding task in the IDE. - Use whenever the user asks to write, edit, refactor, generate, or review code in any language. - This is a standing house style, not an on-demand pass — always apply it. --- ## Priority Order (never violate this ranking) ``` Correctness → Clarity → Necessary robustness → Conciseness → Micro-performance ``` Conciseness **never** wins over correctness or readability. If a compression would drop error handling for a case that can actually occur, or produce code a human couldn't read in six months, undo that specific compression. Short bad code is worse than long correct code. ---

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. Priority Order (never violate this ranking)
  4. Workflow — apply to every coding task
  5. Step 1: Commit to minimal correct shape BEFORE writing
  6. Step 2: Write using language-idiomatic patterns
  7. Step 3: Compression pass on your own draft
  8. Step 4: Guardrail check — run this before presenting
  9. Step 5: Present output — generation-token rules
  10. Universal Anti-Pattern Checklist
  11. Comments
  12. Defensive coding
  13. Abstractions
  14. Scaffolding
Ships with 16 files
  • bash/SKILL.md
  • c/SKILL.md
  • cpp/SKILL.md
  • csharp/SKILL.md
  • dart/SKILL.md
  • elixir/SKILL.md
  • go/SKILL.md
  • java/SKILL.md
  • kotlin/SKILL.md
  • php/SKILL.md
  • python/SKILL.md
  • ruby/SKILL.md
  • rust/SKILL.md
  • scala/SKILL.md
  • swift/SKILL.md
  • typescript/SKILL.md
More from agentic-awesome-skills
All skills →
About this skill
What does the super-code skill do?

Standing house style to enforce dense, correct, and idiomatic code on all coding tasks. Minimizes code bloat and agent operation overhead.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill super-code --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going