🎯

micro-polish

🎯Skill

from justingoertz/micro-polish-skill

VibeIndex|
What it does

Applies subtle, incremental improvements to code, enhancing readability, consistency, and overall code quality through targeted micro-refinements.

micro-polish

Installation

git cloneClone repository
git clone https://github.com/justingoertz/craft-skills.git ~/craft-skills
πŸ“– Extracted from docs: justingoertz/micro-polish-skill
0
-
Last UpdatedJan 20, 2026

Skill Details

SKILL.md

Overview

# Craft Skills

Skills for [Claude Code](https://github.com/anthropics/claude-code) that help build taste in software work.

Skills

| Skill | Description |

|-------|-------------|

| [micro-polish](skills/micro-polish/SKILL.md) | Apply invisible refinements that compound into felt quality |

Installation

Quick install (symlink)

```bash

# Clone the repo

git clone https://github.com/justingoertz/craft-skills.git ~/craft-skills

# Create the Claude skills directory if it doesn't exist

mkdir -p ~/.claude/skills

# Symlink skills you want to use

ln -s ~/craft-skills/skills/micro-polish ~/.claude/skills/micro-polish

```

Manual install (copy)

Copy individual skill folders to ~/.claude/skills/:

```bash

cp -r ~/craft-skills/skills/micro-polish ~/.claude/skills/

```

Verify installation

```bash

ls ~/.claude/skills/

# Should show: micro-polish

```

Usage

Once installed, skills are available in Claude Code:

```

/micro-polish # Apply micro-refinement sensibility to current work

/micro-polish # Review a specific file for polish opportunities

```

Adding new skills

Each skill lives in its own directory under skills/:

```

skills/

└── your-skill/

└── SKILL.md

```

Skill file format

```markdown

---

name: your-skill

description: One-line description of what it does

---

# Skill Name

Longer explanation of the skill's purpose and philosophy.

How to use

  • /your-skill

What happens when invoked without arguments.

  • /your-skill

What happens with arguments.

Process

The actual guidance, patterns, or workflow the skill provides.

```

Guidelines for new skills

  • Opinionated over comprehensive β€” Have a point of view. Don't document every option.
  • Patterns over rules β€” Guide intuition, not checklists
  • Concrete over abstract β€” Show specific examples
  • Trust the agent β€” Starting points, not constraints

Philosophy

Develop taste, not compliance. The patterns should eventually disappear into instinct.

License

MIT