plan-gated-overnight-queue-partition
Partition a plan-gated GitHub queue before launching overnight work so ineligible pre-approval issues are routed to planning/review lanes and only approved issues are used for merge-capable execution.
Best use case
plan-gated-overnight-queue-partition is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Partition a plan-gated GitHub queue before launching overnight work so ineligible pre-approval issues are routed to planning/review lanes and only approved issues are used for merge-capable execution.
Teams using plan-gated-overnight-queue-partition should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/plan-gated-overnight-queue-partition/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How plan-gated-overnight-queue-partition Compares
| Feature / Agent | plan-gated-overnight-queue-partition | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Partition a plan-gated GitHub queue before launching overnight work so ineligible pre-approval issues are routed to planning/review lanes and only approved issues are used for merge-capable execution.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Plan-Gated Overnight Queue Partition Use when the user asks for overnight parallel execution, adversarial review, and merge-to-main behavior in a repo that enforces a strict plan gate (for example: Issue -> Plan -> Adversarial Review -> User Approval -> status:plan-approved -> Implement). ## Problem Users may ask for a wave like: - identify issues before `status:plan-approved` - execute them with 4 parallel agents - adversarial-review the work - merge to main overnight In a plan-gated repo, that request is internally inconsistent. Issues before approval are not implementation-eligible. ## Required move Before promising execution, do a live queue partition. Classify every candidate issue into: 1. `pre-plan-approved` - no `status:plan-approved` - no local approval marker 2. `status:plan-review` - has `status:plan-review` - still not implementation-eligible 3. `status:plan-approved` - live GitHub label present 4. `locally approved` - `.planning/plan-approved/<issue>.md` exists In workspace-hub-style repos, implementation eligibility should be treated conservatively: - before-approved and plan-review items -> planning/review hardening only - merge-capable overnight implementation -> select from approved pool only ## Minimal audit pattern 1. Fetch live open issues via `gh issue list --state open --json ...` 2. Inspect `.planning/plan-approved/*.md` 3. Reconcile label state + local marker state 4. Count each bucket 5. Only then decide whether the requested overnight work can include code execution/merge ## Routing rule - If the user wants work specifically from the before-approved queue: - do planning/review/adversarial hardening only - do not promise implementation or merge - If the user wants overnight implementation + review + merge: - pivot execution to already-approved issues - say explicitly that this is required by repo policy - If needed, offer a mixed mode: - some lanes harden blocked plans - other lanes execute already-approved issues ## Why this matters Without this partition, it is easy to promise an overnight merge wave that the repo policy forbids. Doing the partition first prevents invalid execution plans and makes the constraint visible early. ## Reusable phrasing "I can assess and adversarially harden the before-approved queue, but I cannot implement or merge those items until they reach `status:plan-approved`. For overnight merge-capable execution, I need to draw from the approved pool instead."
Related Skills
plan-review-prompt-refresh-after-plan-edits
Refresh reviewer prompt files from the latest on-disk plan before every adversarial re-review. Prevents Codex/Gemini from critiquing stale plan text after local edits.
workspace-hub-overnight-plan-monitor
Monitor and reconcile workspace-hub overnight planning or implementation batches, including process status, result artifacts, issue/commit verification, and controlled failed-lane recovery.
plan-gated-issue-execution-wave
Execute a multi-issue architecture/planning wave in a plan-gated repo, then safely transition approved issues into implementation with file-based Codex prompts, local approval markers, subprocess monitoring, and cleanup handling for sandbox/hook edge cases.
mixed-ops-vs-repo-fix-plan-boundary
Plan mixed operational-vs-repo remediation issues by proving live-state classification first, then only proposing code changes for confirmed repo-owned failure paths.
wave-based-parallel-plan-execution
Orchestrate phase execution by discovering dependencies, grouping into waves, spawning subagents, and collecting results with optional wave filtering
plan-gated-issue-validation-workflow
Systematic validation pattern for plan-approved GitHub issues with pre-existing deliverables
plan-gated-issue-implementation
Workflow for executing pre-approved GitHub issues with mandatory validation checkpoints
external-drive-ingest-planning
Plan safe external-drive ingests into repo-aligned storage such as /mnt/ace: read-only mounts, manifests, staged rsync, dedupe-merge gates, GitHub issue traceability, and governance/execution split.
user-approved-plan-state-sync
Reconcile GitHub and local repo state when a plan has been user-approved, including direct approval messages that require creating the local marker and moving the issue to status:plan-approved.
ten-agent-pre-plan-review-wave
Launch and verify a 10-agent planning-only wave that moves open GitHub issues into status:plan-review using one isolated worktree per issue, wave-specific continuation cron, and post-run artifact-reconciliation checks.
static-site-build-artifact-plan-review
Plan-review pattern for static-site fixes where the deployed artifact is generated from source files (e.g. sitemap/robots/static assets). Prevents review churn by separating durable regression checks from one-time migration verification and by validating built output, not just source files.
split-plan-governance-vs-substance
When repeated adversarial plan reviews keep returning MAJOR findings about validator mechanics, evidence bookkeeping, or governance traceability rather than the core product or mission decision, stop tightening the monolithic plan and split it into a content/decision packet and a tooling/enforcement packet.