Skill Development Kit

A skill is not a prompt. It is a repeatable operating surface.

Most agent work still lives as one-off prompt craft. Chopshopr is pushing the pattern into something sturdier: packaged skills with instructions, tools, references, evals, and proof receipts.

Opinions A skill is not a prompt. It is a repeatable operating surface.
Join newsletter

The Skill Development Kit idea is simple: give an agent the same kind of operating surface a serious engineer would want. Not a giant context dump. Not a clever prompt. A package that says when to activate, what to load, which scripts to run, what evidence to produce, and where the boundaries are.

The core rule:

If a skill cannot be verified, routed, and replayed, it is still just advice.

What a useful skill package contains

A skill should carry enough structure for a new agent to do the right thing without reading the whole repository. The package shape we use has six parts.

  1. Activation rules. The frontmatter and first screen say when the skill should be used, when it should stay dormant, and which narrower skill should take over when the task becomes specific.
  2. Progressive disclosure. The top-level file stays short. References, schemas, examples, and assets live nearby, but the agent loads only the pieces the current job needs.
  3. Executable scripts. Repeated work becomes a command: validate, doctor, generate, audit, render, inspect, or package. Scripts beat prose when the failure mode repeats.
  4. Bounded tool contracts. MCP tools and CLI entrypoints are named for the work they are allowed to do. Runtime calls, operator controls, and host operations stay separate.
  5. Behavioral evals. A skill needs activation scenarios and artifact expectations. The question is not whether the instructions sound good; it is whether the agent behaves correctly when the task is ambiguous.
  6. Receipts. Generated artifacts, hashes, smoke tests, screenshots, and audit reports make the output inspectable by another person or another agent.

Patterns we are applying

The useful patterns are not glamorous. They are the small constraints that stop agent work from turning into memory theater.

01

Route before doing.

Pick the right surface first: local inference, host operations, public site, generated artifact, or review workflow. A wrong surface creates noisy tools and weak evidence.

02

Keep the skill small, keep the package rich.

The entry file should orient the agent fast. The depth belongs in references, resources, scripts, assets, and evals that can be loaded only when needed.

03

Turn best practices into gates.

"Do careful work" is not a workflow. A gate like `doctor`, `audit`, or `skill-check` gives the agent a concrete stop sign and a repair path.

04

Make outputs reviewable.

The best skill output is not only a final answer. It is a review packet: what changed, what was verified, what evidence backs the claim, and what remains risky.

What many teams miss

Many teams stop at prompt libraries. That helps for style and recall, but it does not create a dependable operating system for agents. The missing pieces are usually the same.

  • They put entire manuals into context instead of using progressive disclosure.
  • They write guidance but skip scripts that prove the guidance was followed.
  • They let agents call broad tools instead of bounded tools with explicit scope.
  • They describe desired behavior but do not add activation evals.
  • They ship artifacts without receipts another reviewer can replay.

The Skill Development Kit checklist

Before a skill is worth sharing, it should pass a simple review.

  • Can a new agent tell when to use it in under a minute?
  • Does it say what not to do?
  • Are long references separated from the activation instructions?
  • Is there at least one command that validates or audits the work?
  • Are generated artifacts and expected outputs named explicitly?
  • Can another reviewer replay the claim without trusting the chat transcript?

Why Chopshopr cares

Chopshopr is about making GPT tangible. Skills are how the tangible work becomes reusable. A good skill lets an agent move from intent to artifact with a known route, a bounded tool surface, and proof that survives the session.

That is the pattern we want more teams to copy: stop treating agent capability as prompt polish, and start treating it as a small software package with tests, references, tools, and receipts.