micro-polish-skill

内容来源:README.md(说明文档) · 原始地址 · 查看安装指南

原始内容

Craft Skills

Skills for Claude Code that help build taste in software work.

Skills

Skill Description
micro-polish Apply invisible refinements that compound into felt quality

Installation

Quick install (symlink)

# 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/:

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

Verify installation

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 <file>   # 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

---
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 <args>`
  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