Overview
The@standardagents/skill package ships editable coding skills for Standard
Agents work. Each skill is authored in plain .md files so teams can review,
copy, and customize the guidance without changing a generated artifact.
The first bundled skill is agentbuilder, which helps coding agents decide
when to use:
defineModeldefinePromptdefineTooldefineAgentdefineHookdefineThreadEndpointdual_aisubagents
Installation
Recommended: CLI Install
- Codex: installs a skill folder into
$CODEX_HOME/skillsor~/.codex/skills - Claude Code: installs a user subagent into
~/.claude/agents/agentbuilder.md
--force to overwrite an existing installed copy:
--dir to choose a different install root:
Package Install
npm
pnpm
yarn
Package Layout
Helper API
Use the package API when you want to inspect or install the bundled skill from Node:Manual Editing
The skill content is intentionally stored as raw markdown. A common workflow is:.codex/skills/agentbuilder/SKILL.md
What The agentbuilder Skill Covers
- Choosing the right AgentBuilder primitive for a change
- Keeping prompt logic, tool logic, and orchestration concerns separate
- Knowing when subagents are warranted
- Mapping changes to the correct workspace files
- Applying the docs-and-tests checklist before landing behavior changes