DOCUMENTATION
Build on Taskclan
Taskclan is one connected platform, models, agents, cloud and creation tools, reached through a single API. This documentation shows you how to make your first call, choose the right intelligence, give agents tools, and ship to production.
The platform
Everything you build sits on four pillars that work as one system:
- Intelligence, governed reasoning and agent orchestration.
- Cloud, the secure control plane: model gateway, agent runtime, data plane, elastic compute.
- Studio, a multimodal workspace for people and AI to create together.
- Engine, the execution layer that generates, automates, evaluates and delivers.
One API, every frontier
You start with a single endpoint and a single SDK. Behind it, the T1 model family routes each request to the best available model, tools and reasoning depth, so you can adopt new frontier models without rewriting your app.
import { Taskclan } from "@taskclan/sdk";
const taskclan = new Taskclan({ apiKey: process.env.TASKCLAN_API_KEY });
const result = await taskclan.run({
profile: "t1-flow",
goal: "Summarize this week's support tickets and draft replies",
});
console.log(result.output);New here? Jump to the Quickstart to make your first call in a few minutes, or read Models & T1 profiles to choose the right intelligence for your workload.
What you can build
- Assistants and copilots grounded in your own knowledge.
- Durable, tool-using agents that take real actions.
- Multimodal generation, text, image, audio and 3D, through the Engine.
- Automations that run classify → route → reason → verify end to end.
Next steps
- Quickstart, install and make your first run.
- Authentication, API keys and safe usage.
- Agents & tools, give the model capabilities.
