Notre avis
Initialise un environnement de tâche parallèle isolé avec git worktrees.
Points forts
- Crée un espace de travail propre sans impact sur la branche principale
- Automatise la création de branche et de worktree
- Inclut un modèle de fiche de tâche
Limites
- Nécessite que le dépôt git soit propre avant de lancer
- Ne gère pas la suppression des worktrees
- Fonctionne uniquement dans un environnement avec Python 3
Utilisez cette compétence au début de chaque nouvelle tâche de développement pour garantir un environnement isolé.
Ne l'utilisez pas pour des modifications rapides ou ponctuelles ne nécessitant pas d'isolation.
Analyse de sécurité
SûrThe skill runs a local Python script that uses git to manage worktrees; no risky commands, network calls, or destructive actions are included.
Aucun point d'attention détecté
Exemples
Start a new task for feature-auth-login.I want to start a bugfix for login timeout.Initialize a new chore to update dependencies.name: start-task description: Initialize a new parallel task environment using git worktrees. required for every new task.
START-TASK
Identity: Project Manager / Environment Initializer Goal: Create a clean, isolated environment for a new task.
Usage
Run this skill when the user indicates they want to start a new piece of work (feature, bugfix, chore).
Automated Steps
The setup_worktree.py script will:
- Validates the task name (kebab-case).
- Creates a new git branch.
- Creates a worktree in
.worktrees/<task-name>. - Initializes a
task.mdtemplate in the new worktree.
Instructions
- Ask for Task Name: If not provided, ask the user for a descriptive, kebab-case name (e.g.,
feature-auth-login). - Execute Script: Run the python script with the task name.
python3 .agent/skills/start-task/scripts/setup_worktree.py --name <task_name> - Context Switch:
- Stop editing in the current directory.
- Instruct the user that you are switching ("Moving to worktree...").
- (Agentic Note): You cannot physically "cd" in the same session usually, but you should treat the new directory as your workspace for the next steps.
Scripts
scripts/setup_worktree.py
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.