gossiphs AGENTS.md

gossiphs AGENTS.md is an instructions file for Codex, OpenCode from williamfzc/gossiphs. It costs 1,153 tokens per session, scanned A, original, Apache-2.0.

Repository instructions describing development and dependency-analysis practices for GossipHS. Dependency analysis means finding which files, symbols, or changes rely on one another.

In plain words
What is it for?
Setting precision and recall priorities, extracting physical and logical dependencies, handling fully qualified symbol names, and evaluating results against compiler-based benchmarks.
Why use it?
They establish which quality measures matter and favor direct evidence, such as imports, over guesses based on nearby files or folders.

Instructions file for CodexOpenCode

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 instructions/williamfzc/gossiphs/agents-md
Clone the repo
git clone --depth 1 https://github.com/williamfzc/gossiphs

Made for: Codex, OpenCode.

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 gossiphs AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/williamfzc/gossiphs/agents-md.svg)](https://agentmods.dev/instructions/williamfzc/gossiphs/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/williamfzc/gossiphs/agents-md"><img src="https://agentmods.dev/badge/instructions/williamfzc/gossiphs/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,153 This file is loaded in full into every session.
When invoked 1,153 The same file — it is already loaded in full.
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.01153 $0.01153
Opus 5 $0.00576 $0.00576
Sonnet 5 $0.00231 $0.00231
Haiku 4.5 $0.00115 $0.00115

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

Security

Grade A, and why

gossiphs AGENTS.md 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.

AGENTS.md · 106 lines

How it starts

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

Development Habits and Architectural Principles

This document summarizes the core principles and development habits established during the evolution of gossiphs, specifically regarding its evaluation against compiler-based benchmarks like SCIP.

1. Metric Priorities

  • Symbol Level: Focus exclusively on Precision. We care about whether the symbols gossiphs finds are "true" definitions/references. Recall is secondary as gossiphs is designed to be lightweight.
  • File Level: Focus on both Precision and Recall. This is the primary dimension for architectural analysis. We aim to capture the "Main Road" of the project (Physical Dependencies) while providing "Bonus" insights (Logical Coupling).

2. Dependency Extraction Philosophy

  • Explicit > Implicit: Prefer explicit code signals (e.g., import, use, require statements) over implicit heuristics (e.g., directory proximity).
  • Physical Link Weighting: Links backed by explicit code imports should receive a massive score boost (e.g., 100.0) to ensure they appear at the top of the relation list.
  • Logical Coupling: Git history serves as a supplement to find hidden dependencies that static analysis misses (e.g., config files linked to code).

3. Handling Symbol FQNs

  • Base Name Matching: Since gossiphs often lacks full type resolution, use "Base Name" matching (matching the suffix of a symbol name) to bridge the gap between simple names and Fully Qualified Names (FQNs) used by indexers like SCIP.
  • Collision Mitigation: To prevent "Simple Name Collisions" (e.g., New, init), enforce strict filters:
    • Non-qualified names require a physical link or high commit intersection (>= 3).
    • Qualified names require at least 1 common commit.
  • Dynamic Specificity Filtering (IDF): Use Inverse Document Frequency to weight symbols. Rare symbols (high IDF) contribute more to the score than common ones (low IDF, e.g., init).
  • Adaptive Collision Mitigation: Instead of hard counts, use Confidence = IDF * JaccardSimilarity. Links with low confidence are pruned unless backed by physical evidence.
  • Entropy-based Pruning: For ambiguous symbols with many potential definitions, use Shannon entropy to penalize and prune low-signal links. This effectively "distributes credit" and suppresses noise in large projects.
  • Score-Gap Pruning: When multiple definitions match a reference, only keep those within 80% of the top score. This prevents "ambiguous" links from polluting the graph.
  • Temporal Decay: Prefer recent evidence over historical data. Commits are weighted using an exponential decay function based on their age (half-life default: 365 days).

Read the full file on GitHub · 106 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. 4d ago First seen · 106 lines · 1,153 tokens per session scan A 3ae288ef3d9c

Subscribe to this mod's changes

gossiphs AGENTS.md is an instructions file published in the GitHub repository williamfzc/gossiphs (102 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 1,153 tokens to every session, about $0.0058 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.