Meet Grok Build 0.1 The Model That Codes Like an Agent

xAI's purpose-built agentic coding model. Blazing fast. Surprisingly affordable. Ready to plan, write, debug, and ship autonomously.

What Is Grok Build 0.1?

Released by xAI on May 29, 2026 in public beta, Grok Build 0.1 is a coding model with a specific and deliberate purpose: to function as an autonomous software engineering agent, not just a code-completion helper. While most language models can answer programming questions or fill in a function body, Grok Build 0.1 is trained from the ground up to handle end-to-end development tasks — planning what needs to be done, executing the work step by step, debugging failures along the way, and integrating cleanly with the tools developers already rely on.

The model is the exact same one powering the Grok Build CLI, xAI's agentic command-line tool that was introduced in early beta for SuperGrok Heavy subscribers. When xAI decided to make that underlying model available directly through their API, grok-build-0.1 became accessible to any developer who wants to embed similar capabilities inside their own products, scripts, or multi-agent pipelines.

To be clear about what sets it apart: this is not the same architecture as Grok 4 or its predecessors. The underlying weights were trained from scratch on a corpus heavily weighted toward real programming content — pull requests, open-source repositories, debugging sessions, and documentation. The result is a model whose instincts are genuinely oriented toward code, not adapted from a general-purpose foundation.

  • Quick context: The model was previously known under the aliases grok-code-fast-1, grok-code-fast, and grok-code-fast-1-0825. If you were already using any of those identifiers, grok-build-0.1 is the same model under its official, versioned name.

Model Specifications at a Glance

Here's the full technical picture for grok-build-0.1, pulled from the official xAI documentation and API console.

Model ID grok-build-0.1
Legacy Aliases grok-code-fast-1
grok-code-fast
grok-code-fast-1-0825
Supported Modalities Text input, Image input → Text output
Context Window 256,000 tokens
Higher-Context Pricing Threshold 200,000 tokens (different pricing applies above this limit)
Output Token Limit No hard cap on output length
Reasoning Always-on (thinks before responding)
Function Calling ✓ Supported
Structured Outputs ✓ Supported
Speed 100+ tokens/second
Rate Limit — Requests/min 1,800
Rate Limit — Tokens/min 10,000,000
Available Regions us-east-1, eu-west-1
API Endpoint https://api.x.ai/v1/responses
Release Status Public Beta (released May 29, 2026)

What Grok Build 0.1 Is Designed to Do

Grok Build 0.1 doesn't try to be everything, it's deliberately scoped for the kinds of tasks where speed, precision, and tool-awareness matter most. That focus shows up clearly in how it performs in practice.

⚙️

Agentic Coding Workflows

Grok Build 0.1 is optimized for autonomous software development tasks. Instead of handling one instruction at a time, it can break complex objectives into multiple steps, generate implementation plans, write code, resolve errors, and iterate toward a completed solution with minimal supervision.

🌐

Web Development

The model is well-suited for modern web engineering workflows, including frontend development, backend services, routing systems, API integration, deployment configuration, and build automation. It can work across multiple files while maintaining awareness of project structure and dependencies.

🐛

Debugging & Error Analysis

Grok Build 0.1 excels at interpreting stack traces, analyzing failing tests, diagnosing runtime issues, and identifying root causes of software defects. It can recommend fixes and, within agentic environments, validate those solutions through iterative testing and refinement.

🔌

MCP & Tool Integration

Native support for the Model Context Protocol (MCP) allows the model to connect directly to external tools, APIs, databases, and custom services. Automatic compatibility with MCP servers and plugin configurations simplifies the development of sophisticated agent pipelines.

🧠

Always-On Reasoning

Reasoning is built into the model's default workflow. Before generating responses, Grok Build 0.1 evaluates problems internally, helping it navigate ambiguous requirements, complex debugging scenarios, and multi-step development challenges with greater consistency and accuracy.

🛠️

Function Calling & Structured Outputs

The model supports native function calling and reliable structured outputs such as JSON schemas and typed data formats. This makes it easy to integrate into automation frameworks, orchestration systems, developer tools, and workflows that depend on deterministic machine-readable responses.

