Skip to content
Merged
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
10 changes: 5 additions & 5 deletions Issues.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1. Autofix (Option B): keep standalone loop; run on `autofix` or `autofix:clean`; remove Gate’s embedded autofix job
Labels: agent:codex, autofix, ci, devops, automation, enhancement, workflows
Labels: autofix, ci, devops, automation, enhancement, workflows

Why
Two competing autofix paths cause double pushes and comment noise. The standalone loop is resilient (retries, comment markers) and should be the single engine.
Expand Down Expand Up @@ -29,7 +29,7 @@ PR title prefix: [CI][Autofix] Option B
PR kickoff comment: @{agent} Enable the standalone autofix loop for `autofix*` labels, remove Gate’s internal autofix job, keep Gate’s summary/label behavior, and ensure only Python files are edited; strip `autofix*` labels after success.

2. Agents 63: choose single public entrypoint (Issue Intake vs agent-specific wrapper) and retire the other
Labels: agent:codex, agents, devops, automation, documentation, enhancement, workflows
Labels: agents, devops, automation, documentation, enhancement, workflows

Why
Having both “Issue Intake” and a Codex wrapper confuses contributors and increases maintenance. Keep one public entry and route everything through it.
Expand Down Expand Up @@ -57,7 +57,7 @@ PR title prefix: [Agents] Canonical entrypoint
PR kickoff comment: @{agent} Keep a single public entrypoint for agent issues; wire it like the current wrapper and remove the duplicate.

3. Agents 70 Orchestrator: restore helper scripts and add checkout steps so `require('./.github/scripts/...')` works
Labels: agent:codex, agents, devops, workflows, bug, maintenance
Labels: agents, devops, workflows, bug, maintenance

Copilot AI Oct 27, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extra space after 'Labels:' - there are two spaces between the colon and 'agents' instead of one, which is inconsistent with the other label lines.

Copilot uses AI. Check for mistakes.

Why
The Orchestrator calls local helpers (`agents_orchestrator_resolve.js`, `agents_dispatch_summary.js`, `agents_belt_scan.js`) via `require`, but jobs don’t check out the repo before those script steps. Missing scripts or missing checkout breaks Resolve/Dispatch/Summary.
Expand Down Expand Up @@ -87,7 +87,7 @@ PR title prefix: [Agents] Orchestrator script wiring
PR kickoff comment: @{agent} Add checkout steps and ensure `.github/scripts/*` helpers exist so Orchestrator’s `require(...)` calls succeed end‑to‑end.

4. Agents PR meta manager: add a short `/codex run` alias to reduce command typos
Labels: agent:codex, agents, devops, enhancement, guardrail, workflows
Labels: agents, devops, enhancement, guardrail, workflows

Why
The current long command string is error‑prone. A short `/codex run` alias should trigger the same behavior.
Expand All @@ -114,7 +114,7 @@ PR title prefix: [Agents] PR command alias
PR kickoff comment: @{agent} Add `/codex run` as a friendly alias to the existing long meta-manager command; keep one‑agent‑label enforcement.

5. Agents 63 Intake: fix triggers, YAML structure, and add concurrency to prevent duplicate processing
Labels: agent:codex, agents, devops, automation, documentation, workflows
Labels: agents, devops, automation, documentation, workflows

Why
Intake currently defines `workflow_call` at the root while also using `on:` and `workflow_dispatch`, which is invalid. It also needs concurrency and correct label triggers to match the wrapper.
Expand Down
Loading