dt-bootstrap

dt-bootstrap is a skill for Claude Code, Codex from Mazalucas/El-DT-Lightweight-Army. It costs 59 tokens per session (984 once invoked), scanned A, original, MIT.

A setup procedure that turns the El DT template into the main folder of a project and disconnects its original remote repository.

In plain words
What is it for?
Use it when starting a project from an El DT template, especially when the template is inside a subfolder. It lists planned file moves, records the template source, and checks the repository before making changes.
Why use it?
It prepares a template-based repository for independent work while reducing the risk of losing files or changing the wrong repository. Because the operation cannot be undone, it requires a dry run, explicit confirmation, and no uncommitted changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it when starting a project from an El DT template, especially when the template is inside a subfolder. It lists planned file moves, records the template source, and checks the repository before making changes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mazalucas/el-dt-lightweight-army/dt-bootstrap
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 Mazalucas/El-DT-Lightweight-Army --skill dt-bootstrap
Clone the repo
git clone --depth 1 https://github.com/Mazalucas/El-DT-Lightweight-Army

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 dt-bootstrap

README.md
[![agentmods](https://agentmods.dev/badge/skills/mazalucas/el-dt-lightweight-army/dt-bootstrap/github.svg)](https://agentmods.dev/skills/mazalucas/el-dt-lightweight-army/dt-bootstrap)
Your own site
<a href="https://agentmods.dev/skills/mazalucas/el-dt-lightweight-army/dt-bootstrap"><img src="https://agentmods.dev/badge/skills/mazalucas/el-dt-lightweight-army/dt-bootstrap/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 dt-bootstrap

Your own site · 80×15
<a href="https://agentmods.dev/skills/mazalucas/el-dt-lightweight-army/dt-bootstrap"><img src="https://agentmods.dev/badge/skills/mazalucas/el-dt-lightweight-army/dt-bootstrap.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 984 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.00059 $0.00984
Opus 5 $0.00030 $0.00492
Sonnet 5 $0.00012 $0.00197
Haiku 4.5 $0.00006 $0.00098

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

Security

Grade A, and why

dt-bootstrap 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.

.agents/skills/dt-bootstrap/SKILL.md · 72 lines

How it starts

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

dt-bootstrap

Convierte el template El DT en la base de tu propio proyecto: lo promueve a la raíz, suelta el remoto del template y deja el repo listo para tu trabajo. Es una operación irreversible → cae bajo el gate duro (vitals/specs/precedence.md): siempre dry-run + confirmación explícita + working tree limpio.

Pre-requisitos

  1. Sesión válida (/yo).
  2. Working tree limpio (git status). Si hay cambios sin commitear → detener y pedir /guardar o stash.
  3. Confirmar destino: ¿el DT está en una subcarpeta del proyecto o ya es la raíz?

Pasos (con dry-run primero)

  1. Dry-run: listar exactamente qué se va a mover, qué remoto se va a soltar, registro de dt-upstream, y qué se va a resetear. Mostrarlo y pedir confirmación. No ejecutar nada hasta el OK.

  2. Promover al raíz (si está en subcarpeta): mover el contenido del DT a la raíz del proyecto destino sin pisar archivos existentes; ante colisión, preguntar.

  3. Registrar upstream del template (antes de soltar origin):

    TEMPLATE_URL="$(git remote get-url origin)"
    git remote add dt-upstream "$TEMPLATE_URL"   # idempotente si ya existe
    

    Capturar FRAMEWORK_VERSION="$(cat VERSION)" (semver DT actual).

    Crear o actualizar vitals/config/dt-upstream.md (desde vitals/config/dt-upstream.example.md):

    ---
    version: 1
    mode: consumer
    framework_version: "<FRAMEWORK_VERSION>"
    source:
      remote: dt-upstream
      ref: main
    ---
    

    Spec: vitals/specs/dt-upstream-config.md.

  4. Soltar el remoto del template (irreversible):

    git remote remove origin
    

    Ofrecer: git remote add origin <tu-repo> y/o git init fresco si el usuario quiere historial limpio (sin el del template).

  5. Resetear estado del template:

    • VERSION → reiniciar a 0.1.0 del nuevo proyecto (preguntar). La versión del framework queda en framework_version de vitals/config/dt-upstream.md, no en VERSION raíz.
    • vitals/config/project-version.yaml — crear desde project-version.yaml.example:
      • initialized: false, auto_bump: none, initial_semver: "0.1.0"
      • Discover package.json en raíz, frontend/, backend/, apps/*/package.jsonsync_paths
      • ./scripts/project-sync-version.sh — unificar semver en front/back/monorepo
      • Spec: vitals/specs/project-version.md
    • vitals/config/roster.yamlteam: [].
    • vitals/pulse/ → limpiar entries de ejemplo (conservar current.md como puntero vacío).
    • Banner/README → placeholder del nuevo proyecto (preguntar antes de reescribir).

Read the full file on GitHub · 72 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. 11d ago First seen · 72 lines · 59 tokens per session scan A 6f76a7a07e61

Subscribe to this mod's changes

dt-bootstrap is a skill published in the GitHub repository Mazalucas/El-DT-Lightweight-Army (4 stars, last pushed 1mo ago), licensed MIT. It adds 59 tokens to every session and 984 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-31.