The Grok Build CLI — Where This Model Lives Natively

To understand Grok Build 0.1 properly, it helps to understand the CLI it powers. Grok Build is xAI's answer to the agentic developer tool trend — a command-line agent that you install once and run directly inside your terminal, alongside your actual codebase. Unlike browser-based tools that operate at a distance, it runs in your environment, reads your files, and interacts with your repository state directly.

Installing it takes one command:

curl -fsSL https://x.ai/cli/install.sh | bash

Once installed, the CLI automatically picks up your repository's configuration — AGENTS.md files, registered plugins, lifecycle hooks, skills, and any connected MCP servers. There's no additional scaffolding required. The agent reads your project context and gets to work.

Planning Mode — Deliberate Before Acting

For non-trivial tasks, Grok Build offers a structured planning mode. Before touching a single file, the agent drafts a step-by-step plan describing what it intends to do and why. You can review that plan, leave comments, approve it as-is, or rewrite it entirely before execution begins. Once approved, every change is shown as a diff, so you remain in control of exactly what lands in your codebase.

Parallel Subagents and Git Worktrees

Large tasks can be decomposed and delegated. The CLI supports spinning up parallel subagents, each working on a separate branch via git worktree — a technique that allows multiple work streams to operate simultaneously without interfering with each other. For projects with clearly separable concerns (separate services, different feature areas, independent test suites), this can meaningfully compress the time to completion.

Headless Mode for Automation

Developers who want to embed Grok Build in CI/CD pipelines, scheduled scripts, or other automated workflows can use the -p (headless) flag. In this mode, the agent runs non-interactively, consuming a prompt from stdin or a file and producing output that can be piped into downstream tooling. Full ACP (Agent Communication Protocol) support is also available for anyone building custom bots or orchestration layers on top.

Cost Structure and Rate Limits

The pricing for Grok Build 0.1 is straightforward and positioned competitively for high-throughput agentic use cases. At a token-per-second speed that rivals or exceeds most models in its class, the economics become particularly favorable for long-running agent sessions where total cost per task is what matters.

  • Input Tokens: $1.00 per 1 million tokens
  • Cached Input Tokens: $0.20 per 1 million tokens. 80% savings on cache hits
  • Output Tokens: $2.00 per 1 million tokens

One nuance worth knowing: requests that exceed the 200K token mark within the 256K context window are charged at a higher rate. For most coding tasks this threshold is unlikely to be hit, but for workflows that pass in large codebases or extensive conversation history, it's worth keeping in mind.

Prompt caching is supported and can dramatically reduce costs in scenarios where the same large system prompt or file context is reused across many calls — common in agentic pipelines that operate over the same repository across a session.

Rate Limits

The model supports up to 1,800 requests per minute and 10 million tokens per minute, which is generous enough for most production agentic workloads. For teams that need higher capacity, xAI offers provisioned throughput options and an official form to request increased limits.

Where Grok Build 0.1 Works Right Now

Beyond the native CLI and direct API access, grok-build-0.1 is already integrated into a growing number of third-party developer tools. xAI has been deliberate about expanding the model's reach quickly, and the result is that many developers can start using it inside tools they already have installed.

🖥️

Grok Build CLI

The native home of this model — the full agentic coding experience with planning mode, subagents, MCP, and headless scripting.
🎯

Cursor

Available as a selectable model inside the Cursor IDE, letting existing Cursor users drop it into their current workflows without any additional setup.
🚀

Kilo Code

SuperGrok and X Premium+ subscribers can invoke the model directly through the Kilo IDE or CLI within their existing subscription — no separate API billing needed.
🔧

Hermes Agent

The open-source Hermes Agent by xAI can invoke the model via OAuth using your Grok personal subscription credentials.
🦅

OpenClaw

Another open-source agent client with direct grok-build-0.1 support, suitable for custom orchestration setups.
💻

OpenCode

The open-source OpenCode environment supports Grok Build 0.1 natively, making it accessible for teams building or customizing their own coding environments.

Grok Build 0.1 vs. Other Agentic Coding Models

