Skip to main content
Version: 0.1.11

Available agent skills (agent kit)

The X07 toolchain ships an optional “skills pack” for coding agents. Skills are project playbooks: they encode canonical workflows, command invocations, and recovery steps so agents can keep going without guessing.

Install

If you ran x07 init, the skills pack is made available under .agent/skills/ (linked to the installed toolchain when available).

To install the skills pack with x07up:

  • user-scoped (recommended for a workstation): x07up skills install --user
  • project-scoped (recommended for CI/containers): x07up skills install --project .

Verify installation:

  • x07up skills status --json

Skills included

All skills live under .agent/skills/<skill-name>/SKILL.md.

SkillPurpose
x07-agent-playbookCanonical agent workflow (fmt/lint/fix/patch/run/test) + design rails
x07-language-guideLanguage + stdlib reference workflow (x07 guide, x07 doc)
x07-runCanonical execution front door (x07 run) + profiles
x07-bundleBuild distributable native executables (x07 bundle)
x07-lint-repairDiagnostics + quickfix + patch workflows (x07 lint, x07 fix, x07 ast apply-patch)
x07-formatFormatting workflows (x07 fmt)
x07-packageDependency + lockfile workflows (x07 pkg ...)
x07-testTest harness workflows (x07 test ...)
x07-os-runOS runner workflows (x07-os-runner) (advanced)
x07-ffi-cOS-world embedding via C (x07 build --emit-c-header) (advanced)
x07-io-streamsStreaming I/O patterns (std.io, std.io.bufread)
x07-concurrencyAsync patterns (defasync, task.*, chan.bytes.*)