A personal, growing library of Claude Code skills I use often. Public in case it's useful to someone else — install via skills.sh or the skills CLI, use anything here however you like.
skills/
├── skills/
│ ├── universal/ # language-agnostic skills
│ │ ├── atomic-commits/ # SKILL.md — split changes into logical commits, Conventional Commits format
│ │ └── git-safe-rename/ # SKILL.md — enforce `git mv` for renames/moves, preserve history
│ └── writing/ # language-specific skills, one folder per language
│ ├── en/
│ │ ├── dead-prose/ # SKILL.md — rewrite English text as flat, factual "dead prose" (Google docs style)
│ │ └── humanize-text/ # SKILL.md — remove AI-isms from English text, keep voice and facts
│ └── pt-BR/
│ ├── humanizar-texto/ # SKILL.md — remove IAísmos de textos em pt-BR, preserva voz e fatos
│ └── prosa-plana/ # SKILL.md — reescreve textos em pt-BR como prosa plana e factual (estilo Google docs)
├── .github/workflows/ # release-skills.yml — publishes one zip per skill on every push
└── AGENTS.md # philosophy, conventions, how to contribute (humans + AI agents)
Install all skills:
npx skills add sergiooak/skills
Or install one:
npx skills add sergiooak/skills --skill atomic-commits
npx skills add sergiooak/skills --skill git-safe-rename
npx skills add sergiooak/skills --skill dead-prose
npx skills add sergiooak/skills --skill humanize-text
npx skills add sergiooak/skills --skill humanizar-texto
npx skills add sergiooak/skills --skill prosa-plana
Universal (language-agnostic):
atomic-commits— splits working-tree changes into multiple logical, atomic commits (never one giant commit), grouped by feature/topic, then writes each message following Conventional Commits rules.git-safe-rename— forcesgit mvinstead of OS-level move/rename on tracked files, so Git history follows the file.
Writing — English:
dead-prose— rewrites English text into plain, factual "dead prose" in Google developer-docs style (no narrative framing, aphorisms, metaphors, or hype), preserving every fact and technical term.humanize-text— reviews English text to remove AI-isms, corporate filler, and formulaic patterns while preserving meaning, facts, and voice.
Writing — Brazilian Portuguese:
humanizar-texto— revisa textos em português brasileiro para remover IAísmos, burocratês e fórmulas repetitivas, preservando sentido, fatos e voz.prosa-plana— rewrites Brazilian Portuguese text into plain, factual prose in Google developer-docs style (no narrative framing, aphorisms, or hype), preserving every fact and technical term.
Every push that touches skills/ publishes a release with one zip per skill, ready for manual upload on claude.ai (Settings → Capabilities → Skills → Upload skill).
For the reasoning behind the structure and how to add new skills, see AGENTS.md.
MIT — see LICENSE.