Skill

Build Better Software with AI Agents Using Engineering Skills

Reference vocabulary and principles for writing predictable skills - invocation choice, information hierarchy, leading words, and failure modes.

Works with githublinear

Maintainer of this project? Claim this page to edit the listing.


87
Spark score
out of 100
Updated 26 days ago
Version 1.0.1

Add to Favorites

Why it matters

Enable developers to build production-quality applications with AI coding agents by providing composable skills that enforce software engineering fundamentals, prevent common failure modes, and maintain code quality at scale.

Outcomes

What it gets done

01

Align agent understanding through grilling sessions that clarify requirements and build shared vocabulary before coding begins

02

Establish feedback loops with TDD workflows and debugging protocols that ensure code actually works

03

Maintain codebase architecture by documenting design decisions in ADRs and running regular architecture improvement sessions

04

Integrate with issue trackers to triage tickets, create PRDs, and manage development workflow systematically

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/ag-writing-great-skills | bash

Overview

Writing Great Skills

A reference vocabulary and set of principles - invocation cost, information hierarchy, completion criteria, leading words, pruning, failure modes - for writing skills that behave predictably. Use when writing or editing a skill to decide its invocation type, content placement, granularity, or to diagnose why it misbehaves.

What it does

Writing Great Skills is a reference for writing and editing skills well - the vocabulary and principles that make a skill predictable. Predictability - the agent taking the same process every run, not producing the same output - is treated as the root virtue that every other lever in the skill serves. All bold terms are defined in a companion GLOSSARY.md.

When to use - and when NOT to

Use it when writing a new skill or editing an existing one to make its behavior more reliable - choosing between model-invoked and user-invoked, deciding what belongs in the description versus the body, deciding when to split a skill, or diagnosing why an existing skill misbehaves. It is pure reference with no steps of its own to execute.

Inputs and outputs

It frames invocation as a tradeoff between two costs: a model-invoked skill keeps a description in context every turn (context load) so the agent or other skills can fire it autonomously, while a user-invoked skill (disable-model-invocation: true) strips that description from the agent's reach entirely, trading zero context load for cognitive load - the user must remember it exists, cured at scale by a router skill that names the others. A model-facing description should front-load the skill's leading word and list one trigger per branch, cutting synonym duplication and any identity already covered in the body. Content splits across an information hierarchy ranked by immediacy: in-skill steps (ordered actions in SKILL.md, each ending on a checkable, ideally exhaustive completion criterion), in-skill reference (definitions consulted on demand, often a flat peer-set), and external reference (pushed behind a context pointer into a linked file like GLOSSARY.md, loaded only when the pointer fires) - with co-location keeping a concept's definition, rules, and caveats under one heading regardless of where it sits.

- fast, deterministic, low-overhead -> tight
- a loop you believe in -> red

Integrations

Granularity governs when to split a skill: split by invocation when a distinct leading word or another skill's need justifies paying context load for a new always-loaded description, or split by sequence when steps still ahead would tempt the agent toward premature completion on the step in front of it. Pruning keeps each meaning in a single source of truth and runs a no-op test sentence by sentence, deleting whole sentences that fail rather than trimming words. Leading words - compact, pretrained concepts like tracer bullets or fog of war - anchor execution in the body and invocation in the description, and the skill pushes collapsing restated phrases ("fast, deterministic, low-overhead" into tight) into single tokens. A failure-modes section diagnoses premature completion, duplication, sediment (stale layers left because removing feels risky), sprawl (too much live, unique content with no disclosure), and no-ops (lines the model already obeys by default).

Who it's for

Skill authors and editors who want a shared vocabulary - invocation cost, information hierarchy, completion criteria, leading words, granularity, pruning - for making deliberate, reasoned tradeoffs about what a skill contains and where, instead of writing by instinct and accumulating sediment and sprawl over time.

Source README

When to Use

Use when this workflow matches the user request: Reference for writing and editing skills well - the vocabulary and principles that make a skill predictable.

_Source: mattpocock/skills (MIT)._A skill exists to wrangle determinism out of a stochastic system. Predictability - the agent taking the same process every run, not producing the same output - is the root virtue; every lever below serves it.

Bold terms are defined in GLOSSARY.md; look them up there for the full meaning.

Invocation

Two choices, trading different costs:

  • A model-invoked skill keeps a description, so the agent can fire it autonomously and other skills can reach it (you can still type its name too). It contributes to context load - the description sits in the window every turn. Mechanics: omit disable-model-invocation, and write a model-facing description with rich trigger phrasing ("Use when the user wants…, mentions…").
  • A user-invoked skill strips the description from the agent's reach: only you, typing its name, can invoke it - and no other skill can. Zero context load, but it spends cognitive load: you are the index that must remember it exists. Mechanics: set disable-model-invocation: true; the description becomes human-facing - a one-line summary, trigger lists stripped.

Pick model-invocation only when the agent must reach the skill on its own, or another skill must. If it only ever fires by hand, make it user-invoked and pay no context load.

When user-invoked skills multiply past what you can remember, that piled-up cognitive load is cured by a router skill: one user-invoked skill that names the others and when to reach for each.

Writing the description

A model-invoked description does two jobs - state what the skill is, and list the branches that should trigger it. Every word increases context load, so a description earns even harder pruning than the body:

  • Front-load the skill's leading word - the description is where it does its invocation work.
  • One trigger per branch. Synonyms that rename a single branch are duplication - "build features using TDD … asks for test-first development" is one branch written twice. Collapse them; keep only genuinely distinct branches.
  • Cut identity that's already in the body. Keep the description to triggers, plus any "when another skill needs…" reach clause.

