Skip to content

chore: sync workflow templates#145

Closed
stranske wants to merge 2 commits intomainfrom
sync/workflows-dd18546b8031
Closed

chore: sync workflow templates#145
stranske wants to merge 2 commits intomainfrom
sync/workflows-dd18546b8031

Conversation

@stranske
Copy link
Copy Markdown
Owner

Sync Summary

Files Updated

  • autofix.yml: Autofix workflow - automatically fixes lint/format issues
  • agents-71-codex-belt-dispatcher.yml: Codex belt dispatcher - selects issues and creates codex/issue-N branches for agent work
  • agents-72-codex-belt-worker.yml: Codex belt worker - executes Codex agent on issues with full prompt and context
  • agents-72-codex-belt-worker-dispatch.yml: Codex belt worker dispatch wrapper - allows workflow_dispatch for the worker
  • agents-73-codex-belt-conveyor.yml: Codex belt conveyor - orchestrates belt worker execution and handles completion
  • agents-autofix-loop.yml: Autofix loop - dispatches Codex when autofix can't fix Gate failures (deprecated; replaced by agents-81-gate-followups.yml, removal no earlier than 2026-02-15)
  • agents-verify-to-issue.yml: Verify to issue v1 (DEPRECATED) - disabled workflow, replaced by v2
  • agents-verify-to-issue-v2.yml: Verify to issue v2 - creates follow-up issues from verification feedback with LLM curation (Phase 4E; deprecated for agents-80-pr-event-hub.yml, removal no earlier than 2026-02-15)
  • agents-verify-to-new-pr.yml: Verify to new PR - creates follow-up issue and triggers auto-pilot to prepare a new PR
  • agents-auto-pilot.yml: Auto-pilot - end-to-end automation orchestrator (format → optimize → agent → verify)
  • sync_dev_dependencies.py: Syncs dev dependency versions from autofix-versions.env to pyproject.toml
  • requirements-llm.txt: Pinned LLM dependencies - required by agents-auto-pilot.yml
  • registry.yml: Agent registry - source of truth for agent keys and runner workflow mapping
  • agent_registry.js: Agent registry helper - loads registry and resolves agent key from labels
  • keepalive_loop.js: Core keepalive loop logic
  • issue_optimizer.py: Issue optimizer - analyzes issues and suggests improvements
  • pr_verifier.py: PR verifier - validates PR changes against acceptance criteria
  • followup_issue_generator.py: Follow-up issue generator - creates issues from verification feedback
  • llm_provider.py: LLM provider configuration - GitHub Models and OpenAI client setup
  • CLAUDE.md: Context file for Claude/AI assistants

Files Skipped

  • pr-00-gate.yml: File exists and sync_mode is create_only
  • ci.yml: File exists and sync_mode is create_only
  • dependabot.yml: File exists and sync_mode is create_only
  • llm_slots.json: None

Review Checklist

  • CI passes with updated workflows
  • No repo-specific customizations were overwritten

Source: stranske/Workflows
Manifest: .github/sync-manifest.yml

Automated sync from stranske/Workflows
Template hash: dd18546b8031

Changes synced from sync-manifest.yml
Copilot AI review requested due to automatic review settings February 17, 2026 05:34
@stranske stranske added sync Automated sync from Workflows automated Automated sync from Workflows labels Feb 17, 2026
@agents-workflows-bot
Copy link
Copy Markdown
Contributor

⚠️ Action Required: Unable to determine source issue for PR #145. The PR title, branch name, or body must contain the issue number (e.g. #123, branch: issue-123, or the hidden marker ).

@agents-workflows-bot
Copy link
Copy Markdown
Contributor

agents-workflows-bot bot commented Feb 17, 2026

🤖 Keepalive Loop Status

PR #145 | Agent: Codex | Iteration 0/5

Current State

Metric Value
Iteration progress [----------] 0/5
Action wait (missing-agent-label)
Disposition skipped (transient)
Gate failure
Tasks 0/24 complete
Timeout 45 min (default)
Timeout usage 3m elapsed (9%, 42m remaining)
Keepalive ❌ disabled
Autofix ❌ disabled

