iikit-08-taskstoissues

Convert tasks from tasks.md into dependency-ordered GitHub Issues with labels.

1|Updated Apr 30, 2026
One-click install
npx skills add https://github.com/hafidzlvm/opencode --skill iikit-08-taskstoissues-hafidzlvm
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: iikit-08-taskstoissues
Source: https://github.com/hafidzlvm/opencode/tree/main/.tessl/tiles/tessl-labs/intent-integrity-kit/skills/iikit-08-taskstoissues
Command: npx skills add https://github.com/hafidzlvm/opencode --skill iikit-08-taskstoissues-hafidzlvm

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Manually transcribing a structured task list into GitHub Issues is repetitive and error-prone, especially when preserving phase groupings, user story labels, and cross-task dependencies. This Skill automates the export so project boards and team assignments can start immediately. ## Core Features & Use Cases - Automated Issue Creation: Parses tasks.md for task IDs, descriptions, phases, parallel markers, and user story labels, then creates GitHub Issues via gh issue create or the GitHub API. - Label and Dependency Management: Applies labels (iikit, phase-N, us-N, parallel) and links dependencies between issues using #NNN cross-references. - Parallel Dispatch: Splits tasks into chunks by phase or user story and dispatches parallel subagents for faster issue creation, with partial-failure reporting. - Use Case: After running the IIKit planning workflow, export 40 tasks from tasks.md into a GitHub repository so each team member can be assigned issues and progress tracked on a project board. ## Quick Start Ask the assistant to convert the tasks in tasks.md into GitHub Issues for the current feature branch.

Frequently Asked Questions about iikit-08-taskstoissues

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert a tasks.md file into GitHub Issues?▼

Run the taskstoissues skill after validating prerequisites. It parses task IDs, phases, and user story labels from tasks.md, then creates issues with `gh issue create` or the GitHub API, applying labels like `iikit`, `phase-N`, and `us-N`.

How are task dependencies represented in GitHub Issues?▼

After all issues are created, the skill edits issue bodies to add cross-references using `#NNN` syntax. Dependencies are only linked for issues that were created successfully; failed issues are skipped.

Does this work with non-GitHub remotes like GitLab?▼

No. The skill validates that `remote.origin.url` is a GitHub URL (`[email protected]:` or `https://github.com/`) and stops with an error otherwise. Issue creation relies on the gh CLI or GitHub REST API.

What happens if some GitHub issue creations fail?▼

The skill reports the failed issues with details and continues with the successful ones. Dependency links are added only among successfully created issues, and the final report lists counts and issue numbers.

What prerequisites are required before exporting tasks to issues?▼

The check-prerequisites script for phase 08 requires a valid spec.md, plan.md, and tasks.md in the feature directory, plus an implicit constitution check. If multiple features exist, you must select one first.