Expose OpenAI Codex as an A2A server with a thin, configurable wrapper.
npm install codex-a2aimport { CodexA2AServer } from 'codex-a2a'
const server = new CodexA2AServer({
port: 50002,
getThreadOptions: () => ({
workingDirectory: process.cwd(),
webSearchEnabled: true,
networkAccessEnabled: true,
}),
getTurnOptions: () => ({
outputSchema: undefined,
}),
})
await server.start()
console.log('A2A server running at', server.getUrl())- JSON-RPC and REST A2A endpoints
- Streaming updates for Codex events (messages, tools, file changes)
- Per-context configuration hooks
- Optional agent card overrides
- Configurable CORS policy
- Graceful shutdown with connection draining
- Thread cache with LRU eviction
- Task cancellation via AbortController
import { CodexA2AServer } from 'codex-a2a'
const server = new CodexA2AServer({
agentCard: {
name: 'Codex Local',
provider: { organization: 'My Org', url: 'https://example.com' },
},
})
await server.start()Use configureApp to attach your own Express routes while keeping the built-in A2A endpoints.
import { CodexA2AServer } from 'codex-a2a'
const server = new CodexA2AServer({
configureApp: (app, { requestHandler }) => {
app.get('/health', (_req, res) => {
res.json({ ok: true })
})
app.get('/agent-card', async (_req, res) => {
res.json(await requestHandler.getAgentCard())
})
},
})
await server.start()getThreadOptions(contextId) lets you override Codex thread options per context. The default values are exported as DEFAULT_THREAD_OPTIONS.
import { CodexA2AServer, DEFAULT_THREAD_OPTIONS } from 'codex-a2a'
const server = new CodexA2AServer({
getThreadOptions: () => ({
...DEFAULT_THREAD_OPTIONS,
sandboxMode: 'read-only',
approvalPolicy: 'never',
webSearchEnabled: false,
}),
})getWorkingDirectory(contextId) provides a per-context working directory override.
getTurnOptions(contextId) lets you override per-turn options for runStreamed, such as outputSchema or signal.
By default, the server allows all origins. You can restrict it:
const server = new CodexA2AServer({
cors: {
origin: 'https://example.com',
methods: ['GET', 'POST'],
headers: ['Content-Type'],
},
})Threads are cached per context. Set maxThreads to control the cache size (default 64). The least-recently-used thread is evicted when the limit is reached.
const server = new CodexA2AServer({
maxThreads: 32,
})stop() waits for active connections to drain before closing. Set shutdownTimeout to control the max wait time in milliseconds (default 5000).
await server.stop()Each context's Codex thread is cached in memory and survives LRU eviction. To resume
a thread across a server restart, capture the id the server surfaces on the thread-started
status-update and send it back on a later message. Exported types and helpers keep you off
the raw metadata keys:
import { threadIdMetadata, type CodexAgentMetadata } from 'codex-a2a'
// Client side — read the id the server surfaced on a status-update:
const codexAgent = statusUpdate.metadata?.codexAgent as CodexAgentMetadata | undefined
if (codexAgent?.kind === 'thread-started' && codexAgent.threadId) {
savedThreadId = codexAgent.threadId
}
// Client side — bind a later message to that thread to resume it:
const message = {
kind: 'message',
role: 'user',
messageId: crypto.randomUUID(),
parts: [{ kind: 'text', text: 'continue' }],
metadata: threadIdMetadata(savedThreadId),
}CodexAgentEventKind types the metadata.codexAgent.kind discriminator on every status-update.
On the server side, readThreadId(message) is the inbound counterpart (it also accepts the
legacy metadata.codexThreadId key). Resumed sessions are read from ~/.codex/sessions.
Send A2A file parts with an image/* MIME type alongside (or instead of) text.
Inline base64 bytes are written to a temp file and removed after the turn; local
file:// paths are passed through only when they resolve inside the working directory
(or a configured additionalDirectories entry). Remote http(s) URIs and non-image
files are ignored.
const message = {
kind: 'message',
role: 'user',
messageId: crypto.randomUUID(),
parts: [
{ kind: 'text', text: 'What is in this screenshot?' },
{ kind: 'file', file: { bytes: base64Png, mimeType: 'image/png', name: 'shot.png' } },
],
}new CodexA2AServer(options)
server.start()
server.stop()
server.getUrl()
server.isRunning()
server.cancelTask(taskId)When connected to the A2A server, the following Codex items are surfaced as A2A updates:
thread.started->status-update(exposesmetadata.codexAgent.threadId)agent_message->status-update(text message)reasoning->status-update(thought payload)command_execution->status-update+artifact-update(stdout/stderr)mcp_tool_call->status-update+artifact-update(tool result)file_change->status-update+artifact-update(changes list)todo_list->status-update+artifact-update(todo items)web_search->status-updateerror->status-update(failure)
pnpm run build
pnpm run test
pnpm run typecheck
pnpm changeset # create a changeset before submitting a PR- codex-a2a (Python) — A production-grade, standalone Python implementation with SQLite persistence, built-in auth, interrupt callbacks, and outbound A2A client support. Great for service-oriented deployments and agent networks.