loadout-migrate

loadout-migrate is a skill for Claude Code, Codex from elleryfamilia/loadout. It costs 64 tokens per session (1,395 once invoked), scanned A, original, MIT.

A migration helper for moving global AI-agent instructions into loadout, a tool that stores reusable instruction fragments and combines them into profiles for different technology stacks.

In plain words
What is it for?
Use it when adopting loadout, importing agent rules, creating its TOML configuration, or turning prose instructions into reusable, stack-specific profiles.
Why use it?
It avoids rewriting existing CLAUDE.md, AGENTS.md, or similar instruction files by hand. The original files stay unchanged while loadout creates a separate generated setup.

Skill for Claude CodeCodex

Written for Claude Code and Codex: when-to-use in frontmatter, but also reads ~/.codex or $CODEX_HOME. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions AGENTS.md.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is for f in ~/.claude/CLAUDE.md ~/.codex/AGENTS.md ~/.config/AGENTS.md ./CLAUDE.md ./AGENTS.md ./.github/copilot-instructions.md; do [ -f "$f" ] && echo "$f"; done.

Good fit Use it when adopting loadout, importing agent rules, creating its TOML configuration, or turning prose instructions into reusable, stack-specific profiles.

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/elleryfamilia/loadout
agentmods
npx agentmods add skills/elleryfamilia/loadout/loadout-migrate

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 loadout-migrate

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/elleryfamilia/loadout/loadout-migrate"><img src="https://agentmods.dev/badge/skills/elleryfamilia/loadout/loadout-migrate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,395 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 68
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00064 $0.01395
Opus 5 $0.00032 $0.00698
Sonnet 5 $0.00013 $0.00279
Haiku 4.5 $0.00006 $0.00139

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

Security

Grade A, and why

loadout-migrate 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 11d 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/loadout-migrate/SKILL.md · 98 lines

How it starts

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

Migrate agent instructions into loadout

loadout manages a user's global AI-agent context as reusable fragments composed into stack-targeted profiles, all in ~/.config/loadout/config.toml. This skill converts existing prose instruction files (a CLAUDE.md, AGENTS.md, etc.) into that structure — additively. The original files are left untouched; loadout renders a separate, generated overlay.

Read reference.md for the full TOML schema and a worked example before writing any config.

Orientation (run these probes first)

Before anything else, run these and use their output for the rest of the process:

# loadout on PATH?
command -v loadout >/dev/null 2>&1 && loadout --version || echo "NOT INSTALLED — install loadout first"
# Existing global config (fresh setup if missing)
sed -n '1,60p' ~/.config/loadout/config.toml 2>/dev/null || echo "(none yet — this will be a fresh setup)"
# Candidate source files (also ask the user if their global rules live elsewhere)
for f in ~/.claude/CLAUDE.md ~/.codex/AGENTS.md ~/.config/AGENTS.md ./CLAUDE.md ./AGENTS.md ./.github/copilot-instructions.md; do [ -f "$f" ] && echo "$f"; done

The model (so you decompose well)

  • A fragment is ONE coherent unit of context — a single topic: communication style, git conventions, guardrails, planning workflow, validation policy, tooling preferences, or a piece of live environment context. Fields: id (kebab-case), description (short), guidance (the actual instructions). Optional: category (groups it in studio), agents (restrict to certain agents), and for live data a command (a bash script) or built-in provider (host, toolchain, ai-tools, tailnet, docker).
  • A profile is a named set of fragments, selected when its targets match a repo's detected stack (rust, node, python, go, …) or the no-repo machine context. Fragments and profiles are global — shared across every repo; the profile whose targets match a given repo binds there.

Read the full file on GitHub · 98 lines

Files

What ships with it

1 file 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. 11d ago First seen · 98 lines · 64 tokens per session scan A 82ca8a8c7f03

Subscribe to this mod's changes

loadout-migrate is a skill published in the GitHub repository elleryfamilia/loadout (30 stars, last pushed 24d ago), licensed MIT. It adds 64 tokens to every session and 1,395 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

project-spine-kickoff

Use when the user wants to set up Project Spine for a new project — phrases like "new client project", "kickoff", "create AGENTS.md from scratch", "generate agent instructions for this repo", "set up project context". Runs spine init → edits brief → spine compile → reviews outputs. For stale files use…

PetriLahdelma/project-spine · 84 tokens

project-spine-drift

Use when the user mentions drift, says AGENTS.md / CLAUDE.md / copilot-instructions / Cursor rules are "stale" or "out of date", asks about CI catching docs drift, or says "check if my spine is still current". Runs spine drift check, interprets each drift category, and guides resolution. For initial setup use…

PetriLahdelma/project-spine · 87 tokens

project-spine

Use when the user mentions AGENTS.md, CLAUDE.md, copilot-instructions, Cursor rules, project brief, context for coding agents, agency kickoff, onboarding a new project, or asks "how do I set up Project Spine". This is the orientation skill — reach for it FIRST when the user's intent involves Project Spine, then chain…

PetriLahdelma/project-spine · 80 tokens

project-spine-template

Use when the user wants to apply a bundled, user-local, or project-local template to a new project, or save the current project as a reusable template. Phrases like "use our agency starter", "save this as a template for future clients", "apply the shared saas-marketing starter".

PetriLahdelma/project-spine · 66 tokens

project-spine-rationale

Use when the user wants to review, polish, or share the generated Project Spine rationale file locally. Phrases like "show the project rationale", "send the client a project summary", "review rationale.md", or "make the client-facing overview safer".

PetriLahdelma/project-spine · 57 tokens

project-spine-workspace

Use when the user asks about Project Spine hosted workspaces, team sync, shared workspace templates, invites, or commands such as spine login, spine workspace, spine publish, or spine drift check --push.

PetriLahdelma/project-spine · 55 tokens