Skip to main content
Subconscious is a developer-first platform for building production-ready AI agents. We provide a complete agent system that handles context management, tool orchestration, and long-horizon reasoning, so you can focus on defining what your agent should do. Our platform works with any service or tool, including MCPs, giving you everything you need to deploy sophisticated agents at scale.

Developer quickstart

Build with AI coding assistants: Install our skill to get expert Subconscious guidance while coding:
npx skills add https://github.com/subconscious-systems/skills --skill subconscious-dev
This gives Claude Code, Cursor, and other AI assistants deep knowledge of Subconscious patterns—perfect for vibecoding your agent apps!

Try it now

from subconscious import Subconscious

client = Subconscious(api_key="your-api-key")

run = client.run(
    engine="tim-gpt",
    input={"instructions": "Summarize the latest AI news"},
    options={"await_completion": True},
)

print(run.result.answer)

Engines

Our agent engines combine a language model with a custom inference runtime. We offer Unified Engines (co-designed model and runtime) and Compound Engines (frontier models with smart context management). View all engines →

Start building