Convertir les tâches en problèmes GitHub

VérifiéPrudence

Convertit des tâches d'un fichier tasks.md en issues GitHub avec étiquettes et dépendances. Utile pour exporter des tâches vers GitHub, organiser des tableaux de projet ou assigner du travail à une équipe.

Spar Skills Guide Bot
DeveloppementIntermédiaire
15002/06/2026
Claude Code
#github#issues#tasks#project-management#automation

Recommandé pour

Notre avis

Convertit les tâches d'un fichier tasks.md en issues GitHub avec étiquettes et dépendances.

Points forts

  • Automatisation complète de la création d'issues à partir d'une structure de tâches
  • Gestion des dépendances entre tâches avec liens croisés
  • Exécution parallèle pour accélérer la création
  • Supporte à la fois gh CLI et l'API REST curl

Limites

  • Nécessite un dépôt GitHub distant
  • Requiert une structure de fichier tasks.md spécifique
  • Dépend des scripts bash/PowerShell du kit
Quand l'utiliser

Lorsque vous disposez d'un fichier tasks.md structuré et souhaitez créer rapidement des issues GitHub avec labels et dépendances.

Quand l'éviter

Si votre dépôt n'est pas hébergé sur GitHub ou si vos tâches ne suivent pas le format attendu.

Analyse de sécurité

Prudence
Score qualité94/100

The skill runs system-level scripts and interacts with remote GitHub repositories. While the actions are legitimate project management tasks, the potential for misuse or script injection exists if the environment or prerequisites are compromised. No overtly destructive or exfiltrating commands are present.

Points d'attention
  • Executes external bash and PowerShell scripts.
  • Makes network requests via GitHub API or gh CLI.
  • Uses subagents with task chunking for parallel execution.

Exemples

Convert all tasks for feature 001-user-auth
Convert tasks from tasks.md to GitHub issues for feature 001-user-auth.
Create issues with parallel chunks for phase 3 tasks
Run iikit-08-taskstoissues for phase 3 tasks only.

name: iikit-08-taskstoissues description: >- Convert tasks from tasks.md into GitHub Issues with labels and dependencies. Use when exporting work items to GitHub, setting up project boards, or assigning tasks to team members. license: MIT metadata: version: "1.6.4"

Intent Integrity Kit Tasks to Issues

Convert existing tasks into dependency-ordered GitHub issues for project tracking.

User Input

$ARGUMENTS

You MUST consider the user input before proceeding (if not empty).

Prerequisites Check

  1. Run prerequisites check:

    bash .tessl/tiles/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/bash/check-prerequisites.sh --phase 08 --json
    

    Windows: pwsh .tessl/tiles/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/powershell/check-prerequisites.ps1 -Phase 08 -Json

  2. Parse JSON for FEATURE_DIR and AVAILABLE_DOCS. Extract path to tasks.md.

  3. If JSON contains needs_selection: true: present the features array as a numbered table (name and stage columns). Follow the options presentation pattern in conversation-guide.md. After user selects, run:

    bash .tessl/tiles/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/bash/set-active-feature.sh --json <selection>
    

    Windows: pwsh .tessl/tiles/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/powershell/set-active-feature.ps1 -Json <selection>

    Then re-run the prerequisites check from step 1.

GitHub Remote Validation

git config --get remote.origin.url

CRITICAL: Only proceed if remote is a GitHub URL (git@github.com: or https://github.com/). Otherwise ERROR.

Execution Flow

1. Parse tasks.md

Extract: Task IDs, descriptions, phase groupings, parallel markers [P], user story labels [USn], dependencies.

2. Create GitHub Issues

Title format: [FeatureID/TaskID] [Story] Description — feature-id extracted from FEATURE_DIR (e.g. 001-user-auth).

Body: use template from issue-body-template.md. Labels (create if needed): iikit, phase-N, us-N, parallel.

3. Create Issues (parallel)

Use the Task tool to dispatch issue creation in parallel — one subagent per chunk of tasks (split by phase or user story). Each subagent receives:

  • The chunk of tasks to create issues for
  • The feature-id, repo owner/name, and label set
  • Instructions to use gh issue create if available, otherwise curl the GitHub API
# Preferred:
gh issue create --title "[001-user-auth/T012] [US1] Create User model" --body "..." --label "iikit,phase-3,us-1"

CRITICAL: Never create issues in repositories that don't match the remote URL. Verify before dispatching.

Collect all created issue numbers from subagents. Verify all returned successfully before proceeding. If some failed: report failures, continue with successful issues only.

4. Link Dependencies

After all issues exist, edit bodies to add cross-references using #NNN syntax. Skip dependency links for any issues that failed to create.

Report

Output: issues created (count + numbers), failures (count + details), link to repo issues list.

Error Handling

| Condition | Response | |-----------|----------| | Not a GitHub remote | STOP with error | | Issue creation fails | Report, continue with remaining issues | | Partial failure | Link dependencies for successful issues only |

Next Steps

Run: bash .tessl/tiles/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/bash/next-step.sh --phase 08 --json Windows: pwsh .tessl/tiles/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/powershell/next-step.ps1 -Phase 08 -Json

Parse the JSON and present:

  1. next_step will be null (workflow complete)
  2. If alt_steps non-empty: list as alternatives
  3. Append dashboard link

If on a feature branch, offer to merge:

  • A) Merge locally: git checkout main && git merge <branch>
  • B) Create PR: gh pr create
  • C) Skip: user will handle it

Format:

Issues exported! Review in GitHub, assign team members, add to project boards.
- Dashboard: file://$(pwd)/.specify/dashboard.html (resolve the path)
Skills similaires