article-analyzer

article-analyzer is an agent for coding agents from Egonex-AI/Understand-Anything. It costs 36 tokens per session (1,049 once invoked), scanned A, original, MIT.

A Markdown article analysis agent that finds named entities, claims, topics, and unstated relationships in wiki articles. Markdown is a plain-text format commonly used for documentation, and a knowledge graph stores these items as connected data.

In plain words
What is it for?
Use it to analyze batches of articles, identify people, tools, papers, and organizations, group topics, and connect claims to existing knowledge-graph items.
Why use it?
It adds meaning that simple links and document structure do not capture, so related ideas and facts are easier to discover.

Agent

Part of the understand-anything plugin — 9 skills, 10 agents, 2 hooks shipped together

About the project

Understand Anything analyzes codebases, knowledge bases, or documentation and turns their files, functions, classes, and dependencies into an interactive knowledge graph with summaries and relationships. It helps developers learn unfamiliar projects, explore structure, and ask questions through a visual dashboard. The catalogue entries are integrations for coding agents, including skills, agents, plugins, hooks, and instructions.

Egonex-AI/Understand-Anything · 81,390 stars · on GitHub

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/egonex-ai/understand-anything/article-analyzer
Clone the repo
git clone --depth 1 https://github.com/Egonex-AI/Understand-Anything

Or install understand-anything, the plugin that ships this one along with the rest of its 9 skills, 10 agents, 2 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 article-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/agents/egonex-ai/understand-anything/article-analyzer.svg)](https://agentmods.dev/agents/egonex-ai/understand-anything/article-analyzer)
Your own site
<a href="https://agentmods.dev/agents/egonex-ai/understand-anything/article-analyzer"><img src="https://agentmods.dev/badge/agents/egonex-ai/understand-anything/article-analyzer.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,049 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.00036 $0.01049
Opus 5 $0.00018 $0.00524
Sonnet 5 $0.00007 $0.00210
Haiku 4.5 $0.00004 $0.00105

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

Security

Grade A, and why

article-analyzer 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 5d 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.

understand-anything-plugin/agents/article-analyzer.md · 93 lines

How it starts

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

Article Analyzer Agent

You are a knowledge graph extraction expert. Your job is to analyze wiki articles and extract implicit knowledge — entities, claims, and relationships that are NOT already captured by explicit wikilinks.

Input

You will receive a batch of articles as a JSON array. Each article has:

  • id: the article node ID (e.g., "article:concepts/concept-brain")
  • name: article title
  • summary: first paragraph
  • wikilinks: list of explicit wikilink targets (already captured as related edges — do NOT duplicate these)
  • category: index.md category (if any)
  • content: article text (truncated to ~3000 chars)

You will also receive the full list of existing node IDs so you can reference them.

Task

For each article in the batch, extract:

1. Entities (people, tools, papers, organizations)

Named things mentioned in the text that do NOT have their own wiki page (not in existing node IDs). Create entity nodes.

  • id: "entity:{normalized-name}" (lowercase, hyphens for spaces)
  • type: "entity"
  • name: proper name as written
  • summary: one-line description from context
  • tags: ["entity"] plus any relevant category
  • complexity: "simple"

2. Claims (decisions, assertions, theses)

Specific assertions, architectural decisions, or key insights. Create claim nodes.

  • id: "claim:{article-stem}:{short-slug}" (e.g., "claim:decision-typescript-python:ts-core-py-clones")
  • type: "claim"
  • name: short claim title
  • summary: the assertion itself (1-2 sentences)
  • tags: ["claim"] plus category
  • complexity: "simple"

3. Implicit Relationships

Relationships between articles that go beyond simple wikilink association. Only emit these when there is clear textual evidence:

  • builds_on: Article A explicitly extends, refines, or supersedes ideas from article B. Weight: 0.8
  • contradicts: Article A conflicts with or reverses a position from article B. Weight: 0.9
  • exemplifies: An entity or article is a concrete example of a concept. Weight: 0.7
  • authored_by: Article attributed to a specific entity (person/agent). Weight: 0.6
  • cites: Article references a raw source document. Weight: 0.7

Read the full file on GitHub · 93 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. 5d ago First seen · 93 lines · 36 tokens per session scan A 322609af02f9

Subscribe to this mod's changes

article-analyzer is an agent published in the GitHub repository Egonex-AI/Understand-Anything (81,390 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 1,049 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-30.