Skip to main content

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:
  • defineModel
  • definePrompt
  • defineTool
  • defineAgent
  • defineHook
  • defineThreadEndpoint
  • dual_ai subagents

Installation

This opens an interactive picker so you can choose the install target. Supported targets:
  • Codex: installs a skill folder into $CODEX_HOME/skills or ~/.codex/skills
  • Claude Code: installs a user subagent into ~/.claude/agents/agentbuilder.md
Use --force to overwrite an existing installed copy:
Use --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:
Then edit:
  • .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