Information hierarchy

A skill is built from two content types - steps and reference - that mix freely: a skill can be all steps, all reference, or both. The core decision is which to use and where each sits on the information hierarchy, a ladder ranked by how immediately the agent needs the material:

  1. In-skill step - an ordered action in SKILL.md, the primary tier: what the agent does, in order. Each step ends on a completion criterion, the condition that tells the agent the work is done. Make it checkable (can the agent tell done from not-done?) and, where it matters, exhaustive ("every modified model accounted for", not "produce a change list") - a vague criterion invites premature completion.
  2. In-skill reference - a definition, rule, or fact in SKILL.md, consulted on demand. Often a legitimately flat peer-set (every rule of a review on one rung) - a fine arrangement, not a smell. This skill is all reference.
  3. External reference - reference pushed out of SKILL.md into a separate file, reached by a context pointer, loaded only when the pointer fires. (Spans disclosed reference - a sibling file like GLOSSARY.md, still part of the skill - through fully external reference that lives outside the skill system and any skill can point at.)

A demanding completion criterion drives thorough legwork - the digging the agent does within the work - whether the skill has steps or not, since "every rule applied" binds flat reference just as "every step done" binds a sequence.

Push too little down and the top bloats; push too much and you hide material the agent actually needs. That tension is the whole decision.

Progressive disclosure is the move down the ladder - out of SKILL.md into a linked file - so the top stays legible. Mechanics: a linked .md file in the skill folder, named for what it holds (this skill discloses its full definitions to GLOSSARY.md). Some skills are used in more than one way, and each distinct way is a branch - different runs taking different paths through the skill. Branching is the cleanest disclosure test: inline what every branch needs, and push behind a pointer what only some branches reach. A context pointer's wording, not its target, decides when and how reliably the agent reaches the material.

Where the ladder decides how far down a piece sits, co-location decides what sits beside it once there: keep a concept's definition, rules, and caveats under one heading rather than scattered, so reading one part brings its neighbours with it.

When to split

Granularity is how finely you divide skills, and each cut spends one of the two loads, so split only when the cut earns it. Two cuts:

  • By invocation - split off a model-invoked skill when you have a distinct leading word that should trigger it on its own, or another skill must reach it. You pay context load for the new always-loaded description, so that independent reach has to be worth it.
  • By sequence - split a run of steps when the steps still ahead (a step's post-completion steps) tempt the agent to rush the one in front of it (premature completion). Keeping them out of view encourages the agent to do more legwork on the current task.

Pruning

Keep each meaning in a single source of truth: one authoritative place, so changing the behaviour is a one-place edit.

Check every line for relevance: does it still bear on what the skill does?

Then hunt no-ops sentence by sentence, not just line by line: run the no-op test on each sentence in isolation, and when one fails, delete the whole sentence rather than trim words from it. Be aggressive - most prose that fails should go, not be rewritten.

Leading words

A leading word is a compact concept already living in the model's pretraining that the agent thinks with while running the skill (e.g. lesson, fog of war, tracer bullets). Repeated throughout the text (though not necessarily - a strong leading word might only be needed once), it accumulates a distributed definition and anchors a whole region of behaviour in the fewest tokens, by recruiting priors the model already holds.

It serves predictability twice. In the body it anchors execution: the agent reaches for the same behaviour every time the word appears. In the description it anchors invocation: when the same word lives in your prompts, docs, and code, the agent links that shared language to the skill and fires it more reliably.

Hunt for opportunities to refactor skills to use leading words. A triad spelled out at three sites (duplication), a description spending a sentence to gesture at one idea - each is a passage begging to collapse into a single token. Examples include:

  • "fast, deterministic, low-overhead" -> tight - one quality restated across a phase - into a single pretrained word (a tight loop).
  • "a loop you believe in" -> red - converts a fuzzy gate into a binary observable state (the loop goes red on the bug, or it doesn't).

You win twice over: fewer tokens, and a sharper hook for the agent to hang its thinking on. Assume every skill is carrying restatements that leading words retire - go find them.

Failure modes

Use these to diagnose issues the user may be having with the skill.

  • Premature completion - ending a step before it's genuinely done, attention slipping to being done. Defence, in order: sharpen the completion criterion first (cheap, local); only if it is irreducibly fuzzy and you observe the rush, hide the post-completion steps by splitting (the sequence cut).
  • Duplication - the same meaning in more than one place. Costs maintenance and tokens, and inflates a meaning's prominence on the ladder past its real rank.
  • Sediment - stale layers that settle because adding feels safe and removing feels risky. The default fate of any skill without a pruning discipline.
  • Sprawl - a skill simply too long, even when every line is live and unique. Hurts readability and maintainability and wastes tokens. The cure is the ladder: disclose reference behind pointers, and split by branch or sequence so each path carries only what it needs.
  • No-op - a line the model already obeys by default, so you pay load to say nothing. The test: does it change behaviour versus the default? A weak leading word (be thorough when the agent is already thorough-ish) is a no-op; the fix is a stronger word (relentless), not a different technique.

Limitations

  • Requires the upstream tool, account, API key, or local setup when the workflow names one.
  • Does not authorize destructive, production, paid, or external-message actions without explicit user approval.
  • Validate generated artifacts or recommendations against the user's real sources before treating them as final.

FAQ

Common questions

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.