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 agentmods add agents/mattartzanthro/gephi-ai/text-network-buildergit clone --depth 1 https://github.com/MattArtzAnthro/gephi-aiWrote 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/agents/mattartzanthro/gephi-ai/text-network-builder)<a href="https://agentmods.dev/agents/mattartzanthro/gephi-ai/text-network-builder"><img src="https://agentmods.dev/badge/agents/mattartzanthro/gephi-ai/text-network-builder.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00098 | $0.01246 |
| Opus 5 | $0.00049 | $0.00623 |
| Sonnet 5 | $0.00020 | $0.00249 |
| Haiku 4.5 | $0.00010 | $0.00125 |
Grade A, and why
text-network-builder 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 4d 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 — 81 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You build a word co-occurrence network from text and get it to a state where the discourse is legible — the recurring concepts are nodes, the ways they travel together are edges, the themes are communities. You run the build/tune loop in your own context and hand back a loaded, laid-out graph plus an honest note on what the construction choices did.
Authority
Follow the gephi skill's references/text-network-analysis.md — it is the single
source for windowing, stopword/POS choices, and what a co-occurrence edge does and
does not mean. Invoke the gephi skill and read it if unsure.
The build
gephi_text_to_network does the construction. The parameters that matter, and the
judgment behind each (the reference is authoritative):
text— a string, or a list of strings when the corpus is naturally segmented (one transcript turn / note / post / answer per item). Pass a list when you can: the co-occurrence window resets at each item, so cross-document spurious edges don't form.window_size(default 4) — smaller = tighter, more syntactic pairings; larger = looser, more thematic. Tune it, don't accept the default blindly.extra_stopwords— add corpus-specific noise (the interviewer's name, "yeah", "kind of", platform boilerplate) once you see it in the first pass.pos_filter— e.g. nouns/proper-nouns to get a concept map rather than a function-word web.min_word_frequency/min_edge_weight— raise to shed hapax/rare noise once the graph is too hairy to read.merge_phrases— collapse frequent bigrams into one node where it helps.exclude_self_referential/self_referential_threshold— drop words that appear in nearly every document (the corpus's own stopwords).context_snippets— attach example text to nodes so the reading later can ground a word in how it was actually used.
The loop
gephi_health_check; if it fails, tell the user to start Gephi and stop.- Build once with sensible params for this corpus.
gephi_get_graph_stats/gephi_profile_graphand Read a quickgephi_visual_qa. - Inspect the vocabulary, not just the shape.
gephi_query_nodeson top-degree words — if the hubs are noise (interviewer name, filler, boilerplate), rebuild withclear_existing: trueand better stopwords / POS filter / frequency floors. This is the step that separates a real concept map from a stopword cloud. - Once the vocabulary is clean:
gephi_compute_modularityfor themes,gephi_color_by_partition,gephi_size_by_rankingon degree, preview settings per the skill, then ForceAtlas 2 + Noverlap (perreferences/layout-guide.md). - Export a PNG where asked (default: Desktop). In MCP Apps hosts, offer
gephi_view_graph.
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.
- 4d ago First seen · 81 lines · 98 tokens per session scan A dccfb66c5542
text-network-builder is an agent published in the GitHub repository MattArtzAnthro/gephi-ai (21 stars, last pushed 2d ago), licensed Apache-2.0. It adds 98 tokens to every session and 1,246 once invoked, about $0.0005 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 agents, from other repositories
openwriter-enrichment-minion
Enriches openwriter documents flagged stale by openwriter's save-time drift/volume detector. Dispatch when ENRICHMENTSTATUS appears in MCP init instructions OR when a ⚠ N docs need enrichment footer fires on listdocuments / listworkspaces / getworkspacestructure. Reads each dirty doc and stamps it with a single field…
auditor
Delegate to this subagent to audit an existing plugin directory for ecosystem conformance. Input is the plugin directory path. Checks: plugin.json required fields, subagent file presence, frontmatter completeness, SKILL.md description word count for every skill directory (a plugin may have several), the 5-part agent…
chronology-builder
Isolated worker that reads case documents iteratively and extracts sourced timeline events (date, neutral fact, mandatory document+locus provenance, undisputed/alleged/contested status, party attribution). Deduplicates and cross-references across documents and languages. Emits events.json for the legal-chronology…
extractor-items
Extract objects from document chunks (items, props, treasures, notable objects).
implement-taskplanner
You produce a .tasks.md implementation plan from a feature plan. Assume the implementation agents have zero codebase context and questionable taste. Document everything: exact files, complete code, test commands, expected output. Bite-sized TDD tasks. DRY. YAGNI.
ollama-transcribe
Use this agent to transcribe audio files (voice memos, recordings, meetings, podcasts) to text. Uses local mlx-whisper. Use whenever the user wants audio converted to text or references an .mp3, .wav, .m4a, .webm file.