The agentic coding model space in 2026 has consolidated into a genuine competition. Anthropic's Claude Code and OpenAI's Codex CLI both have significant market traction — Claude Code alone has been cited as a primary driver behind Anthropic's growth trajectory, and Codex CLI reportedly crossed one million developers in its first month. Grok Build 0.1 enters this environment with some clear differentiators and a few areas where it's still establishing its track record.

Capability Grok Build 0.1 Claude Code Codex CLI
Purpose-built for agentic coding
Context window 256K tokens 200K tokens 128K tokens
Inference speed 100+ tok/s ~60–80 tok/s ~70–90 tok/s
Input token pricing $1.00/M $3.00/M $3.00/M
Native MCP support
Parallel subagents ✓ (Grok Build CLI)
Headless / scripting mode
Image input
Always-on reasoning Optional Optional
Prompt caching ✓ ($0.20/M)

Real-World Use Cases Where Grok Build 0.1 Excels

Knowing a model's stated capabilities is useful; knowing where it genuinely adds value is more useful. Here are the scenarios where grok-build-0.1 tends to shine, based on its design characteristics and the workflows it was trained on.

🏗️

Automated Code Review Pipelines

Integrate Grok Build 0.1 directly into CI/CD workflows to review pull requests automatically. Beyond identifying syntax issues, it can detect logical flaws, overlooked edge cases, security concerns, and deviations from established coding standards. Structured outputs allow review findings to flow directly into developer tooling and reporting systems.

♻️

Legacy Codebase Modernization

Modernizing older applications often requires coordinated updates across multiple files and frameworks. Grok Build 0.1 can analyze legacy code, apply migration strategies, replace deprecated patterns, introduce type safety, and refactor implementations while maintaining consistency throughout large codebases.

🧪

Test Generation at Scale

The model can generate extensive unit, integration, and regression test suites for existing applications. By understanding expected behavior and application logic, it creates coverage for common workflows as well as edge cases that developers frequently overlook during manual test creation.

📦

API & SDK Generation

Support for both text and image inputs enables the model to work from specifications, architecture diagrams, API documentation, wireframes, and interface mockups. It can then generate typed SDKs, API clients, server stubs, and implementation scaffolding with minimal manual effort.

🤖

Building Multi-Agent Systems

Grok Build 0.1 is well-suited for agent-based architectures thanks to its MCP compatibility, reliable structured outputs, and strong tool-use capabilities. It can operate as a central orchestrator coordinating specialized agents or as a dedicated coding agent within a larger autonomous workflow.

📝

Documentation Generation

From source code and inline comments, the model can produce technical documentation, API references, migration guides, onboarding materials, and project READMEs. Combined with headless execution, documentation generation can become a fully automated step within development pipelines.

Access Grok Build 0.1 alongside 400+ other leading AI models through a single unified API — no juggling multiple keys, no switching SDKs.

Common Questions About Grok Build 0.1

Is this the same as Grok 4?

No. Grok Build 0.1 was built from scratch separately from the Grok 4 lineage, with a training approach focused specifically on programming content and agentic task execution. It's a different model serving a different purpose.

Can it handle non-coding tasks?

Yes, xAI notes it works well for general-purpose agentic and tool-calling tasks even outside of software development. The reasoning capabilities and structured output support transfer broadly. That said, its training is most densely focused on coding workflows.

What image inputs does it accept?

The model supports standard image formats (PNG, JPEG, WEBP) passed as base64 or URL references. This is particularly useful for passing in UI mockups, architecture diagrams, or visual specifications alongside text prompts.

Is the output length actually unlimited?

There's no hard output cap enforced by the model itself, though very long outputs will naturally accrue token costs at the standard output rate. In practice, extremely long generations may be limited by API timeout configurations on the client side.

How does prompt caching work?

Cached input tokens are billed at $0.20/M — an 80% discount off the standard $1.00/M rate. Caching activates automatically for repeated identical system prompt prefixes, making it most valuable when you reuse the same large context (like a full repository or lengthy spec doc) across many API calls.

Share with friends

Ready to get started? Get Your API Key Now!

Get API Key