Skip to main content

SimAgentPlg

English | 简体中文

SimAgentPlg 0.2.3 is a lightweight framework for building stateful OpenAI-compatible agents with composable tool handlers, optional MCP tools, local skill routing, and simple role-based multi-agent workflows.

Features

  • Stateful BaseAgent with conversation memory and explicit reset()
  • Immutable, required agent_id owned by each agent
  • OpenAI-compatible model configuration through .env or direct construction
  • Opt-in tool mode with explicit handler registration
  • Built-in BashHandler for bounded Bash execution
  • Built-in GitDiffHandler for Git working-tree inspection
  • Built-in FinishHandler for explicit task completion
  • MethodToolHandler for small custom Python tools
  • AgentManager with per-agent serialization and cross-agent concurrency
  • Linear AgentWorkflow for planner, executor, reviewer, and similar roles
  • Optional MCP integration through McpToolHandler and McpServerManager
  • Optional local skill discovery and routing through SkillManager

Python 3.12 or newer is required.

Installation

Install the local project and dependencies with uv:

uv sync

Configuration

Copy .env_example to .env, then fill in your model credentials:

MODEL_API_KEY=sk-xxxxxxxx
MODEL_URL=https://api.deepseek.com
CHAT_MODEL=deepseek-v4-flash
SKILL_MODEL=deepseek-v4-flash
LLM_TIMEOUT=60
LLM_TEMPERATURE=0.7

ModelConfig.from_env() reads CHAT_MODEL, MODEL_API_KEY, MODEL_URL, LLM_TIMEOUT, and LLM_TEMPERATURE.

You can also construct a config directly:

from simagentplg import ModelConfig

config = ModelConfig(
    model="deepseek-v4-flash",
    api_key="sk-xxxxxxxx",
    base_url="https://api.deepseek.com",
)

Quick Start

Plain Chat

Tool execution is disabled by default. A plain agent keeps conversation history between runtime() calls:

from simagentplg import BaseAgent, ModelConfig

agent = BaseAgent(
    config=ModelConfig.from_env(),
    agent_id="tutor",
    system_prompt="You are a concise Python tutor.",
)

first = await agent.runtime(task="Remember that I prefer Python.")
second = await agent.runtime(task="Which language do I prefer?")

agent.reset()
await agent.shutdown()

Tool Mode

Set enable_tools=True and pass handlers explicitly:

import json

from simagentplg import (
    BaseAgent,
    BashHandler,
    FinishHandler,
    GitDiffHandler,
    ModelConfig,
)

agent = BaseAgent(
    config=ModelConfig.from_env(),
    agent_id="developer",
    system_prompt="Complete coding tasks using the available tools.",
    handlers=[BashHandler(), GitDiffHandler(), FinishHandler()],
    enable_tools=True,
)

result = await agent.runtime(task="Create hello.py that prints 'hello'.")
report = json.loads(result)
print(report["summary"])

await agent.shutdown()

Tool-enabled agents expose only the handlers passed to BaseAgent:

BaseAgent
  -> BashHandler
       -> bash_run
  -> GitDiffHandler
       -> run_gitdiff
  -> FinishHandler
       -> run_finish
  -> MethodToolHandler subclasses
  -> McpToolHandler

In tool mode, ordinary text does not complete a task. The model must call a finishing tool, normally run_finish, or a custom tool must return StepOutcome(..., should_exit=True).

Tool mode stops with an error when:

  • no finishing tool is called within max_steps
  • the same tool and arguments are requested three consecutive times

Built-In Handlers

BashHandler exposes bash_run and executes a bounded Bash command. It has a working directory, timeout, and output limit.

GitDiffHandler exposes run_gitdiff. It inspects the current Git working tree and does not finish the task:

{
  "status": "success",
  "mode": "status",
  "command": "git status --short",
  "output": "?? hello.py\n"
}

Supported modes are status for git status --short, stat for git diff --stat, and diff for git diff.

FinishHandler exposes run_finish. It returns a JSON result and exits the current runtime():

{
  "summary": "Created hello.py"
}

Tool Middleware

ToolMiddleware can inspect tool calls before execution. The framework does not define global risk levels; applications can write their own middleware or use BashApprovalMiddleware to require y/n approval only when bash_run matches risky command patterns:

