Create a Hologram skill

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

A scaffold for turning a repeated Hologram workflow into a reusable project skill that Claude Code can discover and run by command.

In plain words
What is it for?
Use it to create a named skill for recurring tasks such as rendering assets before a commit or summarizing recent changes.
Why use it?
It removes the need to explain the same Hologram workflow each time.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; mentions Claude Code.

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

Good fit Use it to create a named skill for recurring tasks such as rendering assets before a commit or summarizing recent changes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/akaieuan/hologram/create-skill
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 create-skill
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 Create a Hologram skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/akaieuan/hologram/create-skill.svg)](https://agentmods.dev/skills/akaieuan/hologram/create-skill)
Your own site
<a href="https://agentmods.dev/skills/akaieuan/hologram/create-skill"><img src="https://agentmods.dev/badge/skills/akaieuan/hologram/create-skill.svg" alt="Measured on agentmods" 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 798 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.00798
Opus 5 $0.00044 $0.00399
Sonnet 5 $0.00017 $0.00160
Haiku 4.5 $0.00009 $0.00080

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

Security

Grade A, and why

Create a Hologram skill 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 8d 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/create-skill/SKILL.md · 74 lines

How it starts

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

Create a Hologram skill

Turn a repeated pipeline task into a one-word skill. This writes a project-level skill (under .claude/skills/) that Claude Code auto-discovers — so next time it's /your-skill instead of re-explaining the steps.

What to do

  1. Figure out the workflow. What repeated task are they capturing? e.g. "before I commit, render every prop and flag any with no materials", or "summarize what changed since this morning". Ask once if it's genuinely unclear; otherwise infer it from what they just asked for.

  2. Pick a short, lowercase, hyphenated name — it becomes the command (pre-commit-render/pre-commit-render).

  3. Write .claude/skills/<name>/SKILL.md using this shape:

    ---
    name: <Readable display name>
    description: <One or two sentences — what it does and the phrases that should
      trigger it. Put the trigger words early; this is what makes it fire.>
    allowed-tools: <only what it needs, e.g. mcp__hologram__inspect_asset, Bash(hologram *)>
    ---
    
    # <Title>
    
    <Numbered steps for the agent to follow, in plain language. Reference the
    Hologram tools below by name. Say how to present the result.>
    

    Keep it focused — one workflow per skill. Only list the tools it actually uses in allowed-tools.

  4. Tell them how to use it. Project skills load on the next turn; it shows up as /<name> and fires automatically when the description matches.

Hologram surface to wire in

Read-only MCP tools (server name hologram):

Tool Does
list_assets(category?) enumerate exported GLBs, grouped by category
inspect_asset(path) parse one GLB → nodes, meshes, materials, animations, skins, counts
render_asset(path) render one GLB to a PNG via the live Blender (needs Blender on :9876)
tail_events(limit?) recent activity from the event log, newest first
pipeline_status(limit?) failures + last check summary + recent diffs, from the log alone

Read the full file on GitHub · 74 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. 8d ago First seen · 74 lines · 87 tokens per session scan A c628c353c155

Subscribe to this mod's changes

Create a Hologram skill 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 798 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

kiln

3D asset production pipeline via Blender MCP — sourcing, AI generation, cleanup, texturing, optimization, export. Batch mode for autonomous multi-asset production.

elithril/blender-kiln · 35 tokens

using-blender

General Blender workflow skill for AI agents working with .blend, .fbx, .obj, .glb, glTF, materials, scene inspection, bpy automation, headless Blender batch runs, export/reimport validation, previews, and optional Blender MCP control. Use when a task asks to open, inspect, create, automate, convert, optimize, render…

ellmos-ai/skills · 94 tokens

ikea-model-collector

Collect user-observed IKEA product GLB models into verified local research collections with provenance, dimensions, optional Blender previews, a Three.js gallery, indexes, and handoff. Use when Codex is asked to find an IKEA product's available 3D model, process a user-specified product list, import browser-captured…

yuyou-dev/Ikea-model-collector · 113 tokens

dashboard-design

Use this skill first when the user wants to design or plan a dashboard, especially Vizro dashboards. Enforces a 3-step workflow (requirements, layout, visualization) before implementation. Activate when the user asks to create, design, or plan a dashboard. For implementation, use the dashboard-build skill after…

mckinsey/vizro · 71 tokens

selecting-vizro-charts

Use this skill when choosing chart types, applying Plotly Express conventions, configuring colors, building KPI cards, or adding tables (AG Grid) to Vizro dashboards. Activate when the user asks which chart fits their data, needs custom chart functions, wants to set colors or palettes, is creating KPI metric cards, or…

mckinsey/vizro · 78 tokens

social-media-matrix

A multi-platform social media tracking dashboard that compares platforms and metrics in a table-like view. It includes charts, an insights panel, and a grid of top posts.

nexu-io/html-anything · 31 tokens