🔍 Failure Classification

| Error type | infrastructure |
| Error category | resource |
| Suggested recovery | Confirm the referenced resource exists (repo, PR, branch, workflow, or file). |

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR syncs workflow templates and scripts from the stranske/Workflows repository, introducing multi-agent support infrastructure through a centralized agent registry system. The changes enable routing different agent types (beyond just "codex") through the existing belt workflow infrastructure while maintaining backward compatibility.

Changes:

  • Introduces agent registry infrastructure (.github/agents/registry.yml and helper functions) for centralized agent configuration
  • Adds LangSmith tracing helpers to improve LLM call observability across verification and issue generation workflows
  • Updates LangChain dependencies to newer stable versions (langchain 1.2.9→1.2.10, langchain-core 1.2.11→1.2.13, langchain-openai 1.1.7→1.1.9, langchain-anthropic 1.3.2→1.3.3)
  • Enhances autofix workflow with workflow_job trigger support for faster lint failure response
  • Propagates agent_key parameter through all belt workflows (dispatcher, worker, conveyor) to support multi-agent routing

Reviewed changes

Copilot reviewed 20 out of 20 changed files in this pull request and generated no comments.

Show a summary per file
File Description
.github/agents/registry.yml New agent registry defining agent configurations (codex with runner workflow, branch prefix, capabilities)
.github/scripts/agent_registry.js New registry helper with YAML parser and agent resolution functions
tools/requirements-llm.txt Updates LangChain dependencies to newer patch/minor versions
tools/llm_provider.py Adds LangSmith metadata builders and trace extraction helpers for observability
scripts/langchain/pr_verifier.py Integrates LangSmith tracing with metadata fallbacks; extracts trace URLs to evaluation results
scripts/langchain/issue_optimizer.py Removes extraneous blank line import
scripts/langchain/followup_issue_generator.py Integrates LangSmith tracing and embeds trace URLs in generated issue bodies as HTML comments
scripts/sync_dev_dependencies.py Removes Black drift detection logic and fixes control flow indentation
.github/workflows/autofix.yml Adds workflow_job trigger for early lint failure detection; refactors duplicate code into helper function
.github/workflows/agents-verify-to-new-pr.yml Integrates agent registry to derive agent labels from PR context
.github/workflows/agents-verify-to-issue.yml Updates documentation to reference generic agent:* labels
.github/workflows/agents-verify-to-issue-v2.yml Integrates agent registry and updates labels to use derived agent key
.github/workflows/agents-autofix-loop.yml Adds agent type detection via registry and validates only codex is supported for autofix loop
.github/workflows/agents-auto-pilot.yml Loads default agent from registry and propagates agent_key to dispatcher/worker
.github/workflows/agents-73-codex-belt-conveyor.yml Adds agent_key input parameter; updates concurrency groups and branch validation to support multiple agents
.github/workflows/agents-72-codex-belt-worker.yml Adds agent_key input; validates agent label matches; conditionally assigns chatgpt-codex-connector only for codex agent
.github/workflows/agents-72-codex-belt-worker-dispatch.yml Adds agent_key input and passes it through to worker
.github/workflows/agents-71-codex-belt-dispatcher.yml Adds agent_key input/output; loads branch prefix from registry; filters issues by agent:* label
.github/scripts/keepalive_loop.js Integrates agent registry for multi-agent label resolution with conflict detection
CLAUDE.md Removes CI test policy section (likely moved to a more central location)

@github-actions github-actions bot added the autofix Triggers autofix on PR label Feb 17, 2026
@github-actions
Copy link
Copy Markdown
Contributor

Autofix updated these files:

  • scripts/langchain/issue_optimizer.py
  • scripts/langchain/pr_verifier.py
  • tests/test_historical_update.py

@agents-workflows-bot agents-workflows-bot bot deleted the sync/workflows-dd18546b8031 branch February 17, 2026 17:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

autofix:patch autofix Triggers autofix on PR automated Automated sync from Workflows sync Automated sync from Workflows

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants