ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

do-issue

Parallel subagent execution with code review gates between task batches for issue resolution

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/athola/nm-sanctum-do-issue
Or

Night Market Skill — ported from claude-night-market/sanctum. For the full experience with agents, hooks, and commands, install the Claude Code plugin.

Table of Contents

  • Key Features
  • Workflow Overview
  • Required TodoWrite Items
  • Configuration
  • Detailed Resources

Fix Issue(s)

Retrieves issue content from the detected git platform (GitHub, GitLab, or Bitbucket) and uses subagent-driven-development to systematically address requirements, executing tasks in parallel where dependencies allow.

Platform detection is automatic via the leyline:git-platform SessionStart hook. Check session context for git_platform: to determine which CLI to use.

Key Features

  • Cross-Platform: Automatically detects GitHub/GitLab/Bitbucket and uses appropriate CLI
  • Flexible Input: Single issue number, platform URL, or space-delimited list
  • Parallel Execution: Independent tasks run concurrently via subagents
  • One PR: All issues produce one consolidated PR (never per-issue PRs)
  • Quality Gates: Code review between task groups
  • Fresh Context: Each subagent starts with clean context for focused work

Workflow Overview

PhaseDescriptionModule
1. DiscoveryParse input, fetch issues, extract requirementsissue-discovery
2. PlanningAnalyze dependencies, create task breakdowntask-planning
3. ExecutionDispatch parallel subagents for independent tasksparallel-execution
4. QualityCode review gates between task batchesquality-gates
5-6. CompletionSequential tasks, final review, issue updatescompletion

Required TodoWrite Items

  1. do-issue:discovery-complete
  2. do-issue:tasks-planned
  3. do-issue:parallel-batch-complete
  4. do-issue:review-passed
  5. do-issue:sequential-complete
  6. do-issue:issues-updated

Forge CLI Commands

Use the platform detected in session context (git_platform:). See Skill(leyline:git-platform) for full mapping.

OperationGitHub (gh)GitLab (glab)
Fetch issuegh issue view <N> --json title,body,labels,commentsglab issue view <N>
Commentgh issue comment <N> --body "msg"glab issue note <N> --message "msg"
Closegh issue close <N> --comment "reason"glab issue close <N>
Searchgh issue list --search "query"glab issue list --search "query"

Verification: Run the command with --help flag to verify availability.

Agent Teams (Default Execution Mode)

Metadata

Author@athola
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-athola-nm-sanctum-do-issue": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.