migrar-a-orden

migrar-a-orden is a skill for Claude Code from southlab-ai/Claude-Plugin-Marketplace. It costs 89 tokens per session (1,477 once invoked), scanned A, original, MIT.

A Spanish-language process for reorganizing a repository’s accumulated documentation into one trusted source of truth. It measures existing documents, preserves historical material, and checks operational instructions against the live system.

In plain words
What is it for?
Use it when a repository has many documents, competing claims about which file is authoritative, or runbooks that no longer match production.
Why use it?
It helps resolve conflicting or outdated documentation without deleting the project’s history.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions AGENTS.md.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the repo-orden plugin — 2 skills shipped together

Good fit Use it when a repository has many documents, competing claims about which file is authoritative, or runbooks that no longer match production.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add southlab-ai/Claude-Plugin-Marketplace
Claude Code
/plugin install repo-orden

Made for: Claude Code.

Or install repo-orden, the plugin that ships this one along with the rest of its 2 skills.

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 migrar-a-orden

README.md
[![agentmods](https://agentmods.dev/badge/skills/southlab-ai/claude-plugin-marketplace/migrar-a-orden/github.svg)](https://agentmods.dev/skills/southlab-ai/claude-plugin-marketplace/migrar-a-orden)
Your own site
<a href="https://agentmods.dev/skills/southlab-ai/claude-plugin-marketplace/migrar-a-orden"><img src="https://agentmods.dev/badge/skills/southlab-ai/claude-plugin-marketplace/migrar-a-orden/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 migrar-a-orden

Your own site · 80×15
<a href="https://agentmods.dev/skills/southlab-ai/claude-plugin-marketplace/migrar-a-orden"><img src="https://agentmods.dev/badge/skills/southlab-ai/claude-plugin-marketplace/migrar-a-orden.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,477 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.00089 $0.01477
Opus 5 $0.00044 $0.00739
Sonnet 5 $0.00018 $0.00295
Haiku 4.5 $0.00009 $0.00148

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

Security

Grade A, and why

migrar-a-orden 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 12d 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.

plugins/repo-orden/skills/migrar-a-orden/SKILL.md · 132 lines

How it starts

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

Migrar un repositorio que ya tiene historia

Instalar la estructura en un repo vacío es trivial. Lo difícil es un repo con 160 documentos donde sesenta se declaran autoridad y cuarenta y nueve mienten — y ahí la tentación es borrar, que es el error.

Antes de tocar nada: mide

El diagnóstico define la solución, y casi siempre sorprende. Mide al menos esto y enséñaselo al usuario:

find docs -name '*.md' | wc -l                                    # cuántos hay
find docs -name '*.md' -exec cat {} + | wc -l                     # cuánto pesan
grep -rl 'fuente de verdad\|source of truth\|EL CONTRATO' docs/   # cuántos se declaran autoridad
find docs -name '*.md' -mtime +30 | wc -l                         # cuánto es sedimento

Y lo que de verdad importa: ¿qué de todo eso es ejecutable? Un runbook no se lee, se ejecuta, así que un runbook desactualizado hace daño de verdad. Cruza cada valor que citen contra el sistema vivo.

En un repositorio real esa medición dio: 160 documentos, 42.161 líneas, ~60 autoridades, 49 contradiciendo producción — y los cinco runbooks nombrando releases retirados, ninguno el vivo.

El orden de la migración, y por qué es ese

1 · Arregla la fuente de verdad antes que nada

Si existe un documento que se declara la verdad, compruébalo primero. Suele ser el más desactualizado de todos, precisamente porque todo el mundo confía en él y nadie lo verifica.

Si contiene valores que caducan, no los corrijas a mano: haz que se generen. Un bloque delimitado que un script rellena preguntándole al sistema, y un --check que falla si dejan de coincidir.

2 · Instala la estructura

python3 "${CLAUDE_PLUGIN_ROOT}/scripts/bootstrap_orden.py" --en . --dry-run
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/bootstrap_orden.py" --en .

3 · Clasifica lo que ya hay, y usa git mv

La clase la da la carpeta. Para cada documento pregúntate una sola cosa: ¿esto caduca?

si el documento… va a
describe qué está desplegado ahora el documento de estado (y se genera)
manda sobre el código contratos/
describe cómo es algo arquitectura/
explica por qué se decidió algo adr/
se ejecuta runbooks/ — y sin un solo valor literal
le habla a un consumidor externo handoff/
lista lo que falta pendientes/
es el recibo de una medición evidence/, con la fecha en el nombre
es un plan o un charter planes/
ya pasó y no volverá archivo/

Read the full file on GitHub · 132 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. 12d ago First seen · 132 lines · 89 tokens per session scan A e1ccdd8a166e

Subscribe to this mod's changes

migrar-a-orden is a skill published in the GitHub repository southlab-ai/Claude-Plugin-Marketplace (2 stars, last pushed 1mo ago), licensed MIT. It adds 89 tokens to every session and 1,477 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

cosmergon

Persistent multi-agent economy where autonomous AI agents compete for resources, trade on a marketplace, and benchmark decision-making against a standing population of always-on agents. Invite other agents for energy rewards. Auto-registers — no API key needed.

rkocosmergon/cosmergon-agent · 50 tokens

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

oma-scholar

Scholarly research companion using Knows sidecar spec (.knows.yaml). Generates, validates, reviews, queries, and compares structured research-paper sidecars, and fetches them from knows.academy. Use for academic literature search, survey synthesis, paper authoring assistance, and peer review with token-efficient…

first-fluke/oh-my-agent · 73 tokens

browser_cdp

A health check for Python code that produces a score, letter grade, and measures of issues such as complexity, duplication, dead code, dependencies, and architecture.

mateaix/mateclaw · 44 tokens

flow-next-tracker-sync

Project a flow-next spec to a tracker issue (Linear, GitHub, GitLab, Jira) and reconcile two-way. Use when asked to sync to a tracker. NOT plan-sync.

gmickel/flow-next · 44 tokens