Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ai-delegation/skills/auto-maintain/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ gh pr list --author @me --state open --json number | jq length
4. PRs ready to merge (/git-refresh) - Report readiness, do NOT merge
--- BLOCKED IN PR-FOCUS MODE ---
5-10. Bugs, issues, code analysis, docs, tests, deps
3. DISPATCH - Use subagents (parallel in PR-focus, sequential otherwise)
3. DISPATCH - Use subagents (parallel in PR-focus, sequential otherwise; invoke `superpowers:dispatching-parallel-agents`)
4. AWAIT completion
5. CAPTURE results, emit JSON events
6. LOOP to step 0
Expand Down
2 changes: 1 addition & 1 deletion codeql-resolver/commands/resolve-codeql.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Other alerts (0-N)
└─> Batch 1 (max 5) → codeql-generic-resolver agent
```

Use `subagent-batching` skill for parallel execution (max 5 agents concurrent).
Invoke `superpowers:dispatching-parallel-agents` for parallel execution patterns.

Each agent receives:
- Alert numbers (array)
Expand Down
2 changes: 1 addition & 1 deletion git-workflows/skills/sync-main/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Report sync status for all open PR branches.
1. **Get repo**: `gh repo view --json nameWithOwner`
2. **Update main**: CRITICAL - must happen first
3. **List open PRs**: `gh pr list --state open --json number,headRefName,title`
4. **Check each PR**: Launch subagents in parallel. Each checks if behind main. Do NOT merge or push.
4. **Check each PR**: Launch subagents in parallel (invoke `superpowers:dispatching-parallel-agents`). Each checks if behind main. Do NOT merge or push.
5. **Report**: repo, main SHA, merge-readiness for each PR (current/behind/conflict)
6. **Prompt user**: Ask which PRs should be synced with main
7. **Sync only confirmed**: Only merge confirmed branches after user approval
Expand Down
2 changes: 1 addition & 1 deletion github-workflows/skills/finalize-pr/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ background task's output after completing other fixes in 2.2.
### 2.2 Parallel Fixes

Run these checks simultaneously. Launch independent fixes in parallel via
Task agents when they touch different files.
Task agents when they touch different files. Invoke `superpowers:dispatching-parallel-agents` for dispatch patterns.

#### CodeQL Violations

Expand Down
3 changes: 2 additions & 1 deletion github-workflows/skills/resolve-pr-threads/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,8 @@ PRRT_xxx: needs-human [reason]
Commit changes but DO NOT push.
```

**Launch groups in parallel** - use a single message with multiple Task calls.
**Launch groups in parallel** - use a single message with multiple Task calls. Invoke
`superpowers:dispatching-parallel-agents` for agent prompt structure and verification.

Sub-agents commit their own changes but do NOT push.

Expand Down
2 changes: 1 addition & 1 deletion infra-orchestration/skills/orchestrate-infra/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Full pipeline validation: validate, plan, export inventory, syntax-check, check,
1. **Resolve repo paths**: All repos at `~/git/<repo-name>/main/`
2. **Dispatch Terraform phase**: Launch subagent for terraform-proxmox operations
3. **Await completion**: Terraform must complete before Ansible phases
4. **Dispatch Ansible phases**: Launch parallel subagents for independent Ansible repos
4. **Dispatch Ansible phases**: Launch parallel subagents for independent Ansible repos (invoke `superpowers:dispatching-parallel-agents`)
5. **Collect results**: Aggregate success/failure from all subagents
6. **Report**: Summary with per-repo status

Expand Down
Loading