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.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add yohey-w/multi-agent-shogun --skill shogun-screenshotgit clone --depth 1 https://github.com/yohey-w/multi-agent-shogunWrote 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.
[](https://agentmods.dev/skills/yohey-w/multi-agent-shogun/shogun-screenshot)<a href="https://agentmods.dev/skills/yohey-w/multi-agent-shogun/shogun-screenshot"><img src="https://agentmods.dev/badge/skills/yohey-w/multi-agent-shogun/shogun-screenshot/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.
<a href="https://agentmods.dev/skills/yohey-w/multi-agent-shogun/shogun-screenshot"><img src="https://agentmods.dev/badge/skills/yohey-w/multi-agent-shogun/shogun-screenshot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00149 | $0.01819 |
| Opus 5 | $0.00075 | $0.00910 |
| Sonnet 5 | $0.00030 | $0.00364 |
| Haiku 4.5 | $0.00015 | $0.00182 |
Grade A, and why
shogun-screenshot 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/shogun-screenshot - スクリーンショット取得・加工スキル
North Star(全判断の最上位基準)
このスキルの北極星は記事・報告書のビジュアル品質向上によるコンテンツ差別化。 高品質な画像(マスク済み・適切にトリミング済み)を記事・レポートに挿入することで、 テキスト単体の競合コンテンツとの差別化を実現する。
Input
$ARGUMENTS = 操作対象の指定(URLまたはモードキーワード)
- URL(
https://...)→ Mode 2: Webキャプチャ latest(省略可)→ Mode 1: ローカルスクショ取得- 引数なし → ユーザーの意図に応じて最適なモードを選択
Overview
スクリーンショットの取得・加工を行う。4つのモードがある:
- ローカル取得: ユーザーのスクショフォルダから最新画像を取得
- Webキャプチャ: URLを指定してPlaywright MCPでページをキャプチャ
- トリミング: 既存画像の一部を切り出し・リサイズ
- マスキング: 機微情報(APIキー、個人情報等)を黒塗り
When to Use
- 「最新のスクショを見せて」「スクショ取って」と言われた時
- 記事やレポートに画像を挿入する時
- UI画面のキャプチャが必要な時
- 画像のトリミング・切り出しが必要な時
- スクショ内の機密情報をマスクする時
Configuration
スクショフォルダのパスは config/settings.yaml で管理(優先順の配列):
screenshot:
paths:
- "/path/to/your/Screenshots/" # OS のスクショ保存先
- "queue/screenshots/" # モバイルアプリ等からの受信先
capture_dir: "images/" # Webキャプチャの保存先
trim_dir: "images/trimmed/" # トリミング後の保存先
paths 配列を上から順に探索し、ディレクトリが存在+画像ファイルがあるものを使う。
全パスが存在しない場合はエラーを返す。
Instructions
Mode 1: ローカルスクショ取得(複数パスフォールバック)
手順:
- config/settings.yaml から
screenshot.paths配列を読む - 優先順に各パスを探索:
a.
ls <path>でディレクトリ存在を確認(存在しなければ次へ) b. 存在するパスでls -lt <path>/*.png <path>/*.jpg 2>/dev/null | head -5で最新画像を取得 - 最も新しい画像ファイルを Read ツールで表示
- 複数パスに画像がある場合、全パスの最新を比較して最も新しいものを表示
ヘルパースクリプト (全パスを自動探索):
bash skills/shogun-screenshot/scripts/capture_local.sh -n 3
手動で特定パスを指定する場合:
# config/settings.yaml の screenshot.paths に設定されたパスを使用
ls -lt "/path/to/Screenshots/"*.png 2>/dev/null | head -3
注意: ディレクトリ自体が存在しない可能性がある(ドライブ未マウント等)。
2>/dev/null で存在しないパスのエラーを抑制すること。
Mode 2: Webキャプチャ(Playwright MCP)
- Playwright MCP の
playwright_navigateでURLに遷移 playwright_screenshotでキャプチャ- fullPage: true(ページ全体)
- selector: 指定(要素のみ)
- savePng: true, downloadsDir: 保存先
- 保存されたPNGのパスを返す
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 11d ago First seen · 152 lines · 149 tokens per session scan A b83412a3bbd3
shogun-screenshot is a skill published in the GitHub repository yohey-w/multi-agent-shogun (1,420 stars, last pushed 1mo ago), licensed MIT. It adds 149 tokens to every session and 1,819 once invoked, about $0.0007 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.
Other skills, from other repositories
amazon-photos-album-download
Download the original photo and video files from a public Amazon Photos shared album (an amazon.com/amazon.ca /photos/share/ link) via Amazon Drive's own JSON API, no login required. Drives headless Chrome with Playwright, lists the album nodes, and pulls size-verified originals. Use when you need a local copy of…
design
Professional design system - illustrations, UI mockups, social graphics, brochures, logos, infographics, and image editing. Routes to optimal pipeline (HTML Studio for layouts, Replicate AI for creative imagery, PPTX for presentations). Use when user asks to design, create visuals, generate graphics, make a mockup…
playwright
Drive a real browser for a SCRIPTED, non-interactive job: screenshots, scraping a JS-rendered page, filling a form, PDF from a page, or reading a YouTube video's transcript. Do NOT use for a plain URL fetch that WebFetch already handles, and do NOT use for live interactive browsing (clicking around a session by hand)…
pptx-generator
Generate and edit presentation slides as PPTX files. Also create LinkedIn carousels and manage reusable slide layouts. TRIGGERS - Use this skill when user says: "create slides for [brand]" / "generate presentation for [brand]" / "make slides for [brand]" "create a carousel for [brand]" / "linkedin carousel" / "make a…
marp
Markdown-driven presentation pipeline producing PDF and HTML from MARP source with 31C branded theme. Four subcommands: new (prompt-to-deck), render (existing source), from (workspace markdown transform), watch (live preview). Internal decks, runbooks, state checks, knowledge renders. Do NOT use for editable PPTX…
flux-image
Generate images using AI models via Replicate API. Supports Nano Banana 2 (Google DeepMind, default) and FLUX.2 max (Black Forest Labs). Use when the user asks to generate, create, or produce an actual image from a prompt. This skill creates real image files on disk - not just text descriptions. Trigger when the user…