An opinionated library of reusable agent skills.
The pack is built to work well with Claude-compatible skill loading, but most of the content is deliberately plain Markdown and easy to adapt to other prompt-driven agents. Each folder is a self-contained skill, so you can browse the pack like a catalog instead of reading a giant manual.
- Practical skills for writing, planning, triage, architecture, and workspace workflows
- One
SKILL.mdentry point per skill folder - Supporting docs where a skill needs examples, formats, or deeper guidance
- A structure that works directly with Claude and can usually be adapted to other agents with light changes
| Area | Example skills | What they help with |
|---|---|---|
| Writing & messaging | writing-humanize, writing-tone-check, writing-apology-calibrator, writing-social-script |
Composing long-form text, calibrating outgoing messages, scripting awkward conversations |
| Analysis | break-it-down, codebase-explain, issue-triage |
Making sense of a codebase, decoding incoming messages, diagnosing bugs faster |
| Collaboration | clarity-council, grill-me, grill-with-docs |
Getting sharper decisions through structured discussion |
| Planning | sprint-plan, sprint-review, daily-briefing |
Organizing work, progress, and reporting |
| Focus & state | task-initiation, hyperfocus-recovery, idea-decision-maker, energy-budget, meeting-decompression |
Defeating stalls, recovering context, calibrating load — built with ND-friendly defaults |
| Workspace tools | obsidian-vault, obsidian-markdown, obsidian-canvas |
Managing notes, structure, and visual knowledge maps |
For Claude, clone this repository into your skills directory:
git clone git@github.com:risadams/skills.git "$HOME/.claude/skills"That’s it. Once the repo is in place, Claude can discover the skills directly from the folder structure.
If you are using another agent, the same folder layout is still useful, but the install location and invocation rules may differ.
After cloning, you should see paths like these:
$HOME/.claude/skills/writing-humanize/SKILL.md$HOME/.claude/skills/clarity-council/SKILL.md$HOME/.claude/skills/codebase-explain/SKILL.md
There is no separate run command.
In Claude, skills are triggered in chat by asking for the behavior you want. A few examples:
- Use
writing-humanizeon this paragraph. - Use
codebase-explainfor this module. - Triage
PROJ-1234. - Run a
clarity-councilon this design.
In other agents, the same prompts often still work, but you may need to wire the skill files into that agent's own prompt, skill, or tool-loading system.
This pack is Claude-compatible first, but it is not Claude-only.
Most skills in this repo are prompt assets with a stable folder structure, so they usually port cleanly to other agents. In practice, you may need to adjust:
- Install location, because other agents may not read from
.claude/skills - Frontmatter fields, if another agent expects different metadata keys
- Tool names or allowed-tool lists, if the target agent exposes a different tool model
- Invocation patterns, if the target agent uses commands, slash prompts, or manifests instead of folder discovery
If an agent can read Markdown prompt files and route on instructions, the content itself usually needs little or no rewriting. The main work is usually integration, not rewriting the skill.
The full inventory lives in CLAUDE.md. That file is the source of truth for the skill list and descriptions, which keeps this README short and prevents drift.
- v1.1 (2026-05-19)
- New
writing-*siblings for outgoing messages:writing-tone-check,writing-apology-calibrator,writing-rejection-sensitivity-check,writing-social-script,writing-cold-open - New Focus & state skills:
task-initiation,hyperfocus-recovery,time-reality-check,idea-decision-maker(renamed fromdecision-breaker),energy-budget,interest-capture,meeting-decompression
- New
- v1.0 (2026-05-18)
- Initial public release of the skills pack
This is an unsupported personal project. Fork freely, but no PRs are accepted.
For project conventions, naming schemes, and layout rules, see CONTRIBUTING.md.