Skip to main content

isA Agent SDK - Build AI agents with human-in-the-loop capabilities, MCP integration, and advanced features

Project description

isA Agent SDK

Tests Dependency Audit

A complete AI Agent SDK for building intelligent agents with advanced features. Compatible with Claude Agent SDK patterns, with additional capabilities.

Features

  • Claude Agent SDK Compatible - Familiar API patterns
  • Streaming Messages - Real-time response streaming
  • Built-in Tools - Read, Write, Edit, Bash, WebSearch, etc.
  • MCP Integration - Model Context Protocol with offline fallback
  • Human-in-the-Loop - Durable execution with checkpoints
  • Skills System - Local-first skill loading with MCP fallback
  • Project Config - .isa directory for project-specific settings
  • Event Triggers - Proactive agent activation
  • Multiple Execution Modes - Reactive, Collaborative, Proactive
  • A2A Ready - Agent Card + JSON-RPC client/server adapters
  • Multi-Agent Swarm - Dynamic agent handoffs with [HANDOFF:] directives
  • DAG Task Execution - Dependency-ordered workflows with parallel wavefronts
  • Production Resilience - Circuit breakers, bulkhead isolation, error classification, recovery playbooks
  • Observability - OpenTelemetry tracing, structured error logging, Prometheus metrics
  • Intent-Driven Routing - SenseNode classifies intent for automatic model tier selection
  • Graceful Degradation - Nodes skip optional operations when services are degraded
  • 3,500+ Tests - Comprehensive coverage including chaos tests

Multi-Agent Patterns

Installation

pip install isa-agent-sdk

# With FastAPI server support
pip install isa-agent-sdk[server]

# With OpenTelemetry tracing
pip install isa-agent-sdk[observability]

Project Setup

Initialize a .isa directory for project-specific configuration:

mkdir -p .isa/skills
my-project/
├── .isa/
│   ├── config.json          # Project configuration
│   ├── settings.local.json  # MCP servers, permissions
│   └── skills/              # Local skills (loaded first)
│       └── my-skill/
│           └── SKILL.md
└── ...

Skills in .isa/skills/ are loaded before MCP, allowing project-specific overrides.

Quick Start

Basic Query

from isa_agent_sdk import query, ISAAgentOptions

# Simple usage
async for msg in query("Hello, world!"):
    print(msg.content)

# With options
async for msg in query(
    "Fix the bug in auth.py",
    options=ISAAgentOptions(
        allowed_tools=["Read", "Edit", "Bash"],
        execution_mode="collaborative"
    )
):
    if msg.is_text:
        print(msg.content, end="")
    elif msg.is_tool_use:
        print(f"[Tool: {msg.tool_name}]")

Human-in-the-Loop

from isa_agent_sdk import request_tool_permission, checkpoint

# Request permission before dangerous operations
authorized = await request_tool_permission(
    "delete_file",
    {"path": "important_data.txt"}
)
if authorized:
    # proceed with deletion
    pass

# Create checkpoints for durable execution
await checkpoint("about_to_deploy", {
    "version": "1.0.0",
    "environment": "production"
})

HTTP Client (for deployed apps)

from isa_agent_sdk import ISAAgent

client = ISAAgent(base_url="http://localhost:8000")

# Non-streaming
response = client.chat.create(
    message="Explain quantum computing",
    user_id="user123"
)
print(response.content)

# Streaming
for event in client.chat.stream(
    message="Write a Python function",
    user_id="user123"
):
    if event.is_content:
        print(event.content, end="")

Building a FastAPI Agent Service

from fastapi import FastAPI
from isa_agent_sdk import query, ISAAgentOptions

app = FastAPI()

@app.post("/query")
async def agent_query(prompt: str):
    responses = []
    async for msg in query(prompt):
        if msg.is_text:
            responses.append(msg.content)
    return {"response": "".join(responses)}

A2A (Agent-to-Agent) Integration

from fastapi import FastAPI
from isa_agent_sdk import (
    A2AAgentCard,
    A2AClient,
    A2AServerAdapter,
    register_a2a_fastapi_routes,
    build_auth_service_token_validator,
)

# Build agent card
card = A2AAgentCard(
    name="isA Agent",
    url="https://agent.example.com/a2a",
    token_url="https://auth.example.com/oauth/token",
).to_dict()

# Client call to remote A2A agent
client = A2AClient("https://remote-agent.example.com")
response = await client.send_message("https://remote-agent.example.com/a2a", "Hello from isA")

# Server adapter maps A2A JSON-RPC -> isa_agent_sdk ask/query
adapter = A2AServerAdapter()
rpc_result = await adapter.handle_rpc({
    "jsonrpc": "2.0",
    "id": "1",
    "method": "message/send",
    "params": {"message": {"parts": [{"text": "Summarize this repo"}]}}
})

# Mount A2A endpoints in FastAPI
app = FastAPI()
register_a2a_fastapi_routes(
    app,
    adapter=adapter,
    agent_card=card,
    rpc_path="/a2a",
    auth_validator=build_auth_service_token_validator(
        "http://localhost:8201",
        required_scopes=["a2a.invoke"],
    ),
)

Execution Modes

  • Reactive - Responds to explicit requests
  • Collaborative - Checkpoints for human approval
  • Proactive - Anticipates needs, suggests actions

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

isa_agent_sdk-0.3.0.tar.gz (988.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

isa_agent_sdk-0.3.0-py3-none-any.whl (1.1 MB view details)

Uploaded Python 3

File details

Details for the file isa_agent_sdk-0.3.0.tar.gz.

File metadata

  • Download URL: isa_agent_sdk-0.3.0.tar.gz
  • Upload date:
  • Size: 988.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for isa_agent_sdk-0.3.0.tar.gz
Algorithm Hash digest
SHA256 2893824a4bf7513b02e1c75231fb674beecb9213dfb1ae89e35dd3789409cb5f
MD5 ee3b6662bae3a8870e0ebc8cb6376ddc
BLAKE2b-256 b0a54f3e196ae41e40d004dc70a3ec3a15de7640058709df48a4274e4e0bb49a

See more details on using hashes here.

File details

Details for the file isa_agent_sdk-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: isa_agent_sdk-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for isa_agent_sdk-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cd4004a7d4149c4c1be93ee8969e686a41cf2c1c1c39ae7b356ae094a961c80f
MD5 c653fa7fea0080caf48e8540a34dde3c
BLAKE2b-256 4b3e238651529c5eb9a5ecbdc52b024b223bfc104a090edeb900d0e9fae5f1f6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page