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 skills add akaieuan/Hologram --skill checkgit clone --depth 1 https://github.com/akaieuan/HologramWrote 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/skills/akaieuan/hologram/check)<a href="https://agentmods.dev/skills/akaieuan/hologram/check"><img src="https://agentmods.dev/badge/skills/akaieuan/hologram/check/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/akaieuan/hologram/check"><img src="https://agentmods.dev/badge/skills/akaieuan/hologram/check.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00087 | $0.00586 |
| Opus 5 | $0.00044 | $0.00293 |
| Sonnet 5 | $0.00017 | $0.00117 |
| Haiku 4.5 | $0.00009 | $0.00059 |
Grade A, and why
Check the Hologram pipeline 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 9d 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.
What it actually says
Check the Hologram pipeline
hologram check runs the project's checks — assertions over every exported GLB
— and reports pass / warn / fail per asset. It emits a check_run event, so the
result also surfaces on the dashboard and in /hologram:status.
What to do
-
Run it.
hologram checkfor a human-readable report, orhologram check --jsonif you want to parse the findings. Add--project <dir>if you're not in the project root. -
Read the results back plainly. Group by outcome: clean assets, warnings, errors. For each problem give the asset, the check name, and the message — then say what would fix it. A non-zero exit means at least one
error-severity check failed. -
If there are no checks yet, offer to scaffold them:
hologram check --initwrites.hologram/checks.pywith a worked example.
Authoring a check
Checks live in .hologram/checks.py. Each is a function decorated with
@check(...) that receives an asset and returns nothing / True to pass, or
warn("...") / fail("...") to flag a problem:
from hologram.checks import check, warn, fail
@check("single root node", severity="error")
def one_root(asset):
if len(asset.roots) > 1:
return fail(f"{len(asset.roots)} roots — expected a single rig root")
The asset exposes .nodes, .roots, .materials, .animations, .skins,
.mesh_names, .stem, and helpers like .top_level_node_names(). Checks are
read-only — they can't modify anything, and they run only here and in the local
dashboard, never in the MCP server.
Notes
checkruns validation (it loads the user'schecks.py)./hologram:statusonly reads the last result from the log — reach for that when you just want to catch up without re-running.
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.
- 9d ago First seen · 53 lines · 87 tokens per session scan A 416d691f459b
Check the Hologram pipeline is a skill published in the GitHub repository akaieuan/Hologram (2 stars, last pushed 1mo ago), licensed MIT. It adds 87 tokens to every session and 586 once invoked, about $0.0004 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
blender-agent-benchmark
Benchmark Blender modeling agents, skills, prompts, scripts, or MCP tools with paired isolated runs. Use for baseline-versus-plugin comparisons, regression suites, skill forward-testing, MCP usefulness evaluation, score calibration, or claims that a Blender workflow improves mesh, visual, structural, animation, cost…
blender-asset-validation
Inspect and validate Blender assets technically and visually. Use for .blend, .glb, .gltf, .fbx, or .obj quality checks; topology and export review; evaluated triangle/material/hierarchy metrics; standardized multiview renders; fresh-import verification; or evidence-backed review of an agent-generated mesh.
smoke-check
Run the critical path smoke test gate before QA hand-off. Executes the automated test suite, verifies core functionality, and produces a PASS/FAIL report. Run after a sprint's stories are implemented and before manual QA begins. A failed smoke check means the build is not ready for QA.
team-qa
Orchestrate the QA team through a full testing cycle. Coordinates qa-lead (strategy + test plan) and qa-tester (test case writing + bug reporting) to produce a complete QA package for a sprint or feature. Covers: test plan generation, test case writing, smoke check gate, manual QA execution, and sign-off report.
test-helpers
Generate engine-specific test helper libraries for the project's test suite. Reads existing test patterns and produces tests/helpers/ with assertion utilities, factory functions, and mock objects tailored to the project's systems. Reduces boilerplate in new test files.
test-flakiness
Detect non-deterministic (flaky) tests by reading CI run logs or test result history. Aggregates pass rates per test, identifies intermittent failures, recommends quarantine or fix, and maintains a flaky test registry. Best run during Polish phase or after multiple CI runs.