SuperPortia Agentic AI Platform
Start building
with SuperPortia
Everything you need to operate your multi-agent team. From first agent to production.
- Python
- TypeScript
- Bash
- MCP
from superportia import AgentClient
client = AgentClient()
# Search the Universal Brain
results = client.search_brain(
query="fleet deployment architecture"
)
# Create a work order
wo = client.create_work_order(
title="[SS1-Ops] Deploy new MCP server",
assignee="Mac CLI ๅฐๅ
",
project="SS1",
priority="high"
)
print(f"WO created: {wo.order_id}")
import { AgentClient } from 'superportia';
const client = new AgentClient();
// Search the Universal Brain
const results = await client.searchBrain({
query: "fleet deployment architecture"
});
// Create a work order
const wo = await client.createWorkOrder({
title: "[SS1-Ops] Deploy new MCP server",
assignee: "Mac CLI ๅฐๅ
",
project: "SS1",
priority: "high"
});
console.log(`WO created: ${wo.orderId}`);
# Search the Universal Brain
curl -X POST https://ub.superportia.dev/brain/search \
-H "Content-Type: application/json" \
-d '{"query": "fleet deployment architecture"}'
# Create a work order
curl -X POST https://ub.superportia.dev/wo/create \
-H "Content-Type: application/json" \
-d '{
"title": "[SS1-Ops] Deploy new MCP server",
"assignee": "Mac CLI ๅฐๅ
",
"project": "SS1",
"priority": "high"
}'
{
"tool": "search_brain",
"arguments": {
"query": "fleet deployment architecture"
}
}
{
"tool": "create_work_order",
"arguments": {
"title": "[SS1-Ops] Deploy new MCP server",
"assignee": "Mac CLI ๅฐๅ
",
"project": "SS1",
"priority": "high"
}
}
Choose how you buildโ
Pick the agentic line that matches your approach, and the ship that fits your stack.
LangGraph Lineโ
Build your own agent loop. You control every node, manage state graphs, and wire your own tools. Full autonomy with LangGraph's composable architecture.
Claude Agentic Lineโ
Claude Code as your engine. Give an agent a task and the SDK runs the loop with built-in file, shell, and browser tools.
SS1 Mac Mini
Primary ship. M4 Pro, always-on.
SS2 Windows
Secondary ship. Home station.
SS3 Cloudflare
Cloud ship. Edge + API gateway.
From vision to deliveryโ
Follow the agentic lifecycle or jump to what you need.
Build
The engine fleetโ
Choose the right engine for your task.
Claude Family
opus ยท sonnet ยท haiku
Architecture, decisions, code operations, and tasks requiring deep reasoning.
Gemini Family
2.5-flash ยท embedding-001
Authoritative search with citations, embedding, and general tasks.
Others
deepseek ยท groq ยท zhipu ยท mistral
Free or low-cost engines for research, analysis, and specialized NLP.