analyzer-protocol

analyzer-protocol is a skill for Claude Code from gustavo-meilus/superpipelines. It costs 33 tokens per session (765 once invoked), scanned A, original, MIT.

An internal operating guide for an analyzer agent in a document-analysis pipeline. It describes how to read an input document, identify themes and sections, estimate length, infer tone, and record findings.

In plain words
What is it for?
Use it as the protocol for analyzing text documents and writing analyzer findings and pipeline status data.
Why use it?
It gives the analyzer consistent steps and expected outputs, including what to report when the input document is missing.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: installed under .agents/ (shared by several agents).

Part of the superpipelines plugin — 54 skills, 10 commands, 14 agents, 4 hooks shipped together

Good fit Use it as the protocol for analyzing text documents and writing analyzer findings and pipeline status data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gustavo-meilus/superpipelines/analyzer-protocol
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 gustavo-meilus/superpipelines --skill analyzer-protocol
Clone the repo
git clone --depth 1 https://github.com/gustavo-meilus/superpipelines

Made for: Claude Code.

Or install superpipelines, the plugin that ships this one along with the rest of its 54 skills, 10 commands, 14 agents, 4 hooks.

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 analyzer-protocol

README.md
[![agentmods](https://agentmods.dev/badge/skills/gustavo-meilus/superpipelines/analyzer-protocol.svg)](https://agentmods.dev/skills/gustavo-meilus/superpipelines/analyzer-protocol)
Your own site
<a href="https://agentmods.dev/skills/gustavo-meilus/superpipelines/analyzer-protocol"><img src="https://agentmods.dev/badge/skills/gustavo-meilus/superpipelines/analyzer-protocol.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 765 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.00033 $0.00765
Opus 5 $0.00016 $0.00382
Sonnet 5 $0.00007 $0.00153
Haiku 4.5 $0.00003 $0.00076

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

Security

Grade A, and why

analyzer-protocol 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 8d 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.

.agents/antigravity/skills/superpipelines/parity-test-c/analyzer-protocol/SKILL.md · 72 lines

How it starts

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

Analyzer — Operational Protocol

Protocol

1. DISCOVER

  1. Read inputs from the orchestrator dispatch context:
    • input_document_path: path to the text document to analyze.
    • findings_output_path: path where analyzer-findings.json must be written.
    • state_path: path to pipeline-state.json for status updates.
    • run_id: current run identifier.
    • root: resolved scope root.
  2. Verify input_document_path exists and is readable. If not: emit NEEDS_CONTEXT with message: "Input document not found at {input_document_path}. Provide a valid path and re-run."
  3. Read the document contents (use Read tool).

2. PROCESS

  1. Extract key themes (3–7 themes). A theme is a recurring concept, topic, or argument present across multiple sections.
  2. Extract structural metadata:
    • sections: list of detected section headings or logical divisions (e.g., "Introduction", "Methods", "Results").
    • word_count: approximate word count of the document.
    • tone: infer one of formal | informal | neutral based on vocabulary and sentence structure.
  3. Record source_path = input_document_path.
  4. Assemble the findings object:
{
  "themes": ["theme-1", "theme-2"],
  "structure": {
    "sections": ["Introduction", "Body", "Conclusion"],
    "word_count": 1200,
    "tone": "formal"
  },
  "source_path": "{input_document_path}"
}

3. DELIVER

  1. Write analyzer-findings.json to findings_output_path using the Write tool.
  2. Update pipeline-state.json:
    • Set phases[0].status = "completed" (or "completed_with_concerns" if any theme confidence is low).
    • Set phases[0].outputs = [findings_output_path].
  3. Emit terminal status:
    • DONE — findings written successfully, all themes extracted with high confidence.
    • DONE_WITH_CONCERNS — findings written but one or more themes have low confidence (note which themes and why).
    • NEEDS_CONTEXT — input document not found or unreadable.
    • BLOCKED — findings could not be written (e.g., disk write failure).

Read the full file on GitHub · 72 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. 8d ago First seen · 72 lines · 33 tokens per session scan A 98ab3b9eef88

Subscribe to this mod's changes

analyzer-protocol is a skill published in the GitHub repository gustavo-meilus/superpipelines (4 stars, last pushed 1mo ago), licensed MIT. It adds 33 tokens to every session and 765 once invoked, about $0.0002 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.