aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Implement issues (GitHub/GitLab/Bitbucket) using progressive analyze-specify-plan-implement workflow
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/do-issueContext preview
What this command does when you run it.
Implement issues (GitHub/GitLab/Bitbucket) using progressive analyze-specify-plan-implement workflow
name: do-issue description: Implement issues (GitHub/GitLab/Bitbucket) using progressive analyze-specify-plan-implement workflow usage: /do-issue <issue-number | issue-url | space-delimited-list> [--dry-run] [--from <step>] [--to <step>] [--scope auto|minor|medium|major]
A progressive workflow for implementing issues from the detected git platform (GitHub, GitLab, or Bitbucket), following the attune pattern: **analyze** → **specify** → **plan** → **implement** → **validate** → **complete**
Invoke `Skill(sanctum:do-issue)`, which carries the six-step workflow, the task planning, the parallel execution, the quality gates and the completion steps. The arguments, step-skipping rules and War Room gate below are applied by this command.
Use this command when you need to:
/do-issue 42 # Full workflow for issue #42 /do-issue 42 --from plan # Skip analysis/specify, start at planning /do-issue 42 --to plan # Stop after planning (dry run) /do-issue 42 --scope minor # Auto-skip steps for minor fixes /do-issue 42 43 44 # Multiple issues with dependency analysis
The workflow auto-detects scope and suggests step-skipping:
**Minor scope** (typo fix, config change):
**Medium scope** (single feature, clear requirements):
**Major scope** (multi-file, complex requirements):
# Detect scope automatically /do-issue 42 --scope auto # Override with explicit scope /do-issue 42 --scope minor /do-issue 42 --scope medium /do-issue 42 --scope major
---
**Purpose**: Assess whether complex multi-issue work warrants expert deliberation.
**Auto-triggers when** (moderate approach):
**Checkpoint invocation** (automatic, no user action needed):
Skill(attune:war-room-checkpoint) with context: source_command: "do-issue" decision_needed: "Execution strategy for issues #42, #43, #44" issues_involved: [42, 43, 44] files_affected: [list of overlapping files] conflict_description: "Issues #42 and #44 both modify auth middleware" profile: [from user settings, default: "default"]
**Response handling**:
| RS Score | Mode | Action | |----------|------|--------| | RS <= 0.40 | Express | Quick recommendation returned, continue immediately | | RS 0.41-0.60 | Lightweight | 3-expert panel deliberates, ~5 min | | RS 0.61-0.80 | Full Council | 7-expert panel deliberates, ~15 min | | RS > 0.80 | Delphi | Iterative consensus, ~30 min |
**Auto-continue logic**:
**Example checkpoint output**:
War Room Checkpoint: /do-issue ──────────────────────────────── Decision: Execution strategy for issues #42, #43, #44 Assessment: RS: 0.52 (Type 1B - Heavy Door) Mode: Lightweight (3 experts) Confidence: 0.87 Recommendation: 1. Implement #42 first (establishes auth base) 2. Then #43 in parallel (independent parser fix) 3. Defer #44 to separate PR (scope creep detected) Rationale: Issues #42 and #44 both touch auth module. Combining risks merge conflicts and unclear rollback. [Auto-continuing with War Room orders...]
**Skip conditions** (checkpoint not invoked):
**Step 3 Output**: Task breakdown with dependencies (War Room-validated if triggered)
---
| Option | Description | |--------|-------------| | `--dry-run` | Analyze and show planned tasks without executing | | `--from <step>` | Start at specific step (analyze, specify, plan, implement, validate, complete) | | `--to <step>` | Stop after specific step | | `--scope <level>` | Set scope level (auto, minor, medium, major) | | `--parallel` | Force parallel execution for multiple issues | | `--no-review` | Skip code review between tasks (not recommended) | | `--close` | Automatically close issues when implemented | | `--dangerous` | Continue execution without pauses (batch mode, auto-continue on handoffs) | | `--no-agent-teams` | Disable agent teams and use Task tool dispatch instead. Agent teams is **on by default** for parallel execution (auto-downgrades for `--scope minor`). |
When implementing multiple issues:
/do-issue 42 43 44
The workflow: 1. **Analyzes all issues** in parallel 2. **Detects dependencies** between issues 3. **Plans execution order**:
4. **Executes with code review** between batches 5. **Creates single PR** (or multiple if needed)
When processing multiple issues, especially with `--dangerous` flag:
/do-issue 42 43 44 --dangerous
**Execution mode is automatically set to**:
{
"mode": "unattended",
"auto_continue": true,
"source_command": "do-issue",
"remaining_tasks": ["#43", "#44"],
"dangerous_mode": true
}**Context Handoff Behavior**:
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.