from simagentplg import (
    BaseAgent,
    BashApprovalMiddleware,
    BashHandler,
    FinishHandler,
    ModelConfig,
)

agent = BaseAgent(
    ModelConfig.from_env(),
    agent_id="coder",
    handlers=[BashHandler(), FinishHandler()],
    middlewares=[BashApprovalMiddleware()],
    enable_tools=True,
)

Custom Tool Handlers

MethodToolHandler maps a tool named add to an async method named do_add:

from collections.abc import Mapping
from typing import Any

from simagentplg import BaseAgent, MethodToolHandler, ModelConfig, StepOutcome

ADD_TOOL = {
    "type": "function",
    "function": {
        "name": "add",
        "description": "Add two numbers.",
        "parameters": {
            "type": "object",
            "properties": {
                "left": {"type": "number"},
                "right": {"type": "number"},
            },
            "required": ["left", "right"],
        },
    },
}


class MathHandler(MethodToolHandler):
    def __init__(self) -> None:
        super().__init__((ADD_TOOL,))

    async def do_add(self, arguments: Mapping[str, Any]) -> StepOutcome:
        return StepOutcome(
            {"value": arguments["left"] + arguments["right"]}
        )


agent = BaseAgent(
    config=ModelConfig.from_env(),
    agent_id="calculator",
    handlers=[MathHandler()],
    enable_tools=True,
)

Handler startup builds one routing table. Duplicate tool names are rejected instead of silently overriding another handler.

Agent Manager

Each agent owns its identity, so registration does not repeat the ID:

from simagentplg import AgentManager, BaseAgent, ModelConfig

config = ModelConfig.from_env()
manager = AgentManager()

manager.register(
    BaseAgent(
        config=config,
        agent_id="writer",
        system_prompt="You write concise release notes.",
    )
)
manager.register(
    BaseAgent(
        config=config,
        agent_id="reviewer",
        system_prompt="You review software changes for risk.",
    )
)

results = await manager.run_many(
    {
        "writer": "Write release notes for version 0.2.3.",
        "reviewer": "Review the release for compatibility risks.",
    }
)

await manager.shutdown()

Calls to the same agent are serialized because they share message history. Calls to different agents can run concurrently. run_many() returns failures as values so one failed agent does not cancel the others.

run_isolated(agent_id, task) resets and executes an agent while holding the same per-agent lock. Workflows use it to avoid implicit history leaks between roles or steps.

Role-Based Workflow

AgentWorkflow executes agent roles as a validated linear pipeline:

from simagentplg import (
    AgentManager,
    AgentWorkflow,
    BaseAgent,
    ModelConfig,
    WorkflowStep,
)

config = ModelConfig.from_env()
manager = AgentManager()
manager.register(
    BaseAgent(
        config=config,
        agent_id="planner",
        system_prompt="Create concise implementation plans.",
    )
)
manager.register(
    BaseAgent(
        config=config,
        agent_id="executor",
        system_prompt="Execute the plan using tools.",
        enable_tools=True,
    )
)
manager.register(
    BaseAgent(
        config=config,
        agent_id="reviewer",
        system_prompt="Review completed work for correctness and risk.",
    )
)

workflow = AgentWorkflow(
    manager,
    [
        WorkflowStep(
            name="plan",
            agent_id="planner",
            prompt="Plan this task:\n{input}",
        ),
        WorkflowStep(
            name="execute",
            agent_id="executor",
            prompt=(
                "Original task:\n{original_task}\n\n"
                "Execute this plan:\n{input}"
            ),
        ),
        WorkflowStep(
            name="review",
            agent_id="reviewer",
            prompt="Review the execution result:\n{execute}",
        ),
    ],
)

result = await workflow.run("Implement user login")
print(result.final_output)
await manager.shutdown()

Workflow templates support {input}, {original_task}, and outputs from completed named steps such as {plan} or {execute}. Unknown variables and forward references are rejected when the workflow is created. Version 0.2.3 supports linear steps only.

MCP Tools

MCP is opt-in and follows the same handler contract:

from simagentplg import BaseAgent, McpToolHandler, ModelConfig

