From output-style-manager
Output Styleを切り替える。「スタイルを変更」「set output style」で呼び出される。
How this skill is triggered — by the user, by Claude, or both
Slash command
/output-style-manager:set-output-styleThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
`$ARGUMENTS` にスタイル名が指定される場合がある。
$ARGUMENTS にスタイル名が指定される場合がある。
/set-output-style — 引数なし: 一覧から選択/set-output-style concise — スタイル名指定: 即座に設定/set-output-style off — スタイル無効化以下の2箇所から .md ファイルを Glob で取得する:
${CLAUDE_PLUGIN_ROOT}/styles/*.md — 同梱スタイル~/.claude/custom-output-styles/*.md — ユーザーインポートスタイル各ファイルの先頭10行を Read で読み、フロントマッターから name と description を抽出する。
$ARGUMENTS が "off" の場合:
~/.claude/output-style-active ファイルを削除する(Bash: rm -f ~/.claude/output-style-active)$ARGUMENTS にスタイル名が指定されている場合:
$ARGUMENTS が空の場合:
AskUserQuestion を使い、収集したスタイル一覧をユーザーに提示する。 各選択肢の label にスタイル名、description にスタイルの説明を設定する。 「無効化 (off)」も選択肢に含める。
ユーザーが選択したスタイル名(ファイル名から .md を除いたもの)を ~/.claude/output-style-active に書き込む:
echo "スタイル名" > ~/.claude/output-style-active
以下の情報をユーザーに伝える:
npx claudepluginhub dandelion0216/output-style-manager --plugin output-style-managerManages Claude Code output styles via delegation to docs-management: built-ins, customs, frontmatter, /output-style switching, creation, comparisons, and config.
Design Claude Code output styles: persona, tone, and behavioral rules that replace the default system prompt. Invoke whenever task involves any interaction with output styles — creating, editing, evaluating, or changing how Claude communicates.
Guide for creating Claude Code output styles and reusable response-format contracts. Use to standardize agent output or decide between output styles, skills, and CLAUDE.md.