code

Installation
SKILL.md

Code Workflow Pack

This umbrella skill is the model-invocable entry point for the pack and the single scoped /code command users see in the / menu. Each workflow also ships as its own code/skills/<name>/SKILL.md, but those per-command skills set disable-model-invocation: true, user-invocable: false, and metadata.internal: true, so they stay out of the model's auto-invocation, out of the / menu (no unscoped /<name> duplicates of the umbrella), and out of flat-list installers like the npx skills installer used by Codex. Reach any workflow through this umbrella — the subcommand router below maps /code <name> to the matching module. The workflow modules referenced below live beside this SKILL.md as flat support files.

Subcommand invocation

Invoke a workflow by passing its name as the first argument to this umbrella — this is the access path on every surface: the Claude / menu shows only /code (the per-command wrappers are hidden), and Codex has no : namespace. Both forms are equivalent and supported:

  • code <subcommand> <args> — e.g. code understand src/api
  • code --<subcommand> <args> — e.g. code --understand src/api

Parse $ARGUMENTS: take the first token, strip a leading -- if present, and match it (case-insensitive) against the workflow names below. On a match, load the sibling module ./<subcommand>.md and treat the remaining tokens as that workflow's input. Routing is complete when exactly one module is selected, loaded, and handed the remaining args. If the first token is not a known subcommand, treat the whole input as a natural-language request and route by intent. Known subcommands: prepare-pr, simplify, handoff, understand.

Before natural-language fallback, detect these removed exact subcommand tokens and return the migration guidance instead of silently changing side effects:

Installs
27
Repository
abpai/skills
First Seen
May 12, 2026
code — abpai/skills