FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Add quarantine list for agents with known issues by ignatov · Pull Request #71 · agentclientprotocol/registry · GitHub

Add quarantine list for agents with known issues - #71

Merged
ignatov merged 2 commits into
mainfrom
add-quarantine-list
Feb 14, 2026
Merged

Add quarantine list for agents with known issues#71
ignatov merged 2 commits into
mainfrom
add-quarantine-list

Conversation

ignatov commented Feb 14, 2026

Copy link
Copy Markdown
Contributor

Summary

  • Adds quarantine.json at repo root — a simple {agent_id: reason} map for agents that should be skipped during automated workflows
  • verify_agents.py skips quarantined agents in load_registry() and handles them gracefully in --agent validation
  • update_versions.py skips quarantined agents in find_all_agents()
  • Quarantines opencode which writes non-JSON database migration logs to stdout, violating the ACP spec

Context

The opencode agent (v1.2.x) breaks verify_agents.py --auth-check because it writes non-JSON log lines to stdout. This blocks the entire automated version update workflow — preventing updates to ALL other agents. This quarantine mechanism lets broken agents be skipped so the rest of the pipeline keeps working.

Test plan

  • python3 .github/workflows/verify_agents.py --agent opencode — skips opencode, exits 0
  • python3 .github/workflows/verify_agents.py --agent opencode,gemini — skips opencode, verifies gemini
  • python3 .github/workflows/verify_agents.py --agent nonexistent — still errors for truly unknown agents
  • python3 .github/workflows/update_versions.py --agents opencode — skips opencode
  • python3 .github/workflows/update_versions.py --agents opencode,gemini — skips opencode, checks gemini

Report a clear error when an agent writes non-JSON to stdout,
referencing the ACP spec requirement that stdout is reserved
for protocol messages only.
The opencode agent writes non-JSON log lines to stdout, breaking
--auth-check and blocking updates to all other agents. This adds a
quarantine.json mechanism so broken agents are skipped during both
verification and version updates, unblocking the rest of the workflow.
ignatov merged commit 144c724 into main Feb 14, 2026
5 checks passed
ignatov deleted the add-quarantine-list branch February 14, 2026 19:28
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant


Back | FazBrowse Home | New Git URL