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 skills/theagenticguy/opencodehub/codehub-documentnpx skills add theagenticguy/opencodehub --skill codehub-documentgit clone --depth 1 https://github.com/theagenticguy/opencodehubWhat 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.00159 | $0.03176 |
| Opus 5 | $0.00079 | $0.01588 |
| Sonnet 5 | $0.00032 | $0.00635 |
| Haiku 4.5 | $0.00016 | $0.00318 |
Grade A, and why
codehub-document 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 yesterday.
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 — 153 lines — stays where its author put it; the contents beside it link to each section on GitHub.
codehub-document
Primary artifact generator. Produces a tree of cross-linked Markdown under .codehub/docs/ (single-repo) or .codehub/groups/<name>/docs/ (group mode) using a three-phase orchestration: Phase 0 parallel precompute waves → Phase 1 file-level subagent fan-out (one packet = one output file) → Phase 2 deterministic cross-reference assembly.
Model policy. This skill runs on Sonnet by default. Bump to Opus in two cases:
--refresh --groupcombined — the pruning + partial fan-out across members needs the extra judgment.- Any individual packet may set
model: opusin its frontmatter to opt into Opus for synthesis-heavy roles. The cross-repo skeletons (doc-cross-repo-*) anddoc-analysis-risk-hotspotstypically do this; full-scan single-repo packets stay on Sonnet.
Preconditions (check before Phase 0)
mcp__codehub__list_reposreturns the target. If not, emitRun codehub analyze first — repo <name> is not indexed.and stop.codehub statusreports fresh. If stale, emitRun 'codehub analyze' first — index is staleand stop.- Group mode only:
mcp__codehub__group_status({group})must returnfresh: truefor every member. If any member is stale, abort and name each stale repo.
Arguments
[output-dir](optional positional) — where to write. Default is.codehub/docs/(gitignored). With--committed, default flips todocs/codehub/and the skill does not add a.gitignoreentry.--group <name>— enable group mode. Phase 0 callsgroup_list+group_status+group_contracts+group_query. Phase CD dispatchesdoc-cross-repo.--committed— write underdocs/codehub/(or user-supplied path) instead of.codehub/docs/. Does not touch.gitignore.--refresh— consult.docmeta.json, identify stale sections by comparingmax(mtime(section.sources[]))againstsection.mtime, and dispatch exactly one file-level subagent per stale section (re-seeding its packet fromtemplates/agents/<role>.md). Phase 2 always re-runs.--section <name>— regenerate one named section (e.g.,architecture/system-overview). Dispatches exactly one subagent with one skeleton and re-runs Phase 2. Useful for targeted updates.
What ships with it
23 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/cross-reference-spec.md 5.0 KB
- references/data-source-map.md 6.9 KB
- references/document-templates.md 7.3 KB
- references/mermaid-patterns.md 4.4 KB
- templates/agents/doc-analysis-dead-code.md 6.2 KB
- templates/agents/doc-analysis-ownership.md 5.6 KB
- templates/agents/doc-analysis-risk-hotspots.md 6.3 KB
- templates/agents/doc-architecture-data-flow.md 6.2 KB
- templates/agents/doc-architecture-module-map.md 5.8 KB
- templates/agents/doc-architecture-system-overview.md 5.1 KB
- templates/agents/doc-behavior-processes.md 5.6 KB
- templates/agents/doc-behavior-state-machines.md 5.7 KB
- templates/agents/doc-cross-repo-contracts-matrix.md 6.8 KB
- templates/agents/doc-cross-repo-dependency-flow.md 7.4 KB
- templates/agents/doc-cross-repo-portfolio-map.md 6.8 KB
- templates/agents/doc-diagrams-components.md 5.3 KB
- templates/agents/doc-diagrams-dependency-graph.md 6.1 KB
- templates/agents/doc-diagrams-sequences.md 5.6 KB
- templates/agents/doc-reference-cli.md 7.2 KB
- templates/agents/doc-reference-mcp-tools.md 5.7 KB
- templates/agents/doc-reference-public-api.md 7.4 KB
- templates/agents/README.md 3.6 KB
- templates/orchestrator-prompt.md 4.7 KB
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.
- yesterday First seen · 153 lines · 159 tokens per session scan A a1b92eda30eb
codehub-document is a skill published in the GitHub repository theagenticguy/opencodehub (3 stars, last pushed 20d ago), licensed Apache-2.0. It adds 159 tokens to every session and 3,176 once invoked, about $0.0008 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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…