houdini-locator

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

A locator for finding installed Houdini versions on Windows and Linux. Houdini is software used to create and process 3D content.

In plain words
What is it for?
Use it to search the HFS environment setting, standard installation folders, and Linux command paths for Houdini executables.
Why use it?
It helps determine which Houdini installation is available without needing to run Houdini itself.

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 Use it to search the HFS environment setting, standard installation folders, and Linux command paths for Houdini executables.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chordee/houdini-tools/houdini-locator
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-locator
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-locator

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/chordee/houdini-tools/houdini-locator"><img src="https://agentmods.dev/badge/skills/chordee/houdini-tools/houdini-locator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 688 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.00081 $0.00688
Opus 5 $0.00041 $0.00344
Sonnet 5 $0.00016 $0.00138
Haiku 4.5 $0.00008 $0.00069

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

Security

Grade A, and why

houdini-locator 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 10d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/find-houdini.ps1, scripts/find-houdini.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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-locator/SKILL.md · 43 lines

How it starts

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

Houdini Locator

This skill provides a reliable way to find all Houdini installation paths without depending on Houdini itself.

Lookup priority

  1. HFS environment variable — if set and bin/hython(.exe) exists under it, that install is reported first under the [Source: HFS env var] header. If HFS is set but invalid, a one-line warning is printed and the scan continues.
  2. Standard install directory scan — Windows: C:\Program Files\Side Effects Software\Houdini *; Linux: /opt/hfs*. Installs already reported via HFS are de-duplicated out of this section.
  3. PATH search (Linux only) — which -a hython and which -a houdinifx are appended for visibility.

Workflow

1. Run the Detection Script

The detection script lives in the scripts/ subdirectory next to this SKILL.md. Resolve its absolute path from wherever you loaded this skill from on disk, then invoke the file appropriate for the current OS:

  • Windowsscripts/find-houdini.ps1, invoked with PowerShell: powershell -ExecutionPolicy Bypass -File "<skill-dir>/scripts/find-houdini.ps1"
  • Linuxscripts/find-houdini.sh, invoked with bash: bash <skill-dir>/scripts/find-houdini.sh

Replace <skill-dir> with the absolute filesystem path of the directory holding this SKILL.md.

2. Parse the Results

Analyze the output to identify:

  • Source marker: an entry prefixed with [Source: HFS env var] is the user's explicitly chosen install and should win over scan results when picking a default.
  • Version number: parsed from the folder basename (Houdini 20.5.33220.5.332, hfs20.5.33220.5.332). For an HFS pointing at a non-standard folder name, version may be reported as (unknown version) — the install path and hython path are still authoritative.
  • Install root: the full installation path for each version.
  • Main executables: full paths to hython, houdini (Windows) or houdinifx (Linux).

3. Usage Recommendations

  • Direct execution: Prefer using the full path to hython to avoid environment conflicts.
  • Multiple versions: Prefer the HFS-sourced entry if present; otherwise pick the latest or by requirement.

Read the full file on GitHub · 43 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. 10d ago First seen · 43 lines · 81 tokens per session scan A c5912e32ec73

Subscribe to this mod's changes

houdini-locator is a skill published in the GitHub repository chordee/houdini-tools (5 stars, last pushed 12d ago), licensed MIT. It adds 81 tokens to every session and 688 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

spec-kitty-charter-doctrine

Run charter interview, generation, context, and sync workflows for project governance in Spec Kitty 3.x. Access doctrine artifacts programmatically via DoctrineService. Resolve agent profiles. Load action-scoped governance context iteratively, not all at once. Triggers: "interview for charter", "generate charter"…

Priivacy-ai/spec-kitty · 135 tokens

mongodb-query-optimizer

Help with MongoDB query optimization and indexing. Use only when the user asks for optimization or performance: "How do I optimize this query?", "How do I index this?", "Why is this query slow?", "Can you fix my slow queries?", "What are the slow queries on my cluster?", etc. Do not invoke for general MongoDB query…

fcakyon/claude-codex-settings · 98 tokens

polar-local-environment

This skill should be used when setting up or managing Polar local development environment with Docker.

fcakyon/claude-codex-settings · 22 tokens

neo4j-modeling-skill

Design, review, and refactor Neo4j graph data models. Use when choosing node labels vs relationship types vs properties, migrating relational/document schemas to graph, detecting anti-patterns (generic labels, supernodes, missing constraints), designing intermediate nodes for n-ary relationships, enforcing schema with…

neo4j-contrib/neo4j-skills · 152 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-repo2docs

Turn any folder of source material — a code repository, a pile of articles, a mixed knowledge dump with images — into a professional, polished Fumadocs (Next.js) documentation website, then deploy it to https://{product-id}.example.com/docs. Works by reading the folder one unit at a time and incrementally growing and…

lovstudio/skills · 186 tokens