claude_code

claude_code is a skill for Claude Code, Codex from hrabanazviking/Seidr-Smidja. It costs 0 tokens per session (724 once invoked), scanned A, original, Apache-2.0.

Instructions for using a command-line bridge to build 3D avatars in the VRM format with Blender. It covers installation, asset setup, avatar specifications, selected views, and build results.

In plain words
What is it for?
Use it to generate VRM avatars and renders from specification files, choose camera views or VRChat targets, inspect available assets, and verify the installation.
Why use it?
It gives a coding agent a defined way to request avatar builds and check whether the output and compliance checks succeeded.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python tools/bootstrap_hoard.py.

Good fit Use it to generate VRM avatars and renders from specification files, choose camera views or VRChat targets, inspect available assets, and verify the installation.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/hrabanazviking/Seidr-Smidja
agentmods
npx agentmods add skills/hrabanazviking/seidr-smidja/claude_code

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 claude_code

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/hrabanazviking/seidr-smidja/claude_code"><img src="https://agentmods.dev/badge/skills/hrabanazviking/seidr-smidja/claude_code.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 724 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.00000 $0.00724
Opus 5 $0.00000 $0.00362
Sonnet 5 $0.00000 $0.00145
Haiku 4.5 $0.00000 $0.00072

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

Security

Grade A, and why

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

src/seidr_smidja/bridges/skills/claude_code/SKILL.md · 135 lines

How it starts

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

Seiðr-Smiðja — Claude Code Skill

This document describes how a Claude Code agent (or any agent using the Claude Code CLI pattern) invokes the Seiðr-Smiðja forge through the Rúnstafr CLI bridge.


Setup (one time)

# Install the package
pip install seidr-smidja

# Seed the Hoard with base VRM assets (required before first build)
python tools/bootstrap_hoard.py

# Verify installation
python tools/verify_install.py

# Set Blender path (required for actual builds; not needed for inspect/list-assets)
export SEIDR_BLENDER_PATH="/path/to/blender"
# Windows:
# $env:SEIDR_BLENDER_PATH = "C:\Program Files\Blender Foundation\Blender 4.2\blender.exe"

Primary Rite — Build an Avatar

# Build from a spec file (produces .vrm + renders in output/)
seidr build examples/spec_minimal.yaml --out output/ --json

# Build with explicit views and targets
seidr build my_spec.yaml --out output/ --views front,side,face_closeup --targets VRCHAT --json

JSON output fields:

{
  "success": true,
  "vrm_path": "output/my_avatar_v1.vrm",
  "render_paths": {
    "front": "output/front.png",
    "side": "output/side.png"
  },
  "compliance_passed": true,
  "session_id": "uuid",
  "elapsed_seconds": 42.3,
  "errors": []
}

Inspect an Existing VRM

seidr inspect output/my_avatar.vrm --json

List Available Base Assets

seidr list-assets

Version Check

seidr version

Spec File Format

See examples/spec_minimal.yaml for the simplest valid spec. See examples/spec_full.yaml for all supported fields.

Key required fields:

spec_version: "1.0"
avatar_id: "my_avatar_v1"
display_name: "My Avatar"
base_asset_id: "vroid/sample_a"
metadata:
  author: "Agent Name"

Feedback Loop Pattern

  1. Write spec.yaml with initial parameters.
  2. Run seidr build spec.yaml --out output/ --json
  3. Examine render_paths — view the PNG images.
  4. If renders reveal issues: update spec.yaml (hair color, eye color, proportions).
  5. Repeat from step 2.

Read the full file on GitHub · 135 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. 9d ago First seen · 135 lines · 0 tokens per session scan A 0be93c59fd04

Subscribe to this mod's changes

claude_code is a skill published in the GitHub repository hrabanazviking/Seidr-Smidja (20 stars, last pushed 3mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 724 tokens. 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-30.

Related

Other skills, from other repositories

minecraft-debug-mcp

Operate and debug the live Minecraft bot through its built-in MCP REPL server. Use when work requires starting the bot with pnpm dev, connecting to the local MCP endpoint, inspecting cognitive state/logs/history, injecting synthetic chat/events, or running targeted REPL code against the running brain during…

moeru-ai/airi · 68 tokens

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens