Check the Hologram pipeline

Check the Hologram pipeline is a skill for Claude Code from akaieuan/Hologram. It costs 87 tokens per session (586 once invoked), scanned A, original, MIT.

A read-only checker for exported 3D model files in GLB format. It tests each asset and reports whether it passes, has a warning, or fails.

In plain words
What is it for?
Use it to validate GLB exports, review failing assets, read results in human- or machine-readable form, and create custom checks for project-specific requirements.
Why use it?
It helps find problems in exported models without checking every file manually. It also explains what each problem means and what could fix it.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the hologram plugin — 10 skills, 6 hooks, 1 MCP server shipped together

Good fit Use it to validate GLB exports, review failing assets, read results in human- or machine-readable form, and create custom checks for project-specific requirements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/akaieuan/hologram/check
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.

Any agent
npx skills add akaieuan/Hologram --skill check
Clone the repo
git clone --depth 1 https://github.com/akaieuan/Hologram

Made for: Claude Code.

Or install hologram, the plugin that ships this one along with the rest of its 10 skills, 6 hooks, 1 MCP server.

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 Check the Hologram pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/akaieuan/hologram/check/github.svg)](https://agentmods.dev/skills/akaieuan/hologram/check)
Your own site
<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.

agentmods 80×15 button for Check the Hologram pipeline

Your own site · 80×15
<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>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 586 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00087 $0.00586
Opus 5 $0.00044 $0.00293
Sonnet 5 $0.00017 $0.00117
Haiku 4.5 $0.00009 $0.00059

Measured 9d ago against content hash 416d691f459b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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.

hologram/plugin/skills/check/SKILL.md · 53 lines

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

  1. Run it. hologram check for a human-readable report, or hologram check --json if you want to parse the findings. Add --project <dir> if you're not in the project root.

  2. 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.

  3. If there are no checks yet, offer to scaffold them: hologram check --init writes .hologram/checks.py with 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

  • check runs validation (it loads the user's checks.py). /hologram:status only reads the last result from the log — reach for that when you just want to catch up without re-running.
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. 9d ago First seen · 53 lines · 87 tokens per session scan A 416d691f459b

Subscribe to this mod's changes

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.

Related

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…

ifBars/blender-agent-studio · 68 tokens

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.

ifBars/blender-agent-studio · 71 tokens

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.

frabcd/codex-ai-game-studio · 61 tokens

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.

frabcd/codex-ai-game-studio · 73 tokens

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.

frabcd/codex-ai-game-studio · 50 tokens

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.

frabcd/codex-ai-game-studio · 59 tokens