Best for
- Use when creating, shipping, or customizing an output style for a session; defining the response shape an agent, command, or team worker must produce; standardizing worker reports so a team lead can parse them; or decid…
vinnie357/claude-skills/plugins/tools/claude-code/skills/claude-output-styles/SKILL.md
Guide for creating Claude Code output styles and reusable response-format contracts. Use when creating, shipping, or customizing an output style for a session; defining the response shape an agent, command, or team worker must produce; standardizing worker reports so a team lead can parse them; or deciding between an output style, a skill, and a CLAUDE.md entry.
Decision brief
Guide for the native Claude Code output style feature and for applying the same response-contract pattern to agents, slash commands, teams, and skills.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Declared | Source record | Install path and trigger |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/vinnie357/claude-skills --skill "plugins/tools/claude-code/skills/claude-output-styles"Inspect the Agent Skill "claude-output-styles" from https://github.com/vinnie357/claude-skills/blob/258ac739a89d44fc78ad40e5724eb0526ff11d75/plugins/tools/claude-code/skills/claude-output-styles/SKILL.md at commit 258ac739a89d44fc78ad40e5724eb0526ff11d75. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
You are an interactive CLI tool that helps users with [domain].
Output styles add to the input token count via system prompt expansion, but prompt caching amortizes this after the first request per session
1. The Claude Code feature: a session-level system prompt modification selected via /config, shipped as Markdown files, optionally bundled in plugins. 2. The pattern: a reusable response-format contract authored once and referenced from agents, commands, teams, or skills when co…
Output styles modify Claude Code's system prompt at session start. They can:
Output styles modify Claude Code's system prompt at session start. They can:
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 95/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 24 | Source | Repository attention, not individual Skill quality |
| Compatibility | 1 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Guide for the native Claude Code output style feature and for applying the same response-contract pattern to agents, slash commands, teams, and skills.
/config, shipped as Markdown files, optionally bundled in plugins.The feature affects the main agent loop only. The pattern is portable to anywhere a system prompt or instruction block is authored.
Output styles modify Claude Code's system prompt at session start. They can:
keep-coding-instructionsOutput styles are always active once selected, for the whole session. They are set at session start — changes take effect next session so prompt caching stays stable.
| Style | Behavior |
|---|---|
| Default | Standard software-engineering system prompt |
| Proactive | Executes immediately, makes reasonable assumptions instead of pausing for routine decisions, and prefers action over planning — stronger autonomous-execution guidance than auto mode, applied without changing the permission mode |
| Concise | Leads with the result, skips preamble and narration, keeps responses short by default, while doing the engineering work as thoroughly as Default; error reports, security warnings, and destructive-action confirmations stay in full. Requires Claude Code v2.1.237+ |
| Explanatory | Adds educational "Insights" during task completion |
| Learning | Collaborative mode — Claude inserts TODO(human) markers for the user to fill in |
---
name: My Custom Style
description: A brief description shown in the /config picker
keep-coding-instructions: false
---
# Custom Style Instructions
You are an interactive CLI tool that helps users with [domain].
## Specific Behaviors
- Respond in [tone]
- Structure output as [format]
- When [condition], do [action]
| Field | Purpose | Default |
|---|---|---|
name | Display name (inherits from filename if omitted) | filename |
description | Shown in /config picker | none |
keep-coding-instructions | Retain Claude Code's coding-specific system prompt sections | false |
force-for-plugin | Plugin output styles only: apply this style automatically whenever the plugin is enabled, without the user selecting it. Overrides the user's outputStyle setting. If multiple enabled plugins set this, Claude Code uses the first one loaded. | false |
Set keep-coding-instructions: true when the custom style augments coding behavior rather than replacing it.
| Scope | Path |
|---|---|
| User-level | ~/.claude/output-styles/ |
| Project-level | .claude/output-styles/ |
| Managed policy | .claude/output-styles/ inside the managed settings directory |
| Plugin-shipped | <plugin-root>/output-styles/ |
Project-level resolution is not one flat path — it loads from every .claude/output-styles/ between the working directory and the repository root. When more than one of these nested directories defines a style with the same name, Claude Code uses the one closest to the working directory.
/config → Output style → pick from menuoutputStyle in .claude/settings.local.json:{
"outputStyle": "Explanatory"
}
Selection is written to .claude/settings.local.json at the local project level.
Place style files under <plugin-root>/output-styles/. They are discovered when the plugin is installed and appear alongside built-in and user styles in /config.
my-plugin/
├── .claude-plugin/
│ └── plugin.json
├── skills/
└── output-styles/
├── terse-reviewer.md
└── verbose-tutor.md
No additional plugin.json field is required — the output-styles/ directory is discovered by convention.
The shape of an output style — a set of instructions controlling response format, tone, and structure — is portable. You can apply the same pattern anywhere a system prompt or instruction block is authored.
The session-level output style modifies the main agent loop's system prompt. It does not propagate to:
Agent toolIf you need a subagent to produce output in a specific shape, encode the contract in the agent's own definition or reference a shared contract file.
Exception: forks. A fork (Agent tool with subagent_type: "fork") is not an independent subagent — it's a continuation of the same conversation, so it inherits the parent's full system prompt, output style included. Regular subagents (any other subagent_type) still do not inherit it.
| Target | Where the contract goes |
|---|---|
Agent (.claude/agents/<name>.md) | Body of the agent markdown, under a ## Response Format heading |
Slash command (.claude/commands/<name>.md) | Body of the command markdown |
| Team worker | Prompt template passed to the worker when spawned |
| Skill | Dedicated section in SKILL.md, or a referenced file in assets/ |
| Plugin-wide | Shared file in assets/contracts/ that components link to |
When a team lead spawns multiple workers and must parse their results, inconsistent output shapes force the lead to write bespoke parsing for each worker. A shared contract lets the lead:
PR_URL, STATUS) with one parserA contract specifies:
Use imperative language. Example contract body:
Respond using exactly these sections, in this order:
## SUMMARY
One sentence describing what was done. No preamble.
## EVIDENCE
Verbatim output from `mise run ci`. Paste the tail if too long,
marked with `[truncated]`.
## STATUS
One of: `passed` | `failed` | `blocked`.
## NEXT
One sentence — what the team lead should do with this report.
Do not add sections. Do not summarize at the end.
From an agent definition:
---
name: ci-validator
description: Runs mise run ci and returns a structured report
---
# CI Validator
Run `mise run ci`. Report using the contract in
`assets/contracts/ci-evidence-format.md` — copy the section headings
exactly.
From a team prompt template (pseudocode):
Spawn worker with prompt:
"Fix the failing test in src/foo.ex.
Report using {{contract: worker-report-format}}."
| Need | Use |
|---|---|
| Session-level persona for the human user | Output style |
| Consistent shape from a specific agent role | Contract in the agent definition |
| Parseable reports from N parallel workers | Shared contract referenced by each worker |
| Reusable response shape across a plugin | Contract in assets/contracts/ |
| One-off format for a single prompt | Inline instructions, no contract needed |
| Feature | Scope | Loaded When | Modifies |
|---|---|---|---|
| Output style | Main agent loop only | Session start (after /config) | System prompt (replaces coding sections) |
| CLAUDE.md | Main agent loop | Session start | Appended as user message after system prompt |
--append-system-prompt | Main agent loop | Session start | Appended to system prompt |
| Skill | Main loop and subagents | On-demand (invoke or auto) | Adds procedural knowledge |
| Agent | Spawned subagent | When Agent tool invoked | Independent system prompt |
| Response contract (pattern) | Wherever embedded | When the host component loads | The host's instructions |
Do not fabricate output-style behavior or frontmatter fields not documented at https://code.claude.com/docs/en/output-styles. When authoring contracts, verify referenced files exist with Read or Glob before claiming they do. Do not claim an agent honors the session output style — it does not. For the full anti-fabrication ruleset, see core:anti-fabrication.
outputStyle and expecting mid-session effect. Output style is fixed at session start for cache stability.keep-coding-instructions. Custom styles default to stripping coding instructions — if the style is meant to augment coding, set this to true.Reference response-format contracts in assets/:
assets/worker-report-format.md — structured report for team workers (SUMMARY / EVIDENCE / STATUS / NEXT)assets/ci-evidence-format.md — verbatim CI-output contract for validation agentsassets/review-findings-format.md — findings-list contract for code review agentsCopy, reference, or adapt these when defining agents, commands, or team workers.
Frequently asked questions
Guide for the native Claude Code output style feature and for applying the same response-contract pattern to agents, slash commands, teams, and skills.
The source record exposes this install command: npx skills add https://github.com/vinnie357/claude-skills --skill "plugins/tools/claude-code/skills/claude-output-styles". Inspect the command and pinned source before running it.
The pinned source record declares support for: claude code.
Alternatives
vasilyu1983/AI-Agents-public
Coordinates multi-agent execution across subagents, teams, and workflows. Use when planning dependency-aware fan-out, verifier passes, runtime selection, or Loop Engineering.
Yeachan-Heo/oh-my-claudecode
N coordinated agents on shared task list using Claude Code implicit agent teams
upex-galaxy/agentic-qa-boilerplate
Acts as a QA Lead / QA Architect reviewing a pull request's test-automation work against this repo's KATA doctrine (or the target repo's own doctrine, if it has one) and general QA best practices — grounding every finding in a concrete doctrine citation or code location, never a guess. Use whenever the user wants to review, audit, or give feedback on a colleague's or a teammate's PR, whether it lives in THIS repo or an external repo the user points at (owner/repo#PR via gh). Triggers on: revisa
PramodDutta/qaskills
Transform weak resume bullets into achievement-focused statements with metrics and impact