The moment you notice you are re-explaining the same judgment call, it is time to extract. That is the basic rule. Not “I have these skills” but “this particular decision keeps coming back, and re-explaining it every session is a Wiederholungstäter—a repeat offender.”
Skills are not decorative prompt fragments. They are the reusable unit of Handwerk—craftsmanship—that captures judgment, workflow, and environment knowledge which keeps showing up in real work.
The template includes a documentation skill as a starting point. Download it, open it in your coding tool, and start building your own skills.
Get StartedThe Skill Rule
The point is not to have many skills.
The point is to capture repeated patterns like:
- how implementation should be reviewed
- how UI work should be judged
- how documentation should be structured
- how change notes should start for normal humans
- how local tools or APIs should be used safely
The Core Coding Skills
Some skills are generic enough to share. Others are tightly bound to your repos, your branching model, or your internal infrastructure. The core layer in my setup includes things like:
- implementation orchestration
- architecture review
- change notes
- documentation writing
- UI development guardrails
Some of those are clean public starters already. Some are still too entangled with my local setup and need cleanup before they should be shared.
Documentation Is A Coding Skill Too
That is why doc-write lives in this layer for me.
Documentation is part of development:
- READMEs
- setup guides
- reference docs
- internal notes
- prompt and context files
Good engineering communication needs structure just as much as code needs structure. Docs are not a side quest after the real work is done — they are engineering output. If the model keeps producing fuzzy READMEs or hard-to-scan reference pages, the fix is not “write better prose.” The fix is a skill that encodes what good structure looks like.
Tool And Environment Helpers
These are the least glamorous skills, but often the most useful.
Examples from my stack:
- how to pull logs from Grafana Loki
- how to inspect Kubernetes
- how to run GraphQL queries against our API
- how to generate or retrieve a token from locally available secrets
Those are exactly the kinds of things I do not want to explain manually over and over again.
They are not public because they depend on my environment. But the pattern is very reusable.
What Others Do
Anthropic made skills a first-class concept
Anthropic’s Claude Code skills system is now an explicit product surface, not just community folklore. Skills are discoverable, on-demand instruction bundles. That validates the general approach, even if Keeper Runtime pushes the layering further. Source: Claude Code Skills.
OpenAI pushes explicit execution contracts
OpenAI’s GPT-5.4 guidance is not about “be smarter.” It is about explicit structure: output contracts, dependency checks, tool persistence, completeness accounting, and verification loops. That maps directly to the coding-skill layer and is one reason the provider overlays are worth keeping (full source linked on the root page and in the work-mode deep dive).
Community practice keeps converging on modular skill bundles
Across the field, teams are increasingly packaging engineering standards, debugging heuristics, and review expectations as reusable prompt modules instead of re-explaining them in every task. That is the same pressure I feel locally: once a pattern repeats, it wants a durable home.
Download
If you want the public starter files one by one instead of the full bundle, start here:
Deep Dives
Defining Your AI Partner
How to define the partner itself: identity, user context, people around you, and tone of voice.
Defining Your Work Mode
How to define the global contracts that shape how your AI partner works, decides, checks, and ships.
Research Skills: Brave Search and Beyond
How I separate narrow retrieval from structured synthesis, and why research needs to cover everything from one quick fact to a full deep-dive artifact.
Coding Skills: Making Repeated Work Reusable
How I turn repeated engineering guidance into reusable skills: core coding workflows, documentation writing, UI guardrails, and local tool helpers.
Deployment & Management: Git as the Source of Truth
One source repository. One deploy script. Every AI tool on every machine gets the same core context, with provider-specific overlays where needed.
Getting Started: From Download to Working Runtime
Two paths to your own AI runtime — the fast track for experienced users, and a guided walkthrough for everyone else.