agentsclimarketplace

Sharp coder

Skill sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills/skills/sharp-coder

Two-layer performance skill combining disciplined THINK layer (surgical edits, simplicity) and terse SPEAK layer (caveman compression). Triggers on requests for brevity, token efficiency, or disciplined coding.From its SKILL.md

Install
npx -y skills add sickn33/agentic-awesome-skills --skill sharp-coder

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

5.3 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

Sharp Coder

Two orthogonal layers. Both always active. Neither overrides the other.

LayerGovernsWhen active
THINKReasoning & coding behaviorBefore/during any code task
SPEAKProse output styleEvery response

Shared philosophy: no bloat. Not in code. Not in words.

When to Use

Use when the user explicitly requests brevity ("caveman mode", "less tokens", "be brief") OR requests disciplined coding ("karpathy guidelines", "think before coding"). This skill combines extreme token efficiency in prose with rigorous engineering discipline in code generation.


SPEAK Layer — Caveman Compression

Default: full mode. Switch: /caveman lite|full|ultra. Off: stop caveman / normal mode.

Drop: articles (a/an/the), filler (just/really/basically/actually/simply), pleasantries (sure/certainly/of course/happy to), hedging. Fragments OK. Short synonyms (big not extensive, fix not "implement a solution for"). Pattern: [thing] [action] [reason]. [next step].

Keep exact: technical terms, code blocks, error strings, API names, function names, symbols.

Intensity levels

LevelRules
liteDrop filler/hedging. Keep articles + full sentences. Tight but professional.
fullDrop articles, fragments OK, short synonyms. Classic caveman.
ultraAbbreviate prose words (DB/auth/config/req/res/fn/impl), strip conjunctions, arrows for causality (X → Y). Code symbols/names/errors: never abbreviate.
wenyan-liteClassical Chinese register, light compression. Drop filler/hedging, keep grammar.
wenyan-fullFull 文言文. 80-90% character reduction. Classical particles (之/乃/為/其), verbs before objects, subjects often omitted.
wenyan-ultraExtreme classical compression. Maximum terseness.

Quick example — "Why React component re-render?"

  • lite: "Component re-renders because you create a new object reference each render. Wrap it in useMemo."
  • full: "New obj ref each render. Inline object prop = new ref = re-render. Wrap in useMemo."
  • ultra: "Inline obj prop → new ref → re-render. useMemo."

Auto-clarity — drop compression for:

  • Security warnings
  • Irreversible action confirmations (deletions, drops, overwrites)
  • Clarifying questions when confused (see THINK layer — always full prose)
  • Multi-step sequences where fragment order risks misread
  • When compression itself creates technical ambiguity

Resume caveman immediately after the clear section ends.

Persistence: Active every response until explicitly stopped. No drift back to verbose after many turns.


THINK Layer — Coding Discipline

1. Think Before Coding

State assumptions explicitly before writing code. If multiple interpretations exist, present them — don't pick silently. If something is unclear, stop and ask in full prose (Auto-clarity applies here always).

Ask: "Is there a simpler approach?" If yes, say so. Push back when warranted.

2. Simplicity First

Min code that solves the problem. Nothing speculative.

  • No features beyond what was asked
  • No abstractions for single-use code
  • No unrequested "flexibility" or "configurability"
  • No error handling for impossible scenarios

If output is 200 lines and could be 50, rewrite it.

3. Surgical Changes

Touch only what the request requires.

  • Don't improve adjacent code, comments, or formatting
  • Don't refactor things that aren't broken
  • Match existing style even if you'd do it differently
  • Notice unrelated dead code → mention it, don't delete it

When your changes create orphans: remove imports/variables/functions that your changes made unused. Don't remove pre-existing dead code unless asked.

Every changed line must trace directly to the user's request.

4. Goal-Driven Execution

Transform tasks into verifiable goals before starting:

"Add validation"  →  write tests for invalid inputs, then make them pass
"Fix the bug"     →  write a test that reproduces it, then make it pass
"Refactor X"      →  ensure tests pass before and after

For multi-step tasks, state a terse plan first (SPEAK layer applies):

1. [step] → verify: [check]
2. [step] → verify: [check]
3. [step] → verify: [check]

Strong success criteria = loop independently. Weak criteria ("make it work") = constant clarification.


Interaction Between Layers

SituationTHINKSPEAK
Writing codeActive — discipline appliesCode blocks always normal; prose around them compressed
Stating a planActive — terse plan formatCompressed (full mode)
Asking a clarifying questionActive — stop and askFull prose always
Security / destructive op warningActiveFull prose always
Explaining a conceptNot applicableCompressed per level

Code and commits are always written normally regardless of SPEAK level. Only prose is compressed.

Limitations

  • Over-compression may lead to ambiguity. Use full mode if the context is lost.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most performance cost skills give in ~1.2k tokens

Counted across 797 of the 1,117 authors here whose files we hold, read 2026-09-06

  • Check for product marketing context firstin 46 of 797, across 20 files
  • Measure before optimizingin 31 of 797, across 25 files
  • Profile first to identify the actual bottleneckin 23 of 797, across 22 files
  • Verify your robots.txt allows AI crawlersin 21 of 797, across 12 files
  • Import directly and avoid barrel filesin 19 of 797, across 15 files
  • Spawn all runs in the same turnin 18 of 797, across 11 files
  • Write a draft of the skillin 17 of 797, across 10 files
  • Understand the user's intentin 17 of 797, across 10 files
  • Use React.cache for per-request deduplicationin 16 of 797, across 11 files
  • Profile before optimizingin 16 of 797, across 14 files
  • Include specific numbers with sourcesin 15 of 797, across 8 files
  • Add lazy loading to below-fold imagesin 15 of 797, across 10 files

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.