houdini-env

houdini-env is a skill for Claude Code from chordee/houdini-tools. It costs 41 tokens per session (596 once invoked), scanned A, original, MIT.

A guide to configuring Houdini, a 3D graphics application, with environment variables and JSON package files. It covers houdini.env files, plugin paths, startup settings, and operating-system-specific configuration.

In plain words
What is it for?
Setting up, debugging, or understanding Houdini environment variables, houdini.env files, and JSON packages for plugins.
Why use it?
It helps locate the right configuration mechanism and avoid manually changing settings in the wrong place. It also explains how to add plugins while preserving existing paths.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the houdini-tools plugin — 6 skills, 1 MCP server shipped together

Good fit Setting up, debugging, or understanding Houdini environment variables, houdini.env files, and JSON packages for plugins.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chordee/houdini-tools/houdini-env
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 chordee/houdini-tools --skill houdini-env
Clone the repo
git clone --depth 1 https://github.com/chordee/houdini-tools

Made for: Claude Code.

Or install houdini-tools, the plugin that ships this one along with the rest of its 6 skills, 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 houdini-env

README.md
[![agentmods](https://agentmods.dev/badge/skills/chordee/houdini-tools/houdini-env/github.svg)](https://agentmods.dev/skills/chordee/houdini-tools/houdini-env)
Your own site
<a href="https://agentmods.dev/skills/chordee/houdini-tools/houdini-env"><img src="https://agentmods.dev/badge/skills/chordee/houdini-tools/houdini-env/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 houdini-env

Your own site · 80×15
<a href="https://agentmods.dev/skills/chordee/houdini-tools/houdini-env"><img src="https://agentmods.dev/badge/skills/chordee/houdini-tools/houdini-env.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 596 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.00041 $0.00596
Opus 5 $0.00020 $0.00298
Sonnet 5 $0.00008 $0.00119
Haiku 4.5 $0.00004 $0.00060

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

Security

Grade A, and why

houdini-env 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.

skills/houdini-env/SKILL.md · 62 lines

How it starts

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

Houdini Environment & Packages

Two mechanisms control Houdini's runtime configuration:

  • houdini.env — plain key=value file in the user preference directory. Loaded automatically at startup.
  • JSON Packages.json files that configure paths and env vars without editing houdini.env. Scanned from several well-known locations.

Prefer packages for plugins; reserve houdini.env for user-level overrides.

Quick Recipes

Edit houdini.env (path: $HOME/houdini<MAJOR.MINOR>/houdini.env):

HOUDINI_PATH = /my/custom/path;&
HOUDINI_MAXTHREADS = 4

& keeps the default value, so the line above prepends /my/custom/path to HOUDINI_PATH. Use ; as separator on all platforms inside this file.

Minimal package (drop in $HOUDINI_USER_PREF_DIR/packages/my_plugin.json):

{
  "hpath": "/path/to/my/plugin"
}

Prepends /path/to/my/plugin to HOUDINI_PATH. The folder should contain standard subdirs (otls, dso, python_panels, ...).

Package with env vars and OS gating:

{
  "enable": { "houdini_os": "windows" },
  "env": [
    { "MY_TOOL_ROOT": "${HOUDINI_PACKAGE_PATH}" },
    { "MY_TOOL_BIN":  "${MY_TOOL_ROOT}/bin" }
  ],
  "hpath": "${MY_TOOL_ROOT}"
}

$HOUDINI_PACKAGE_PATH is automatically set to the directory containing the package file.

Debugging

  • Set HOUDINI_PACKAGE_VERBOSE=1 in the shell before launching Houdini (not inside a package) to see which packages load.
  • HOUDINI_DSO_ERROR controls plugin loading verbosity.
  • HOUDINI_NO_ENV_FILE=1 skips houdini.env entirely; HOUDINI_NO_ENV_FILE_OVERRIDES=1 loads it but lets the parent environment win.

References

Read the full file on GitHub · 62 lines

Files

What ships with it

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

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 · 62 lines · 41 tokens per session scan A a4e94799390e

Subscribe to this mod's changes

houdini-env is a skill published in the GitHub repository chordee/houdini-tools (5 stars, last pushed 11d ago), licensed MIT. It adds 41 tokens to every session and 596 once invoked, about $0.0002 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

slides

Create and edit presentation slide decks (.pptx) with PptxGenJS, bundled layout helpers, and render/validation utilities. Use when tasks involve building a new PowerPoint deck, recreating slides from screenshots/PDFs/reference decks, modifying slide content while preserving editable output, adding…

fcakyon/claude-codex-settings · 83 tokens

lov-media-publisher

A video publishing workflow for the WeChat Channels and Bilibili creator dashboards. It checks media and post fields, handles platform-specific limits and layouts, and reads the submitted details back from the platform.

lovstudio/skills · 88 tokens

lov-article-creator

A skill that turns source material or a draft into a complete, branded WeChat public-account article package.

lovstudio/skills · 75 tokens

lov-illustrate

A document-illustration workflow that examines a Markdown document, chooses suitable real images, charts, or generated visuals, and inserts them into an enhanced version. Markdown is a plain-text format that uses simple symbols for headings, links, and other document structure.

lovstudio/skills · 44 tokens

lov-any2deck

Generate professional slide deck images from content (Markdown, text, URLs). Creates outlines with style instructions, then generates individual slide images. Supports 16 visual styles, CJK/Latin mixed text, branding overlays, and PPTX/PDF export. Use when the user asks to "create slides", "make a presentation"…

lovstudio/skills · 110 tokens

lov-gen-logo

A logo and application-icon design workflow that creates distinct, versioned drafts and keeps brand marks separate from app icons. It also prepares selected assets for their intended uses, such as websites or device screens.

lovstudio/skills · 41 tokens