Skip to content

javekk/Skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Skills

A personal collection of Claude Code skills for a senior engineer who wants to keep programming, not vibe-code.

The idea: write the code that's worth writing and learn from doing it, but hand the boring parts to the AI, and when you do hand them off, get code written the way you would write it. No slop, no black boxes. These skills push in that direction: learning modes, tight pairing modes, and handoffs that keep you (and the next model) in control.

Skills are reusable instructions Claude Code loads on demand. Each lives in its own folder under skills/ with a SKILL.md: frontmatter (name, description, and a metadata.category) plus the prompt body.

Available skills

Software engineering

Skill Description
tutor Learning mode for something new (language, framework, pattern): explain what's wrong and why, don't just fix it
concise Senior-engineer pairing mode: fast, direct, and token-frugal

Workflow

Skill Description
handoff Print a compact, self-contained handoff block so a fresh chat can resume without the transcript
token-usage Compute, visualise, and export Claude Code token usage and cost from local logs (via ccusage)

Installing a skill

Copy (or symlink) the skill folder into your Claude skills directory:

cp -r skills/concise ~/.claude/skills/
# or symlink to keep it in sync with this repo
ln -s "$PWD/skills/concise" ~/.claude/skills/concise

Then invoke it in Claude Code with /concise.

Categories are organisational only (stored in metadata.category). Claude Code discovers skills by folder name, so the flat skills/<name>/ layout installs without any nesting.

Adding a new skill

  1. Create skills/<name>/SKILL.md.
  2. Add frontmatter:
    ---
    name: <name>
    metadata:
      category: <software-engineering | workflow | ...>
    description: <one-line description>
    ---
  3. Write the prompt body below the frontmatter.
  4. Add a row under the matching category table above.

About

What I use to remain human in an AI world

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors