Démarrer un ticket ClickUp

VérifiéPrudence

Utilisez la commande "workon" avec un identifiant de ticket pour créer ou basculer sur une branche associée à un ticket ClickUp. Une fois la branche prête, elle récupère automatiquement le contexte du ticket (titre, description, critères d'acceptation) pour vous aider à comprendre la tâche. Utile pour démarrer le travail sur un nouveau ticket ClickUp.

Spar Skills Guide Bot
ProductiviteDébutant
4002/06/2026
Claude Code
#clickup#ticket-management#branch#workflow

Recommandé pour

Notre avis

Automatise le début du travail sur un ticket ClickUp en créant ou en changeant de branche et en récupérant le contexte du ticket.

Points forts

  • Récupère automatiquement le contexte du ticket (titre, description, critères d'acceptation).
  • Gère la création ou le checkout de la branche correspondante.
  • S'intègre avec ClickUp pour fournir les détails de la tâche.

Limites

  • Nécessite que la commande `workon` soit installée et configurée localement.
  • Peut demander une intervention utilisateur en cas de conflit de branche.
  • Fonctionne uniquement avec ClickUp.
Quand l'utiliser

Utilisez cette compétence lorsque vous devez commencer à travailler sur un ticket ClickUp et souhaitez configurer rapidement la branche et obtenir le contexte associé.

Quand l'éviter

Évitez si vous n'utilisez pas ClickUp ou si la commande `workon` n'est pas disponible dans votre environnement.

Analyse de sécurité

Prudence
Score qualité85/100

The skill executes a shell command with user input as an argument. While the intended operation is benign (managing git branches and fetching ClickUp context), the reliance on proper input sanitization in the `workon` script creates a moderate risk of command injection. The restricted Bash permission mitigates some risk, but the wildcard scope still leaves room for potential abuse if the `workon` toolset includes unsafe operations.

Points d'attention
  • User-provided ticket ID is passed directly to a shell command (`workon $ARGUMENTS`). If the `workon` script does not sanitize input, there is a risk of command injection (e.g., ticket ID containing `;`, `|`, or backticks).
  • The skill grants access to Bash with a wildcard permission (`workon:*`), which could allow execution of any command prefixed with `workon`. If the `workon` tool is extended or misused, it might expose unintended functionality.

Exemples

Standard usage
workon 86b7x5453
Different ticket
workon 86b7x1234

name: workon description: Start work on a ClickUp ticket. Use when the user says "workon" followed by a ticket ID (e.g., "workon 86b7x5453"). argument-hint: <ticket-id> allowed-tools: Bash(workon:*)

Start Work on a ClickUp Ticket

When the user provides a ticket ID, run the workon command to create or checkout the branch for that ticket.

Steps

  1. Run the workon command with the ticket ID:

    workon $ARGUMENTS
    
  2. After the branch is ready, automatically get the ticket context:

    workon ticket
    
  3. Use the ticket information (title, description, acceptance criteria) to understand what the user is trying to accomplish.

Notes

  • The workon <ticket-id> command may prompt for user input if the branch already exists (to choose: checkout, recreate, or cancel)
  • If the branch doesn't exist, it creates it automatically
  • Always run workon ticket after to bring context into the session
Skills similaires