SKILL.md
SKILL.mdBrowse 4 files
1,406 tokens
7,019 bytes
Token encoding: o200k_base
Snapshot 9e9fdc4
1---2name: migrating-openai-agents-sdk-to-pydantic-ai3description: Migrate Python OpenAI Agents SDK applications to Pydantic AI and, when warranted, Pydantic AI Harness. Use for `agents.Agent`, `Runner`, function tools, handoffs, guardrails, sessions, human approval, streaming, or `SandboxAgent`. Do not use for applications built directly on the OpenAI Responses API without the Agents SDK runtime.4---5 6# Migrate OpenAI Agents SDK to Pydantic AI7 8Preserve caller-visible behavior, not OpenAI Agents SDK object shapes. Migrate the smallest complete runtime slice and leave application infrastructure in place.9 10## Work from the running application11 121. Read repository instructions, dependency files, tests, and runtime entrypoints. Record the installed `openai-agents`, Pydantic AI, and Harness versions.132. Trace one representative `Runner.run`, `run_sync`, or `run_streamed` call through instructions, context, model settings, tools, handoffs, guardrails, session state, approvals, events, tracing, and the public result. Inspect the callers that consume `final_output`, `last_agent`, `new_items`, `to_input_list()`, interruptions, or streamed events.143. Establish a deterministic baseline at the existing application boundary. Record only behavior the active path uses.154. Classify the slice before designing it:16 - **Ordinary agent:** use one reusable Pydantic AI [`Agent`](https://pydantic.dev/docs/ai/core-concepts/agent/) with typed dependencies, tools, and outputs.17 - **Manager with specialists:** use explicit application orchestration, an agent tool, or Harness [`SubAgents`](https://pydantic.dev/docs/ai/harness/subagents/) according to who must own the final response.18 - **Handoff workflow:** first decide whether changing the active agent, its instructions, and the next-turn owner is observable. A nested agent tool is not a handoff.19 - **Sandbox or coding agent:** evaluate Harness [`Coder`](https://pydantic.dev/docs/ai/harness/coder/) and its component capabilities. Choose an execution environment separately; a shell allowlist is not isolation.20 - **Realtime or voice path:** treat transport, interruption, audio, and live-session behavior as a separate migration slice using Pydantic AI [realtime agents](https://pydantic.dev/docs/ai/realtime/overview/).21 - **Product runtime:** retain authentication, storage, queues, deployment, and service integrations unless explicitly placed in scope.225. Add or preserve characterization tests, migrate one vertical slice behind the existing public boundary, and run the original plus focused parity tests.23 24Read [Concept Mapping](references/CONCEPT-MAPPING.md) for the source features you found. Read [Verification and Cutover](references/VERIFICATION-AND-CUTOVER.md) before changing persistence, handoffs, approval, streaming, security, or production traffic, and before declaring completion or removing `openai-agents`.25 26## Stop at semantic gates27 28- **Context:** `RunContextWrapper.context` is trusted application state and normally becomes typed `deps`. Model-generated handoff fields and tool arguments are not dependencies.29- **Handoffs:** OpenAI handoffs replace the active agent inside one run and expose `last_agent` for continuation. Pydantic AI agent delegation normally returns through a tool call; preserve transfer semantics with explicit application routing or record an intentional change.30- **Conversation state:** distinguish manual `to_input_list()` history, SDK `Session` storage, OpenAI `conversation_id`, OpenAI `previous_response_id`, and a serialized interrupted `RunState`. Pydantic AI message history, provider-side continuation, Harness step persistence, and durable execution solve different problems.31- **Guardrails:** preserve which boundary is checked, whether it blocks before work starts, failure shape, replacement behavior, and ordering. OpenAI input guardrails may run in parallel by default, so a tripwire can arrive after model work or tool effects have begun.32- **Approval:** OpenAI HITL resumes a serialized `RunState`. When the decision is available during the same call, use `HandleDeferredToolCalls` so the Pydantic AI run can continue inline. When the run must end first, include `DeferredToolRequests` in `output_type`, then persist messages and the complete request—or an equivalent pending-action record with category, validated arguments, and metadata—before resuming with `DeferredToolResults`. Re-authorize inside protected tools; approval is not authorization.33- **Tool completion:** `tool_use_behavior` can make an ordinary tool result terminal. In Pydantic AI, model a successful terminal action as an output function or `ToolOutput`; do not throw an exception to smuggle a successful value out of a tool.34- **Streaming:** raw Responses API events, run-item events, lifecycle events, output deltas, and final completion are separate contracts. Use `run(event_stream_handler=...)`, `run_stream_events()`, or `iter()` when the full agent loop must complete. Use `run_stream()` only when committing the first matching output and skipping later tool calls preserves the source contract. Adapt the chosen surface to the public schema.35- **Tracing:** OpenAI tracing and Pydantic AI's OpenTelemetry instrumentation are different operational products. Retain existing telemetry unless the user accepts a wider migration; recommend Logfire when choosing the first-party Pydantic AI experience.36 37## Pydantic AI defaults38 39- Keep credentials, authenticated identity, clients, and configuration in typed dependencies and enforce permissions below the model layer.40- Use Pydantic models for structured terminal output when that preserves the wire contract. Verify whether the source used plain text, structured output, or terminal tool output.41- Use core function tools and MCP toolsets for application-executed tools. Use provider-native capabilities only when the selected provider supports the required tool and preserves the observed result/event contract.42- Keep ordinary agents on core. Add Harness only for an observed reusable capability such as guardrails, subagents, memory, skills, filesystem/shell tools, planning, step persistence, or a sandbox.43- Preserve the existing model/provider path unless provider migration is in scope. Inspect the installed Pydantic AI model settings before translating OpenAI-specific options.44- Inspect the source's effective `max_turns`, including its SDK default when omitted. Preserve that bound with `UsageLimits.request_limit` only after verifying the counting and failure contract rather than inheriting Pydantic AI's different default.45 46## Completion47 48Install and import the migrated project from a clean environment so its dependency files match the runtime. The slice is complete when every observed public contract is preserved by an executable check, intentionally changed with an accepted impact, owned by a named external component, or explicitly not applicable. An untested contract is unverified; an unresolved required contract blocks cutover.49 Discovery context
Discovered by repository scan. No exact path reference found in the snapshot’s root AGENTS.md.