From orchestrator
Vérifie tous les prérequis système avant de lancer un workflow automatique (gh CLI, jq, git). Exit code 1 si un prérequis manque.
How this skill is triggered — by the user, by Claude, or both
Slash command
/orchestrator:check-prerequisiteshaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Vérification des prérequis système avant le workflow automatique. Mode fail-fast.
Vérification des prérequis système avant le workflow automatique. Mode fail-fast.
# gh CLI
if ! command -v gh &> /dev/null; then
echo "PREREQUIS MANQUANT : gh CLI"
echo "Installe : https://github.com/cli/cli"
exit 1
fi
# gh authentifié
if ! gh auth status &> /dev/null; then
echo "PREREQUIS MANQUANT : gh CLI non authentifié"
echo "Authentifie : gh auth login"
exit 1
fi
# jq
if ! command -v jq &> /dev/null; then
echo "PREREQUIS MANQUANT : jq"
echo "Installe : apt-get install jq (Linux) ou brew install jq (macOS)"
exit 1
fi
# git
if ! command -v git &> /dev/null; then
echo "PREREQUIS MANQUANT : git"
exit 1
fi
Tous les prérequis sont présents
Outils vérifiés :
gh CLI authentifiée
jq disponible
git disponible
npx claudepluginhub atournayre/claude-personas --plugin orchestratorProvides copy-paste ready GitHub CLI (gh) installation, authentication, and command usage. Prevents common mistakes like missing full paths or GITHUB_TOKEN prefix errors.
Validates GAAC prerequisites (gh, jq), checks gaac.md configuration, and validates input arguments for all GAAC slash commands before starting a workflow.
Debugs failing GitHub Actions PR checks using gh CLI: inspects logs, summarizes failures, drafts fix plans, implements after approval. Scopes to GitHub Actions only.