Configuration HelixLab

VérifiéPrudence

Vérifie les dépendances système nécessaires (ffmpeg, ffprobe, bc) pour HelixLab et guide l'utilisateur lors de l'installation si elles sont manquantes. Détecte également l'agent IA en cours d'utilisation et fournit des instructions d'intégration adaptées. Pour les utilisateurs de Claude Code, rappelle d'activer la mise à jour automatique via le marketplace.

Spar Skills Guide Bot
DeveloppementDébutant
8002/06/2026
Claude Code
#helixlab#dependency-check#system-setup#prerequisites

Recommandé pour

Notre avis

Vérifie et installe les dépendances système nécessaires pour HelixLab (ffmpeg, ffprobe, bc) et guide l'utilisateur selon son agent d'IA.

Points forts

  • Idempotent et sûr à exécuter à tout moment
  • Détecte automatiquement l'agent d'IA et fournit des instructions d'intégration personnalisées
  • Inclut un mode de vérification seul (--check) sans modification

Limites

  • Nécessite un accès shell et des droits d'installation sur le système
  • Se limite aux dépendances spécifiques d'HelixLab
  • Les instructions d'intégration peuvent varier selon la version de l'agent
Quand l'utiliser

Lors de la première installation d'HelixLab ou pour valider que l'environnement est correctement configuré.

Quand l'éviter

Si vous utilisez un environnement sans accès shell ou si vous avez déjà vérifié les dépendances manuellement.

Analyse de sécurité

Prudence
Score qualité85/100

The skill uses Bash to execute a setup script (scripts/setup.sh) that checks for dependencies and may offer installation guidance. Although the described intention is benign and the process is claimed idempotent, the actual script is not visible in the skill definition, so it could perform system modifications or unsafe actions.

Points d'attention
  • Executes a bash script from the plugin directory, which could potentially run arbitrary system-level commands.

Exemples

Check dependencies only
Run the HelixLab setup with the --check flag to verify that all prerequisites are installed without making any changes.
Full setup and integration
Set up HelixLab on my system: install any missing dependencies and provide integration instructions for my AI agent.
Verify after installation
Run the HelixLab setup script to ensure everything is installed correctly, then run the test script to confirm ffmpeg works.

name: setup description: Check prerequisites and set up HelixLab dependencies allowed-tools:

  • Bash
  • Read argument-hint: "[--check]" disable-model-invocation: true

<essential_principles> The setup skill checks that HelixLab's system dependencies (ffmpeg, ffprobe, bc) are installed and guides the user through installation if anything is missing. It also detects the user's AI coding agent and provides tailored integration instructions.

This skill is idempotent — safe to run at any time. </essential_principles>

<workflow>

Step 1: Run the setup script

Check what flags the user passed (available as $ARGUMENTS):

  • If --check was passed, run in check-only mode
  • Otherwise, run the full setup
bash ${CLAUDE_PLUGIN_ROOT}/scripts/setup.sh $ARGUMENTS

Step 2: Interpret results

Review the script output:

  • If all dependencies show ✓, report that HelixLab is ready
  • If any dependencies show ✗, help the user resolve them based on the script's recommendations

Step 3: Verify with tests

After installation (or if all deps were already present), confirm everything works:

bash ${CLAUDE_PLUGIN_ROOT}/tests/test-scripts.sh --check-ffmpeg

Step 4: Report status

Summarize for the user:

  • Which dependencies are installed (with versions)
  • Which AI agent was detected and how to integrate
  • Any remaining action items
  • For Claude Code users: remind them to enable auto-update via /plugin → Marketplaces tab → select the helixlab marketplace → Enable auto-update (third-party marketplaces have auto-update disabled by default)
</workflow>
Skills similaires