Agentic-first data platform for small business
Prefer to build hands-on? It's five commands
Most people just tell Loxtep what agent they want. But if you'd rather build the data foundation yourself in code, the whole lifecycle is five commands: init → attach → generate → test → deploy. Here's exactly what each step looks like in your terminal.
This is a guided, read-only walkthrough — the terminal output below is illustrative and nothing here runs commands or connects to your account. To run it for real, install the authenticated CLI: npm i -g @loxtep/sdk.
Scaffolds an agent-ready project from a template — config, directory tree, an AGENTS.md for your coding agent, and a default skill scoped to just this template's resources.
Connects the project to a shared, managed, or self-hosted instance using the same mechanism as the Platform UI, then records the resolved instance.
Projects your live data products, connectors, domains, and queues into typed constants your agent and SDK reference by name — no guessing identifiers.
Executes a workflow handler locally with a sample event and prints the full action trace. Operations listed in requireApproval prompt for confirmation before executing.
Compiles every module, checks that referenced resources exist before touching anything, then drives in-place updates and creates through the workflow engine.
What test and deploy actually run
Workflows are authored in code with the typed SDK. Triggers and sinks reference the same generated workspace constants, so a typo is a compile error — not a 2 a.m. incident.
Operations you mark as guarded pause for human approval before they touch live data, and every run records an action trace you can review with loxtep activity list.
import { defineDataWorkflow, on } from '@loxtep/sdk'
import { workspace } from './.loxtep/generated'
// Author a data workflow in code, against typed workspace constants.
export default defineDataWorkflow({
name: 'orders-enricher',
triggers: [on.queueEvent(workspace.queues.orders_raw)],
async handler(ctx, event) {
await ctx.toolbox.dataProducts.write(
workspace.dataProducts.orders_enriched,
event,
)
},
})
// 'loxtep deploy' compiles this module into the workflow graph and ships it.Stop wrestling with data plumbing. Start launching agents that work.
Join the waitlist for early access. Tell Loxtep what agent you want, connect your tools, and ship an agent your business can actually rely on — without building a data engineering team.
Enterprise-grade reliability, permissions, and audit trails — without the enterprise team.