sm-scan-reports

sm-scan-reports is a skill for Claude Code, Codex from elvezjp/ixv-agents. It costs 86 tokens per session (2,862 once invoked), scanned A, original, MIT.

Instructions for scanning all report files in a queue and comparing them with a dashboard. The reports record task status, summaries, changes, output files, and problems.

In plain words
What is it for?
Use it after being awakened by another developer, after returning from a context limit, or during progress checks to find unprocessed reports and identify completed, blocked, or review-needed tasks.
Why use it?
It helps detect unfinished or missed reports even when a notification between agents was lost.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it after being awakened by another developer, after returning from a context limit, or during progress checks to find unprocessed reports and identify completed, blocked, or review-needed tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/elvezjp/ixv-agents/sm-scan-reports
Install

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.

Any agent
npx skills add elvezjp/ixv-agents --skill sm-scan-reports
Clone the repo
git clone --depth 1 https://github.com/elvezjp/ixv-agents

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 sm-scan-reports

README.md
[![agentmods](https://agentmods.dev/badge/skills/elvezjp/ixv-agents/sm-scan-reports/github.svg)](https://agentmods.dev/skills/elvezjp/ixv-agents/sm-scan-reports)
Your own site
<a href="https://agentmods.dev/skills/elvezjp/ixv-agents/sm-scan-reports"><img src="https://agentmods.dev/badge/skills/elvezjp/ixv-agents/sm-scan-reports/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 sm-scan-reports

Your own site · 80×15
<a href="https://agentmods.dev/skills/elvezjp/ixv-agents/sm-scan-reports"><img src="https://agentmods.dev/badge/skills/elvezjp/ixv-agents/sm-scan-reports.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,862 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.
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.00086 $0.02862
Opus 5 $0.00043 $0.01431
Sonnet 5 $0.00017 $0.00572
Haiku 4.5 $0.00009 $0.00286

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

Security

Grade A, and why

sm-scan-reports 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/sm-scan-reports/SKILL.md · 262 lines

How it starts

The opening of the file, as written. The whole thing — 262 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SM Scan Reports

queue/reports/ 配下の全報告ファイルをスキャンし、queue/dashboard.md と照合して未処理の報告を特定する。通信ロスト対策として、起こされるたびに毎回全スキャンを行う。

When to Use

  • Devから send-keys で起こされた時(毎回必須
  • Phase 5 で作業進捗を確認する時
  • コンパクション復帰後
  • 理由に関係なく起こされたら毎回実行

Why Full Scan is Required

  • Devが報告ファイルを書いた後、send-keys が届かないことがある
  • SMが処理中だと、Enter がパーミッション確認等に消費される
  • 報告ファイル自体は正しく書かれているので、スキャンすれば発見できる
  • これにより「send-keys が届かなくても報告が漏れない」安全策となる

Instructions

Step 1: 全報告ファイルを一覧取得

ls -la queue/reports/

TEMPLATE.yaml を除く全ファイルが対象。

Step 2: 各報告ファイルを読み取り

各報告ファイルを読み取り、以下のフィールドを確認する:

フィールド 確認内容
task_id タスク識別子
status done / blocked / needs_review
summary 結果概要
changes 変更点
artifacts 成果物ファイルパス
issues 問題点・ブロッカー

Report Schema(SPEC.md 2.3.4準拠):

schema_version: "1.0"
created_at: "YYYY-MM-DDTHH:MM:SSZ"
updated_at: "YYYY-MM-DDTHH:MM:SSZ"
task_id: "TASK-YYYYMMDD-###"
status: "done"
summary: "200文字以内の結果概要"
changes:
  - "変更点の箇条書き"
artifacts:
  - "ファイルパス"
issues:
  - "課題や不具合"

Step 3: dashboard.md と照合

queue/dashboard.md の以下のセクションと照合する:

  • Backlog Status: タスクの進捗状況
  • Agent Status: 各Devの作業状況
  • Blockers: ブロッカー一覧

Step 3.5: Definition of Done 突合検証(status: done レポートのみ)

SPEC.md §2.4.3 に基づく必須検証status: done の報告について、対応タスクの definition_of_done を読み込み、レポートの changes / artifacts と突合する。 判定基準の詳細は ../references/dod-verification.md を参照。

検証手順

status: done の各レポートについて:

  1. レポートの task_id から対応タスクを特定
    • queue/tasks/dev{N}.yaml を走査、または既に処理済みなら過去の発行履歴を参照
  2. 対応タスクの definition_of_done を読み込み
  3. 各 DoD 項目について、レポートの changes または artifacts に対応する記述があるか確認

判定基準(dod-verification.md から要約):

基準 内容
キーワード一致 DoD 項目内のキーフレーズが changes/artifacts に現れている
ファイルパス類推 DoD が言及するファイルパスが artifacts に含まれている
明示マッピング DoD と changes が同数で1対1対応している
違反時の挙動

未カバー項目が 1件でもある 場合:

  1. dashboard.md の ## Notes セクションに記載(既存セクションを利用、フォーマット変更なし)
    • 例: - TASK-20260201-010: DoD "ユニットテスト8件作成" が未対応(実装テスト4件のみ確認)
  2. Backlog Status の該当タスクを done にせず、needs_review 相当の扱い とする
  3. Dev に追加作業を send-keys で指示
  4. PO に状況を send-keys で報告

Read the full file on GitHub · 262 lines

Files

What ships with it

1 file 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.

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 · 262 lines · 86 tokens per session scan A 963198c123ce

Subscribe to this mod's changes

sm-scan-reports is a skill published in the GitHub repository elvezjp/ixv-agents (5 stars, last pushed 1mo ago), licensed MIT. It adds 86 tokens to every session and 2,862 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens