Developers
The platform, before it opens to developers.
Everything on this page is built and in use inside AIQuity Life. Public developer access is not open yet. This is what exists, what state it is in, and what building on it will mean.
1import { createRoot, type Root } from 'react-dom/client';2import MainApp from './components/MainApp';3 4export type ChakraApp = {5 name: string;6 version: string;7 mount: (container: HTMLElement, props?: any) => void;8 unmount: (container: HTMLElement) => void;9 getInfo: () => { name: string; version: string; description?: string };10};11 12let root: Root | null = null;13const app: ChakraApp = {14 name: 'My Chakra', version: '1.0.0',15 mount(container, props = {}) {16 root = createRoot(container);17 root.render(<MainApp {...props} />);18 },19 unmount() { root?.unmount(); root = null; },20 getInfo() { return { name: 'My Chakra', version: '1.0.0' }; },21};22export default app;Chakras
Self-contained React micro-apps on one contract: mount, unmount, getInfo. The host hands each one the user, their data, MCP tools, events and theme.
The CLI
The platform as a local, scriptable, offline-first control plane: spaces, todos, goals, canvas, Juggernaut chat, jobs, all from a terminal and a git checkout.
Agent tooling
Pattern Studio to compose agents visually, registries for tools, skills, hooks and workflows, and traces to see what an agent actually did.
MCP connectors
Inside Juggernaut, connect tools over the Model Context Protocol: pick a server, authorise it, and the companion can use it in a conversation.
How it worksChakras Pro and the Chakra Store
An in-browser workspace to build a Chakra (editor, files, git, live preview) and a store to browse, publish and import them. Built; not open in production.
See the roadmapFeatured
What exists today
Full docs| Surface | What it does | State |
|---|---|---|
| MCP connectors in Juggernaut | Connect and authorise MCP tool servers from the chat input. | Live |
| Agent registries | Tools, nodes, patterns, skills, hooks, slash commands, rules, workflows. | Signed-in users |
| Pattern Studio | Visual agent-pattern builder with a node palette, inspector and templates. | Signed-in users |
| Observability | Traces, sessions, prompts and datasets for agent runs. | Signed-in users |
| Chakras (built-in) | Micro-apps such as Timer Plus and Goals Lite mounted in the canvas. | Private beta |
| Chakras Pro | Build your own Chakra in the browser: editor, files, git, preview. | Private beta |
| The aiquity CLI | Terminal client and control plane; installs from a private registry today. | Private beta |
| Chakra Store | Browse, publish and import Chakras. | Coming |
| Public API keys and SDK | Not available. The REST API is not public. | Coming |
States follow the launch manifest: live means in production for everyone; signed-in means in the product behind sign-in; private beta means built and in internal use; coming means not yet.