Product · Build

Build

Built for focus. Compose blocks, write prompts, swap models, run real input, read the trace back — every tool you need in one workspace.

YOUR WORKSPACE

A workspace built for AI engineering. Compose pipelines, write prompts, run real input, read the trace — every tool, shaped for the work.

Noukai gives you a dedicated workspace for AI engineering. Every surface — the prompt editor, the block navigator, the run viewer, the evals — is shaped for the pipeline you're building.

01

Full focus on the prompt

The prompt editor takes the main space in every block. You shape the prompt, watch the schema fold around it, and run it against a sample input — without leaving the surface.

02

Swap models in a click

When the prompt is right but the model isn't, swap it. Every block carries its own model — try a different provider, compare runs, never touch the wiring.

03

AI Pipeline, always in view

While you build, the pipeline you're shaping stays in front of you. Every panel and tool wraps around it — your attention on the target stays sharp.

04

Every pipeline at a glance

The block navigator maps out every pipeline in your project — every lane, every block, how they connect. As the project grows, the shape stays clear.

05

Integrate in two lines

When the pipeline is ready, wire it in. The Noukai SDK lives in TypeScript and Python — one client, one execute call, your pipeline runs from your app.

MCP SERVER

Your favorite LLM. From design to tests. MCP lets Claude, GPT-5, Gemini — whichever you reach for — drive your workspace.

Noukai ships an MCP server that exposes every pipeline operation as a tool. Wire Claude Code, Cursor, or any MCP-aware editor into your workspace — they read your flow, write the next block, and run the trace without ever leaving their window.

WHAT YOUR EDITOR DRIVES

  1. 01

    Design

    Sketch lanes and blocks from your goal — plain English in, pipeline shape out.

  2. 02

    Build

    Write the prompts, pick the models, wire the schema on every block.

  3. 03

    Test

    Run the pipeline against real inputs, read the trace back, patch what slips.

  4. 04Soon

    Evals

    Tune prompts against the cases that matter — automatically, in the background.

THE PRIMITIVES

Real pipelines need more than prompts. Mix code, sub-pipelines, loops, tools and structure — every primitive is already a first-class block.

When the next step isn't an LLM call — when it's a calculation, a sub-pipeline you've already built, a loop over rows, or a tool the model needs to reach for — Noukai already has the block. The LLM stays where only it makes sense.

01

Not every step is an LLM call.

Drop in the block that fits the step. Code for the deterministic parts, sub-pipelines for the composable ones, loops for the rows, passthroughs for the routing — and a real LLM block where the model earns its keep. More block types are on the way.

project · acme/supportlane / process
processv4
classify intent
validate payload
code
summarize run
flow
chunks
summarize
route by tier
pass
02

Inputs and outputs, shaped.

Every block carries its schema. Declare the fields you expect in, the fields you return out — and when you chain the next block on, let it inherit the shape so the data flows through without glue code in between.

03

Bring your own tools to the call.

Declare tools in your server, hand them to the pipeline when you call it. LLM blocks pick them up at run time — the model reaches for them when the prompt asks, you read every call back in the trace.

04

Snapshot the prompt when it's worth keeping.

Save a checkpoint when you land a prompt that earns it. Pick which one runs in production, swap back the moment the new version slips, diff any two — your prompts versioned the way your code is.

classify intentclaude
1tighten validator output formatJun 4
2add context window guardJun 2
3swap model to claude-sonnet-4.6May 28
4add metadata extraction stepMay 22
5initial classify-intent promptMay 18