shogun-agent-status

shogun-agent-status is a skill for Claude Code, Codex from yohey-w/multi-agent-shogun. It costs 98 tokens per session (647 once invoked), scanned A, original, MIT.

A skill that shows whether the agents in a multi-agent Japanese feudal-themed team are working, waiting, missing, or assigned tasks. It combines terminal session status, task files, and unread messages.

In plain words
What is it for?
Use it before assigning work, when checking whether an agent is idle, or when investigating stalled tasks and unread team messages.
Why use it?
It puts scattered agent and task information into one status view. This helps reveal agents that have been assigned work but appear to be stopped.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code; mentions Codex.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash scripts/agent_status.sh.

Good fit Use it before assigning work, when checking whether an agent is idle, or when investigating stalled tasks and unread team messages.

Compare 6 skills from other repositories ↓
About the project

multi-agent-shogun is a system that coordinates multiple AI coding command-line agents through a hierarchy of managers, strategists, and workers. Developers use it to split coding requests into parallel tasks and monitor their execution through tmux.

yohey-w/multi-agent-shogun · 1,420 stars · on GitHub

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/yohey-w/multi-agent-shogun
agentmods
npx agentmods add skills/yohey-w/multi-agent-shogun/shogun-agent-status

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for shogun-agent-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/yohey-w/multi-agent-shogun/shogun-agent-status/github.svg)](https://agentmods.dev/skills/yohey-w/multi-agent-shogun/shogun-agent-status)
Your own site
<a href="https://agentmods.dev/skills/yohey-w/multi-agent-shogun/shogun-agent-status"><img src="https://agentmods.dev/badge/skills/yohey-w/multi-agent-shogun/shogun-agent-status/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shogun-agent-status

Your own site · 80×15
<a href="https://agentmods.dev/skills/yohey-w/multi-agent-shogun/shogun-agent-status"><img src="https://agentmods.dev/badge/skills/yohey-w/multi-agent-shogun/shogun-agent-status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 647 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00098 $0.00647
Opus 5 $0.00049 $0.00324
Sonnet 5 $0.00020 $0.00129
Haiku 4.5 $0.00010 $0.00065

Measured 10d ago against content hash a30a769ee4a5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

shogun-agent-status scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/shogun-agent-status/SKILL.md · 52 lines

What it actually says

/agent-status - エージェント稼働確認

Overview

全エージェントの稼働状態を2つのデータソースから統合判定して一覧表示する。

  1. Pane状態: tmux capture-paneの末尾5行からCLI固有のidle/busyパターンを検出
  2. タスクYAML: queue/tasks/{agent}.yaml のtask_idとstatus
  3. 未読inbox: queue/inbox/{agent}.yaml の未処理メッセージ数

Claude Code / Codex CLI 両方に対応。

When to Use

  • 「稼働確認」「エージェント状態」「布陣確認」と言われた時
  • 足軽が暇そうか確認したい時
  • タスク配分前に空いているエージェントを探す時
  • 誰かが止まっているか調べたい時

Instructions

以下のコマンドを実行する:

bash scripts/agent_status.sh

出力の読み方

Column 意味
Agent エージェント名
CLI CLI種別(claude/codex)
Pane tmux pane状態: 稼働中/待機中/不在
Task ID タスクYAMLのtask_id(---=未割当)
Status タスクYAMLのstatus: assigned/done/idle等
Inbox 未読inboxメッセージ数

状態の解釈

  • Pane=待機中 + Status=done: 完了済み、次タスク待ち。新タスク配分可能。
  • Pane=稼働中 + Status=assigned: 正常にタスク実行中。放置してよい。
  • Pane=待機中 + Status=assigned: タスク割当済みだがCLIが止まっている。要調査。
  • Pane=稼働中 + Status=done: タスク完了後に別作業中(inbox処理等)。
  • Inbox > 0: 未読メッセージあり。エージェントが処理していない可能性。
  • Pane=不在: tmux paneが存在しない(shutsujin未実行 or pane killed)。
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 52 lines · 98 tokens per session scan A a30a769ee4a5

Subscribe to this mod's changes

shogun-agent-status is a skill published in the GitHub repository yohey-w/multi-agent-shogun (1,420 stars, last pushed 1mo ago), licensed MIT. It adds 98 tokens to every session and 647 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.