agent = BaseAgent(
    config=ModelConfig.from_env(),
    agent_id="browser",
    handlers=[McpToolHandler("example/mcp_config.json")],
    enable_tools=True,
)

Example MCP configuration:

{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": ["@playwright/mcp@latest", "--headless"]
    }
  }
}

McpServerManager loads configured services, exposes tools with service-name prefixes, and lets one failed service avoid blocking the rest.

Skills

Skills are optional prompt extensions and remain separate from tool handlers:

from pathlib import Path

from simagentplg import BaseAgent, ModelConfig

agent = BaseAgent(
    config=ModelConfig.from_env(),
    agent_id="skilled-agent",
    skills_dir=Path("example/skills"),
    enable_tools=True,
)

SkillManager scans each child directory containing SKILL.md. The routing model selected by SKILL_MODEL chooses a skill from its YAML front matter. The selected SKILL.md, optional template.md, and optional examples/sample.md are injected into the agent context.

example/skills/
  release_notes/
    SKILL.md
    template.md
    examples/
      sample.md

Skills currently run through the tool-mode lifecycle, so set enable_tools=True and finish with run_finish.

Examples

Runnable examples are available in example/:

uv run python example/01_stateful_chat.py
uv run python example/02_custom_tool.py
uv run python example/03_multi_agent.py
uv run python example/04_mcp_tools.py
uv run python example/05_role_workflow.py
uv run python example/06_skill.py
uv run python example/07_bash_approval.py

Testing

Run the test suite from the repository root:

uv run python -m unittest

The current tests cover agents, custom handlers, tool middleware, finish behavior, manager locking/concurrency, workflows, and importable examples.

Public API

BaseAgent(
    config: ModelConfig | None = None,
    *,
    agent_id: str,
    system_prompt: str = REACT_LOOP_PROMPT,
    handlers: Iterable[BaseHandler] | None = None,
    middlewares: Iterable[MiddleWare] | None = None,
    enable_tools: bool = False,
    skills_dir: str | Path | None = None,
    max_steps: int = 20,
    client: Any | None = None,
)

await agent.runtime(*, task: str) -> str | None
agent.reset(history=None)
await agent.startup()
await agent.shutdown()

The top-level package exports BaseAgent, ModelConfig, StepOutcome, AgentManager, workflow types, handler base classes, MethodToolHandler, BashHandler, GitDiffHandler, FinishHandler, McpToolHandler, handler errors, McpServerManager, SkillManager, and default resource paths.

Changes in 0.2.3

  • Added the sibling FinishHandler and built-in run_finish tool
  • Added the sibling GitDiffHandler and built-in run_gitdiff tool
  • Required explicit finishing-tool completion in tool mode
  • Added protection against three identical consecutive tool calls
  • Raised a clear error when tool mode exhausts max_steps
  • Kept BashHandler focused exclusively on bash_run

License

MIT

Download files

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

Source Distribution

simagentplg-0.2.3.tar.gz (107.3 kB view details)

Uploaded Source

Built Distribution

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

simagentplg-0.2.3-py3-none-any.whl (30.9 kB view details)

Uploaded Python 3

File details

Details for the file simagentplg-0.2.3.tar.gz.

File metadata

  • Download URL: simagentplg-0.2.3.tar.gz
  • Upload date:
  • Size: 107.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for simagentplg-0.2.3.tar.gz
Algorithm Hash digest
SHA256 2b9c2a6b06d04e551170f94d71959b2813f939e719d09bf2617ec399d07b2065
MD5 e1289efbd08fb8448fa059c98f18aecd
BLAKE2b-256 91b1f3e4fc2af3fada46ac7b83f728f7f3c453870e2bfb801c38b0c2385a43fb

See more details on using hashes here.

File details

Details for the file simagentplg-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: simagentplg-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for simagentplg-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d54ab8b40492813ffa8d4d03c7cb5fffc22e372f5ee1dad9f0f4d8fb60764253
MD5 f728cb8084279c2e2887932bd75526d8
BLAKE2b-256 d3a24c45b032f8b863e44a4858811b9e3a3b7b45b875ab04addfd1d8dc08bbc0

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 Sentry Error logging StatusPage Status page