Build locally with open-source tools. Scale with hosted APIs through TALOCODE_API_KEY.
Talocode helps developers and builders make work readable to agents and controllable by humans. Every product ships as an open-source tool you can run yourself, with a hosted API layer when you need scale.
| Category | Product | Description | Status |
|---|---|---|---|
| Backend Cloud | Stacklane | Backend cloud platform for AI-native apps | Experimental |
| AI Coding | Codra | Local-first AI coding agent | Experimental |
| Browser Automation | Agent Browser | Browser validation layer for AI agents | Experimental |
| Workflow | WorkLane | Agent workflow and approval runtime | Planned |
| Skills | Talocode Skills | Reusable skills for agents | Experimental |
| Learning | Tera | Learning and context assistant | Planned |
| Video | ClipLoop | Short-form promo video engine for indie apps | Experimental |
| Trading | Tradia | Trading performance intelligence | Planned |
| Signals | SignalLane | X growth intelligence for builders | Planned |
| Invoice | InvoiceLane | Extract structured data from invoices, receipts, and business documents through one API. | Planned |
| UGC Workflow | UGCLane | Programmable UGC workflow API for original hooks, scripts, calendars and experiments | Experimental |
| Hosted API | Talocode Cloud | Hosted API layer with wallet credits and router | Experimental |
Talocode Cloud is the hosted API layer for the entire ecosystem. One TALOCODE_API_KEY gives you access to every product API with prepaid wallet billing.
# All product APIs are available under /v1/{product}/ namespaces
curl https://api.talocode.site/v1/router/chat/completions \
-H "Authorization: Bearer $TALOCODE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "talocode/auto",
"messages": [
{ "role": "user", "content": "Hello" }
]
}'Talocode MCP exposes all Talocode Cloud product APIs through the Model Context Protocol.
Direct HTTP — For clients that support custom headers:
Endpoint: POST https://api.talocode.site/mcp
Auth: Authorization: Bearer $TALOCODE_API_KEY
Local Bridge — For clients that cannot send custom headers:
npx @talocode/mcp
The bridge reads TALOCODE_API_KEY from the environment and proxies to the remote endpoint.
Learn more about Talocode MCP →
Official SDK: @talocode/sdk (published as @talocode/sdk-client).
import { Talocode } from "@talocode/sdk";
const talocode = new Talocode({ apiKey: process.env.TALOCODE_API_KEY });
const result = await talocode.tera.writing.rewrite({ text: "Hello", style: "clear" });
const video = await talocode.cliploop.brief({ prompt: "Weekly promo", channel: "twitter" });
const sites = await talocode.agentBrowser.check({ url: "https://example.com", screenshot: true });
const codraSummary = await talocode.codra.repoSummary({ files: [{ path: "src/main.ts", content: "..." }] });
const skill = await talocode.skills.generate.githubProfile({ username: "octocat", target: "cursor" });- One API key — use
TALOCODE_API_KEYfor every product - One SDK —
@talocode/sdkfor all hosted APIs - Prepaid wallet — 1 credit = $0.01 USD, 100 free credits on signup
- Pay-per-use — every API call deducts credits from your wallet
- OpenAI-compatible router — automatic provider fallback (OpenAI, OpenRouter, Gemini)
- Top-up via Stripe — minimum $5, instant credit
Learn more about Talocode Cloud →
| Resource | URL |
|---|---|
| Website | talocode.site — GitHub Pages landing page (legacy: talocode.xyz) |
| Source | github.com/talocode/talocode |
| Cloud Dashboard | dashboard.talocode.site |
| API Endpoint | api.talocode.site |
| Documentation | docs.talocode.site |
| GitHub | github.com/talocode |
| Status | Meaning |
|---|---|
| Live | Running in production, stable APIs |
| Experimental | Working but evolving — APIs may change |
| Planned | Not yet built, design phase |
Open-source Talocode products are built and maintained by Abdulmuiz Adeyemo.
Sponsor the work: https://github.com/sponsors/Abdulmuiz44
Part of Talocode — open-source workflow layers for builders. Explore sibling projects:
| Project | What it is |
|---|---|
| ScreenLane | Screen-aware voice command layer |
| Tera | AI chat & assistant |
| Codra | Local coding agent |
| GateLane | MCP gateway & agent tool control plane |
| ContextLane | Context ingestion for persistent agents |
| MemoryLane | Persistent agent memory |
| SignalLane | X growth intelligence |
| ReplyLane | X reply opportunity intelligence |
| CrawlerLane | Crawler / SEO intelligence |
| WebDataLane | Web extraction to structured data |
| SearchLane | Search layer for agents |
| InvoiceLane | Invoicing tools |
| GeoLane | Geo intelligence |
| UgcLane | UGC workflows |
| OpenSourceLane | Open-source distribution tools |
| StackLane | Builder stack platform |
| Tradia | Trading intelligence |
| Agent Browser | Browser automation for agents |
| Talocode | Org home & control plane (this repo) |
| Skills | Shared agent skills |
| X Agent | X automation agent |
| LaunchPix | Launch tooling |
| ForgeCAD | CAD workflows |
| WorkLane | Work automation |
| ClipLoop | Clip / video loops |
MCP-compatible agents integrate via each product's MCP server where available (Model Context Protocol).
More: github.com/talocode · talocode.site · docs.talocode.site