Install
$ agentstack add mcp-hishamkaram-codex-agent-sdk-go ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ● Shell / process execution Used
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Codex Agent SDK for Go
[](https://go.dev/) [](LICENSE)
Go SDK for the OpenAI Codex CLI app-server transport — spawns codex app-server as a child process, speaks JSON-RPC 2.0 over stdio, and exposes a typed Go API for threads, turns, streaming events, approvals, and MCP configuration.
> Status: preview (v0.x). API may change before v1.0.0. Feedback welcome.
Sibling SDK: claude-agent-sdk-go does the same thing for the Claude Code CLI.
Why this SDK?
Codex's app-server exposes a JSON-RPC 2.0 protocol over stdio — bidirectional, stateful, with server-initiated approval requests. Consuming it directly means handling line-framing with a 2 MiB minimum buffer, demultiplexing three request shapes (responses, notifications, server-initiated requests), serializing concurrent turns to preserve event boundaries, and mapping schema-covered notification methods to typed Go events. This SDK handles all of that and exposes a clean, typed API.
Feature matrix
| Feature | Status on current mainline | |---|---| | codex app-server transport | ✅ | | codex exec --json one-shot | ❌ deferred to v2 | | Thread start / resume / fork / archive / list | ✅ | | thread.Run() (buffered) + thread.RunStreamed() (channel) | ✅ | | Streaming events: turn/item lifecycle, token usage, thread lifecycle/goals, process output, model/account/warning events, hooks, realtime, and unknown-event fallback | ✅ | | ThreadItem variants: agentMessage, userMessage, commandExecution, fileChange, mcpToolCall, webSearch, memoryRead/Write, plan, reasoning, systemError | ✅ | | Input variants: text, localImage | ✅ | | Sandbox modes: read-only, workspace-write, danger-full-access | ✅ | | Approval policies: untrusted, on-failure, on-request, granular, never | ✅ | | Approval callback (server-initiated request → caller decides) | ✅ | | MCP server config (stdio + streamable HTTP) | ✅ | | JSON-schema structured output | ✅ | | Typed errors with Is*() helpers | ✅ | | Turn interrupt | ✅ | | CLI discovery + soft version probe | ✅ | | Goroutine leak detection (goleak) | ✅ | | Hook observer events (HookStarted / HookCompleted) | ✅ v0.2.0 — via WithHooks(true) | | Programmatic Go hook callbacks (shim bridge, auto-wired) | ✅ v0.3.0 — WithHookCallback(h) writes hooks.json automatically and restores on Close. See docs/hooks.md. | | Slash-command equivalents (Compact, SetModel, ListMCPServerStatus, Review, etc.) | ✅ v0.4.0 — typed methods plus GitDiff / InitAgentsMD helpers. See docs/commands.md. | | Native FFI (CGO) | ❌ deferred |
Prerequisites
- Go 1.25+
- Codex CLI installed:
npm install -g @openai/codex(or your distro's equivalent) - Recommended/tested CLI:
0.130.0(verified 2026-05-13); older versions run with a soft warning. - Auth (one of):
OPENAI_API_KEYenvironment variable (pay-per-token)~/.codex/auth.json(ChatGPT Plus/Pro subscription; runcodex loginonce outside the daemon)
Install
go get github.com/hishamkaram/codex-agent-sdk-go
Quick start
One-shot query
package main
import (
"context"
"fmt"
"log"
codex "github.com/hishamkaram/codex-agent-sdk-go"
"github.com/hishamkaram/codex-agent-sdk-go/types"
)
func main() {
ctx := context.Background()
opts := types.NewCodexOptions().
WithModel("gpt-5.4").
WithSandbox(types.SandboxReadOnly).
WithApprovalPolicy(types.ApprovalOnRequest)
events, err := codex.Query(ctx, "Summarize the repo in the current directory", opts)
if err != nil {
log.Fatal(err)
}
for event := range events {
switch e := event.(type) {
case *types.ItemCompleted:
if msg, ok := e.Item.(*types.AgentMessage); ok {
fmt.Println(msg.Text)
}
case *types.TurnCompleted:
fmt.Printf("Tokens: in=%d out=%d\n", e.Usage.InputTokens, e.Usage.OutputTokens)
}
}
}
Interactive multi-turn client
client, err := codex.NewClient(ctx, opts)
if err != nil { log.Fatal(err) }
defer client.Close(ctx)
thread, err := client.StartThread(ctx, &types.ThreadOptions{Cwd: "/my/project"})
if err != nil { log.Fatal(err) }
events, _ := thread.RunStreamed(ctx, "Make a plan to fix the CI failure", nil)
for event := range events { /* ... */ }
events2, _ := thread.RunStreamed(ctx, "Now implement the plan", nil)
for event := range events2 { /* ... */ }
Approval callback
opts = opts.WithApprovalCallback(func(ctx context.Context, req types.ApprovalRequest) types.ApprovalDecision {
if r, ok := req.(*types.CommandExecutionApprovalRequest); ok {
if isSafeCommand(r.Command) {
return types.ApprovalAccept{}
}
}
return types.ApprovalDeny{Reason: "not on allowlist"}
})
What it does
- Spawns
codex app-serveras a subprocess with stdin/stdout pipes - Frames JSON-RPC 2.0 messages with LF termination (
jsonrpcfield omitted on wire) - Demultiplexes responses (id → pending chan), notifications (→ events chan), server-initiated requests (→ approval callback)
- Serializes all stdin writes via single
stdinMuto prevent frame interleave - Serializes per-thread
Run()calls viaturnMuto preserve turn boundaries - Maintains a 2 MiB read buffer for large notification payloads
- Translates raw JSON-RPC notifications into typed Go events with schema drift checks for Codex upgrades
- Handles CLI discovery (PATH,
~/.codex/bin, brew, npm install paths) and soft version probe - Emits structured logs via zap
What it does NOT do (current preview)
codex exec --json(fire-and-forget) transport — theapp-serverpath is the only one implemented- Codex-as-MCP-server mode (experimental upstream)
- Dynamic OpenAI pricing table (use static rates in this SDK; fetch at integration time if needed)
Docs
- [
docs/getting-started.md](docs/getting-started.md) — install, first query, multi-turn, streaming, resume, approvals in ~2 pages - [
docs/architecture.md](docs/architecture.md) — the four layers, dispatcher goroutine, turn lock, concurrency contract, shutdown ladder - [
docs/wire-protocol.md](docs/wire-protocol.md) — JSON-RPC method reference, wire quirks (flat vs nested IDs, per-item delta methods), known-unknown methods - [
docs/approvals.md](docs/approvals.md) — approval request/decision taxonomy, sandbox × policy matrix, deadlock warning - [
docs/hooks.md](docs/hooks.md) — observer mode + auto-wired programmatic callbacks viaWithHookCallback(v0.3.0) - [
docs/commands.md](docs/commands.md) — slash-command-equivalent typed methods (Compact, SetModel, Rollback, StartReview, …) and local-helper parity (GitDiff, InitAgentsMD) (v0.4.0)
Examples
Eight runnable examples under [examples/](examples/):
| Example | What it shows | |---|---| | [simple_query](examples/simplequery/main.go) | One-shot Query() | | [streaming](examples/streaming/main.go) | Multi-turn RunStreamed + delta streaming | | [resume](examples/resume/main.go) | Persistent thread across process restarts | | [fork](examples/fork/main.go) | Branching a thread | | [with_approvals](examples/withapprovals/main.go) | Command + file approval callback | | [with_mcp](examples/withmcp/main.go) | Registering MCP servers (stdio + HTTP) | | [with_hooks](examples/withhooks/main.go) | Observe HookStarted/HookCompleted events from your configured hooks | | [structured_output](examples/structured_output/main.go) | JSON-schema-constrained final response |
Build all: make examples. Run any: go run ./examples/.
License
MIT — see [LICENSE](LICENSE).
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: hishamkaram
- Source: hishamkaram/codex-agent-sdk-go
- License: MIT
- Homepage: https://pkg.go.dev/github.com/hishamkaram/codex-agent-sdk-go
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.