spec-classifier

A lightweight agent that reviews a software specification and identifies which areas it covers, such as data, APIs, infrastructure, user interfaces, risks, or AI. It also gives an early estimate of the specification's size or scope.

In plain words
What is it for?
Use it when triaging a specification for a software project. It can help route work to reviews for databases, APIs, deployment, security, performance, user experience, risks, or AI systems.
Why use it?
It helps decide which specialist reviews are needed before development starts. This can reveal missing review areas and indicate whether the work is small enough for one session.

Agent

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.

agentmods
npx agentmods add agents/dapi/claude-code-marketplace/spec-classifier
Clone the repo
git clone --depth 1 https://github.com/dapi/claude-code-marketplace
Per session 68 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,666 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00068 $0.03666
Opus 5 $0.00034 $0.01833
Sonnet 5 $0.00014 $0.00733
Haiku 4.5 $0.00007 $0.00367

Measured 2d ago against content hash 67a86e80e2ac, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

spec-classifier 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 2d 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.

spec-reviewer/agents/spec-classifier.md · 376 lines

How it starts

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

Spec Classifier Agent

Быстрая классификация спецификации + предварительная оценка объёма.

Модель: haiku (для минимизации токенов)

Задача

  1. Определить какие аспекты присутствуют в спецификации → какие агенты запускать
  2. Быстро оценить объём → влезает ли в одну сессию
  3. Вернуть JSON с флагами и оценкой

Критерии определения агентов

Агент Запускать если в спеке есть:
spec-data Модели данных, сущности, БД, таблицы, схемы, миграции, связи между данными
spec-api API endpoints, REST/GraphQL, webhooks, интеграции с внешними сервисами, HTTP методы
spec-infra Требования к deployment, безопасности, производительности, мониторингу, масштабированию
spec-risk Критичная фича, внешние зависимости, миграции, новые технологии, жёсткие сроки
spec-ux UI компоненты, экраны, страницы, формы, user flows, мобильное/web приложение
spec-ai-readiness AI/LLM агенты, автономные системы, боты, автоматизация с принятием решений, Claude/GPT

Всегда запускаются (не требуют классификации):

  • spec-analyst — бизнес-логика есть в любой спеке
  • spec-test — тестируемость универсально полезна

Опционально (только если нужен детальный breakdown):

  • spec-scoper — запускается отдельно если quick_scope = "too_large" или "borderline"

Критерии оценки объёма (quick scope)

Лимиты контекстного окна

context_budget:
  total_window: 150000        # Рабочее окно (200k тупит)
  available_for_work: 90000   # После вычета system/history/output
  max_part_tokens: 45000      # Максимум на одну сессию

Быстрая формула оценки

estimated_tokens ≈ models*3000 + endpoints*2000 + components*4000 + integrations*8000

Пороги verdict

estimated_tokens verdict Элементы (ориентир)
< 30000 fits ≤3 модели, ≤5 endpoints, ≤2 компонента
30000-45000 borderline 4-5 моделей, 6-10 endpoints
> 45000 too_large 6+ моделей, 10+ endpoints, интеграции

Read the full file on GitHub · 376 lines

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. 2d ago First seen · 376 lines · 68 tokens per session scan A 67a86e80e2ac

Subscribe to this mod's changes

spec-classifier is an agent published in the GitHub repository dapi/claude-code-marketplace (16 stars, last pushed 4mo ago), licensed MIT. It adds 68 tokens to every session and 3,666 once invoked, about $0.0003 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.

Related

Other agents, from other repositories

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

.NET-Notebook-Migration-Agent

Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.

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

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens

code-reviewer

Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.

anthropics/claude-cookbooks · 52 tokens