From infra
Initialise le marketplace et vérifie toutes les dépendances nécessaires aux plugins (git, gh, node, npm, bun). Génère un rapport avec les dépendances installées/manquantes et les commandes d'installation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/infra:inithaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Initialisation du marketplace et vérification des dépendances système.
Initialisation du marketplace et vérification des dépendances système.
which git && echo "git OK" || echo "git MANQUANT"
which gh && echo "gh OK" || echo "gh MANQUANT"
which node && echo "node OK" || echo "node MANQUANT"
which npm && echo "npm OK" || echo "npm MANQUANT"
which bun && echo "bun OK" || echo "bun MANQUANT"
which pnpm && echo "pnpm OK" || echo "pnpm MANQUANT (optionnel)"
Pour chaque dépendance installée, afficher la version.
Lire .claude-plugin/marketplace.json pour obtenir la liste des plugins.
Vérifier les dépendances de chaque plugin.
Marketplace Claude Plugin - Rapport de dépendances
Dépendances installées (X/Y)
- git v2.x.x
- gh v2.x.x
- node v20.x.x
Dépendances manquantes (X/Y)
- biome (optionnel)
Plugins affectés par les dépendances manquantes
- plugin-name : raison
Résumé par plugin
plugin1 : Toutes les dépendances satisfaites
plugin2 : biome optionnel manquant
Si dépendances critiques manquent, afficher les commandes d'installation :
# bun
curl -fsSL https://bun.sh/install | bash
# gh (Linux)
sudo apt install gh
# biome
npm install -g @biomejs/biome
Pour chaque plugin avec packages NPM requis, proposer :
cd {plugin}/scripts && bun install
git - Gestion de version (requis : git, dev)gh - GitHub CLI (requis : git, github)node - Runtime JavaScriptnpm - Package manager Nodebun - Runtime JavaScript moderneOptionnelles :
pnpm - Package manager Node alternatifbiome - Linter/formatterRapport formaté avec :
npx claudepluginhub atournayre/claude-personas --plugin infraGuides creating, validating, and managing Claude Code plugin marketplaces including marketplace.json schema, plugin entries, and best practices for setup and distribution.
Guides creation, validation, and management of Claude Code plugin marketplaces and marketplace.json files.
Guides Claude Code plugin creation, structure (plugin.json, commands/agents/skills/hooks), installation (/plugin), marketplaces, team workflows, testing, debugging, and settings. Delegates to docs-management.