Skip to main content

Install from PyPI

Decepticon is published as a Python package. Install the core SDK:
decepticon is a client SDK, not a standalone app. It ships the agent factories, middleware, tools, and skills — but LLM calls and sandbox execution are routed to runtime services over HTTP. To actually run agents you also need those services (the Docker stack, or your own endpoints).

The two tiers

The SDK connects to the services via environment variables:
  • DECEPTICON_LLM__PROXY_URL — the LiteLLM proxy (default http://localhost:4000)
  • SAAS_SANDBOX_URL — the sandbox HTTP daemon (e.g. http://localhost:9999)
For a turnkey local stack, use the Quick Start installer. The pip package is for embedding the agents into your own service.

Use a pre-built agent

Each of the 16 agent factories accepts langchain-style keyword overrides — tools=, middleware=, system_prompt=, llm=, and more.

Extend with a plugin bundle

Ship proprietary tools, middleware, prompts, or sub-agents without forking — register a PluginBundle under the decepticon.bundles entry point:
Activate it with DECEPTICON_PLUGINS=standard,mybundle. This is exactly how a downstream product layers proprietary capability on top of the open core — it depends on decepticon, it does not fork it.

Versioning

Pin a compatible range in your pyproject.toml:
The full override surface — factory kwargs, declarative PluginBundle plugins, build_middleware(slots=...) for custom orchestrators, and the safety gate — is documented in docs/library-usage.md.