
Bld Onboard
- 1 installs
- Updated April 17, 2026
- ai-scm/bld-claude-plugins
bld-onboard is a Claude Code skill that performs one-step onboarding for the bld-token-cost-efficiency plugin, installing jq, RTK, and hooks.
About
bld-onboard is a Claude Code skill that runs full onboarding for the bld-token-cost-efficiency plugin in one step. It installs jq and RTK, initializes global hooks, analyzes project context and session health, and produces a summary table with a repo grade. Documentation is in Spanish. Developers use it for first-time setup of the plugin's token-saving tooling.
- One-step onboarding for a token-cost-efficiency plugin
- Installs jq and RTK, initializes global hooks
- Runs context-diet, session-hygiene, and token-scan checks
Bld Onboard by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,983 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Jul 7, 2026 (Skillselion catalog sync)
bld-onboard capabilities & compatibility
- Capabilities
- plugin setup · dependency installation · environment setup
- Use cases
- token optimization · devops
- Platforms
- macOS · Linux
What bld-onboard says it does
Full onboarding for bld-token-cost-efficiency plugin.
Configura todas las dependencias, herramientas y verificaciones en un solo paso.
npx skills add https://github.com/ai-scm/bld-claude-plugins --skill bld-onboardAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | April 17, 2026 |
| Repository | ai-scm/bld-claude-plugins ↗ |
What it does
Run one-step setup of the bld-token-cost-efficiency plugin, installing jq, RTK, and hooks.
Who is it for?
New users of the bld-token-cost-efficiency plugin doing first-time setup.
Skip if: Users who have already configured the plugin or do not use it.
When should I use this skill?
When the user says /bld-onboard, setup plugin, configure efficiency plugin, or just installed the plugin.
What you get
A configured plugin with jq, RTK, hooks, and a summary table grading the repo.
- installed jq
- installed RTK
- initialized hooks
By the numbers
- 7-step setup workflow
- RTK claims 60-90% token savings
Files
BLD Onboard — Setup Completo del Plugin de Eficiencia
Configura todas las dependencias, herramientas y verificaciones en un solo paso. Punto de entrada recomendado para usuarios nuevos del plugin.
Step 1: Verificar e instalar jq
if command -v jq &>/dev/null; then
echo "jq: OK ($(jq --version))"
else
echo "jq: NO ENCONTRADO — Instalando..."
if command -v apt-get &>/dev/null; then
sudo apt-get install -y jq 2>&1 | tail -3
elif command -v brew &>/dev/null; then
brew install jq 2>&1 | tail -3
elif command -v yum &>/dev/null; then
sudo yum install -y jq 2>&1 | tail -3
else
echo "ERROR: No se pudo detectar gestor de paquetes. Instala jq manualmente."
fi
command -v jq &>/dev/null && echo "jq instalado: $(jq --version)" || echo "FALLO: jq no instalado (hooks no funcionarán)"
fiSi jq no se pudo instalar, advierte que los hooks no funcionarán pero continúa.
Step 2: Instalar RTK
Ejecuta internamente los pasos del skill /rtk-setup: 1. Verificar si RTK ya está instalado 2. Detectar OS 3. Instalar via curl 4. Inicializar hooks globales con rtk init -g 5. Verificar instalación
Si RTK ya está instalado, muestra la versión y omite la instalación.
Step 3: Analizar contexto del proyecto
Ejecuta internamente los pasos del skill /context-diet: 1. Medir CLAUDE.md, rules, skills 2. Medir plugins activos 3. Estimar carga base de tokens 4. Generar recomendaciones
Step 4: Verificar salud de la sesión
Ejecuta internamente los pasos del skill /session-hygiene: 1. Estado del caché read-once 2. Estado de RTK 3. Verificar dependencias 4. Recomendación de modelo
Step 5: Verificar git-commit skill
echo "=== Git Commit Skill ===" && ls plugins/bld-token-cost-efficiency/skills/git-commit/SKILL.md 2>/dev/null && echo "git-commit: OK (disponible via plugin)" || echo "git-commit: disponible como /git-commit"Confirma que el skill de conventional commits está disponible.
Step 6: Escaneo rápido del repositorio
Ejecuta internamente los pasos del skill /token-scan para dar una calificación inicial de la configuración del repositorio.
Step 7: Resumen final
Presenta una tabla compacta:
| Componente | Estado | Notas |
|---|---|---|
| jq | OK / FALLO | Requerido para hooks |
| RTK | OK (vX.X) / No instalado | Ahorro 60-90% tokens |
| Hooks activos | log-filter, read-once, session-context | Automáticos via plugin |
| Context diet | X bytes base / ~Y tokens | Ver recomendaciones |
| Session hygiene | OK / Issues | Ver detalles |
| git-commit | OK | Commits convencionales |
| Token scan | [A-F] | Nota general del repo |
Mensaje final:
"Setup completo. Skills disponibles:/token-audit,/context-diet,/session-hygiene,/opusplan,/rtk-setup,/token-scan,/git-commit,/bld-onboard"
Related skills
FAQ
What does it install?
It installs jq, installs and initializes RTK with global hooks, and verifies the git-commit skill.
What does it output?
A compact table of component status plus a repo grade from the token-scan step.