feat(agents): list every official AI SDK and Omnigent harness#34
Merged
Conversation
Adapt all agents the official AI SDK and Omnigent sites publish, the same way as
the existing adapted agents. Focus is LISTING + documenting status per agent;
model/proxy routing is the explicit NEXT step (not verified here).
AI SDK — add the 2 missing official `@ai-sdk/harness-*` packages:
- `ai-sdk-deepagents` (wraps `@ai-sdk/harness-deepagents@1.0.5`, in-process just-bash
like Pi) and `ai-sdk-opencode` (wraps `@ai-sdk/harness-opencode@1.0.6`), scaffolded
from the harness-pi template. So ai-sdk now covers every official harness
(pi/codex/claude-code/deepagents/opencode + the custom mimo). Provider env slot is a
best-effort default; wire-parity tests skip ("no vanilla fixture yet (next step)").
Omnigent — register one BenchFlow agent per orchestrated `--harness` value:
- `omnigent-{pi,claude,codex,cursor,opencode,hermes,openai-agents}`. Threads a
`harness` param through agent.py + session.py and generates a per-harness
`session_factory` (`build_omnigent_<slug>`); `build_omnigent_agent` kept as a pi
back-compat alias. Only `omnigent-pi` is fully worked; the other 6 are
listed-not-wired (each harness's own CLI install + routing = next step). The
`-native` run-modes are documented, not registered as separate agents.
Status is documented per agent in omnigent/README (status table), ai-sdk/README, and
the root README. CI matrix extended to the 2 new ai-sdk packages.
This was referenced Jun 29, 2026
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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Goal
List/adapt every agent the official AI SDK and Omnigent sites publish, the same
way as the existing adapted agents. This PR focuses on listing them + documenting
each one's status — model/proxy routing correctness is the explicit next step,
not this PR.
AI SDK — now covers every official
@ai-sdk/harness-*npm's
@ai-sdk/harness-*scope publishes: pi, codex, claude-code, deepagents,opencode. The repo had the first three; this adds the last two (scaffolded from
the
harness-pitemplate):ai-sdk-deepagents@ai-sdk/harness-deepagents@1.0.5ai-sdk-opencode@ai-sdk/harness-opencode@1.0.6Both:
node --check+ast.parseclean, ruff clean,test_registerasserts thename/deps/env slot,
test_wire_parityskips with"no vanilla fixture yet (next step)". Added to thetest-ai-sdkCI matrix.Omnigent — one agent per orchestrated
--harnessgithub.com/omnigent-ai/omnigentlists--harnessvalues claude-sdk, claude-native,codex, codex-native, cursor, cursor-native, hermes, hermes-native, opencode, pi,
pi-native, openai-agents. Registered one BenchFlow agent per distinct orchestrated
agent:
--harnessomnigent-pipiomnigent-claudeclaude-sdkomnigent-codexcodexomnigent-cursorcursoromnigent-opencodeopencodeomnigent-hermeshermesomnigent-openai-agentsopenai-agentsMechanism: a
harnessparam threaded throughagent.py+session.py, and aper-harness
session_factory(build_omnigent_<slug>, generated as module globals soomnigent.agent:build_omnigent_openai_agentsresolves).build_omnigent_agentkept asa
piback-compat alias. The-nativerun-modes are documented, not registered(they're alternate run-modes of the same agent).
register()still gates on thesession-factory seam (registers nothing on a BenchFlow without it).
"Listed-not-wired" means: the agent is in the registry, the shared
install_cmdinstalls omnigent itself, and the factory resolves — but each harness's own CLI
install + model routing are the next step.
Verification
node --check; all register.py parse.omnigent/README(status table +-nativenote),ai-sdk/README, and the root README (3-path table).Not in scope (next step)
Wiring each listed harness's CLI install + verifying model routing / wire-parity. This
PR is the "list them all + document status" step the goal asked for.