- Home
- Skills
- Catlog22
- Claude Code Workflow
- Issue Resolve
issue-resolve_skill
- TypeScript
1.3k
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill catlog22/claude-code-workflow --skill issue-resolve- SKILL.md15.3 KB
Overview
This skill provides a unified issue resolution pipeline that creates, converts, and queues actionable solutions from multiple sources. It routes input to one phase (plan, convert, brainstorm, or queue), runs AI-driven planning or subagents, and can export tasks as .task/TASK-*.json for execution. The design favors CLI-first operations and supports an auto mode to skip prompts.
How this skill works
Input and flags are parsed and an auto-detection routine selects the source (issue IDs → plan, SESSION= → brainstorm, file paths → convert, or explicit --source). The orchestrator reads only the selected phase document, spawns subagents for planning or conversion, waits for results, binds solutions to issues, optionally exports tasks, and suggests next steps. All issue and solution CRUD uses the ccw issue CLI; files are not read directly for operational data.
When to use it
- Plan and batch AI-generated solutions for one or more issue IDs (Explore & Plan).
- Convert an existing lite-plan, workflow session, or markdown artifact into bound issue solutions.
- Translate brainstorm session outputs into concrete issues with solutions.
- Form ordered execution queues from bound solutions before /issue:execute.
- Export solution tasks to .task/TASK-*.json for downstream task orchestration or CI.
Best practices
- Always prefer the ccw issue CLI for list/read/update/bind operations; avoid reading large issue files directly.
- Use --yes (-y) in automation contexts to default to Explore & Plan without prompts.
- Keep batch-size small (default 3) to limit agent context and improve result quality.
- Export tasks only when solutions are complete; verify exported TASK-*.json against task-schema.json.
- Close subagents after wait completes to free resources and avoid zombie tasks.
Example use cases
- Auto-plan GH-123,GH-124 with codex prompt to generate bound solutions and task exports.
- Convert .workflow/.lite-plan/my-plan.md into issue solutions and append tasks to an existing solution with --supplement.
- Turn SESSION="BS-rate-limiting" brainstorm results into issues and solutions, then form a queue.
- Form a single or multi-queue execution plan (--queues) from planned solutions and hand off to /issue:execute.
- Run in CI: codex -p "<ids>" -y --export-tasks to produce .task/TASK-*.json and a plan.json artifact.
FAQ
Auto mode skips interactive source selection and defaults to Explore & Plan or auto-detects source from input, enabling noninteractive pipelines.
How are exported tasks organized?
Each solution.task becomes .workflow/issues/{issue-id}/.task/TASK-{T-id}.json following task-schema.json; a plan.json overview is generated when tasks exist.