agent-builder

Solid

Build AI agents using pai-agent-sdk with Pydantic AI. Covers agent creation via create_agent(), toolset configuration, session persistence with ResumableState, subagent hierarchies, and browser automation. Use when creating agent applications, configuring custom tools, managing multi-turn sessions, setting up hierarchical agents, or implementing HITL approval flows.

AI & Automation 20 stars 4 forks Updated today BSD-3-Clause

Install

View on GitHub

Quality Score: 74/100

Stars 20%
44
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Building Agents with pai-agent-sdk Build production-ready AI agents with Pydantic AI. ## Quick Start ```python from pai_agent_sdk.agents import create_agent async with create_agent("openai:gpt-4o") as runtime: result = await runtime.agent.run("Hello", deps=runtime.ctx) print(result.output) ``` With tools and streaming: ```python from pai_agent_sdk.agents import create_agent, stream_agent from pai_agent_sdk.toolsets.core.filesystem import tools as fs_tools from pai_agent_sdk.toolsets.core.shell import tools as shell_tools async with create_agent( model="anthropic:claude-sonnet-4", system_prompt="You are a coding assistant.", tools=[*fs_tools, *shell_tools], ) as runtime: async with stream_agent(runtime.agent, "List files", runtime.ctx) as stream: async for event in stream: # Handle streaming events pass ``` ## Installation ```bash pip install pai-agent-sdk[all] # Or selective: pip install pai-agent-sdk[docker,web,document] ``` ## Core Concepts | Concept | Purpose | Reference | | ----------------- | ---------------------------------------------- | ---------------------------------------------------------- | | AgentContext | Session state, model config, tool config | [docs/context.md](docs/context.md) | | Streaming & Hooks | Real-time events, lifecycle hooks | [docs/s...

Details

Author
youware-labs
Repository
youware-labs/pai-agent-sdk
Created
4 months ago
Last Updated
today
Language
Python
License
BSD-3-Clause

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

agent-builder

Design and build AI agents for any domain. Use when users: (1) ask to "create an agent", "build an assistant", or "design an AI system" (2) want to understand agent architecture, agentic patterns, or autonomous AI (3) need help with capabilities, subagents, planning, or skill mechanisms (4) ask about Claude Code, Cursor, or similar agent internals (5) want to build agents for business, research, creative, or operational tasks Keywords: agent, assistant, autonomous, workflow, tool use, multi-step, orchestration

62,572 Updated today
shareAI-lab
AI & Automation Featured

crewai-multi-agent

Multi-agent orchestration framework for autonomous AI collaboration. Use when building teams of specialized agents working together on complex tasks, when you need role-based agent collaboration with memory, or for production workflows requiring sequential/hierarchical execution. Built without LangChain dependencies for lean, fast execution.

27,562 Updated today
davila7
AI & Automation Solid

agent-builder

Build custom AI agents in Claude Code from a user's problem statement. This skill analyzes the user's use case, asks smart clarifying questions, researches the internet for similar agents (GitHub repos, blogs, Claude Code community patterns), and then architects and builds production-ready Claude Code agents — including subagents, skills, hooks, slash commands, MCP integrations, and CLAUDE.md configuration. Use this skill whenever the user wants to create an agent, build an automation workflow, set up a Claude Code subagent, design a multi-agent system, or says things like 'build me an agent for...', 'automate this with Claude Code', 'I want a subagent that...', 'help me create a workflow', 'set up an agent pipeline', or any variation of wanting Claude Code to do something specialized. Also trigger when the user mentions agent architecture, agent SDK, agentic workflows, or task delegation in Claude Code — even if they don't use the word 'agent' explicitly.

38 Updated 2 months ago
keysersoose
AI & Automation Featured

autogpt-agents

Autonomous AI agent platform for building and deploying continuous agents. Use when creating visual workflow agents, deploying persistent autonomous agents, or building complex multi-step AI automation systems.

27,562 Updated today
davila7