house-trainer

house-trainer is a skill for Claude Code, Codex from binary16labs/prime-silo. It costs 71 tokens per session (2,580 once invoked), scanned A, original, MIT.

A runbook for the EP-T QLoRA trainer, a process for adapting a language model with a smaller training layer on a dedicated computer. It covers dataset creation, training, evaluation, GGUF export, and checks.

In plain words
What is it for?
Use it to build or check training data, run or evaluate training, export models, diagnose GPU jobs, or extend the training workflow.
Why use it?
It records tested procedures and important safeguards, including keeping private job-application data out of training and verifying that long GPU jobs are still running.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/binary16labs/prime-silo/house-trainer
Any agent
npx skills add binary16labs/prime-silo --skill house-trainer
Clone the repo
git clone --depth 1 https://github.com/binary16labs/prime-silo

Made for: Claude Code, Codex.

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 house-trainer

README.md
[![agentmods](https://agentmods.dev/badge/skills/binary16labs/prime-silo/house-trainer.svg)](https://agentmods.dev/skills/binary16labs/prime-silo/house-trainer)
Your own site
<a href="https://agentmods.dev/skills/binary16labs/prime-silo/house-trainer"><img src="https://agentmods.dev/badge/skills/binary16labs/prime-silo/house-trainer.svg" alt="Measured on agentmods" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,580 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00071 $0.02580
Opus 5 $0.00036 $0.01290
Sonnet 5 $0.00014 $0.00516
Haiku 4.5 $0.00007 $0.00258

Measured 5d ago against content hash 4a88794e3e47, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

house-trainer 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 5d 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.

.claude/skills/house-trainer/SKILL.md · 143 lines

How it starts

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

house-trainer — the EP-T QLoRA pipeline playbook

Everything here was proven live on the trainer (T0–T3, LOG 2026-07-22..24). Follow it and you skip a week of Windows-ROCm debugging. Read the two absolutes first.

Absolutes

  1. Privacy: job-application/CV content NEVER enters training data. Every build runs the leak gate (scripts/train/lib/privacy.mjsscripts/longview/lib/leak_gate.mjs). Quarantined sids (live home + sessions workspace quarantine.json) are dropped structurally. Generated rows are git-ignored — never commit them. Never weaken scripts/train/dataset/personal_terms.json to make a build pass.
  2. Honesty: rubric (scripts/train/eval/rubric.md) is frozen BEFORE training. If a run invalidates an earlier number, the correction goes on the record (docs/train/T3-eval-report.md v1→v2 precedent). Tuned-worse is a valid, logged result.

Liveness — NEVER trust a tqdm log for a long GPU job

The eGPU wedges transiently (TB3/RDNA4): a step hangs, the process stays alive but blocked, working set collapses to ~MB, and the tqdm log freezes looking exactly like "slow". A DPO run sat wedged at step 8/38 for 6 h this way. Prove liveness, don't infer it:

  • log mtime vs now (stat -c %y <log>) — hours stale on a minutes-long job = wedged;
  • two CPU-time snapshots ~90 s apart (Get-CimInstance Win32_Process ... UserModeTime+KernelModeTime) — a live job burns CPU seconds, a wedged one doesn't;
  • advancing artifacts (trainer/checkpoint-*, *_result.json, adapter files). Recover: Stop-Process -Id <pid> -Force (PowerShell; use $procId, $id: is a parse error) → device-matmul health check → relaunch with a lower max_length (memory pressure wedges gfx1200).

Environment (measured, don't rediscover)

  • GPU: RX 9060 XT gfx1200, 15.92 GiB, Razer Core X TB3, native-Windows ROCm.
  • Trainer venv python: C:\Users\nsdha\.unsloth\studio\unsloth_studio\Scripts\python.exe (torch 2.11.0+rocm7.13.0 / hip 7.13.99004 / Unsloth 2026.7.4 / bnb rocm714).
  • Training requires a vcvars64 shell (Triton JIT): write a CRLF .bat that calls C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvars64.bat then runs the venv python; launch from Git Bash as cmd.exe //c '<single-quoted-path>' (double slash beats MSYS path-mangling; never pipe the launch through head). Eager eval (run_eval.py) needs no vcvars.
  • llama.cpp ROCm build: ~\.unsloth\llama.cpp\build\bin\Release\ (llama-server.exe, llama-quantize.exe); bundled gguf-py for structural reads. node: ~\.unsloth\node.
  • Parallelism 1: one GPU job at a time, batch 1 (+grad accum), workers 0.
  • Disk: stage fp16 downloads + merges on D: (HF_HOME=D:\t3-merge\hf, T3_GGUF_DIR=D:\t3-merge\gguf) — ~30 GB peak for a 7B; C: cannot take it.
  • Corpus: home clone D:\benny-home (PRIME_SILO_HOME), memo-ray ~\.mem0ray\data (80,555 entities), big LONGVIEW workspace D:\benny-home\benny\workspaces\sessions_v1 (376 JSON cards + data_out prose).

Read the full file on GitHub · 143 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. 5d ago First seen · 143 lines · 71 tokens per session scan A 4a88794e3e47

Subscribe to this mod's changes

house-trainer is a skill published in the GitHub repository binary16labs/prime-silo (5 stars, last pushed today), licensed MIT. It adds 71 tokens to every session and 2,580 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.