Grok Build hit v1.0 on August 7. xAI’s terminal coding agent is out of beta and shipping with 8 parallel subagents, isolated git worktrees, plan mode, and headless CI support. It is technically interesting — and it also went open source in July under circumstances every developer should understand before running grok-build login against a real codebase.
What Grok Build Actually Does
The architecture is the story. Grok Build spawns up to 8 concurrent subagents, each running in its own isolated git worktree. That means separate agents can work on the endpoint layer, token logic, and email integration simultaneously without clobbering each other’s changes — git reconciles the result when you merge.
Before any code gets touched, Plan Mode generates a structured execution plan: files to modify, new files to create, each step spelled out. You can approve it, rewrite individual steps, or kill it entirely. Once you approve, every change lands as a clean diff. This is a fundamentally different model from Claude Code’s depth-first single-thread approach, where one reasoning chain works sequentially through the problem.
The practical split: Grok Build’s parallel architecture wins when your task breaks cleanly into independent pieces. Claude Code wins when the problem is tightly connected and sequential reasoning matters more than parallel throughput. That is not a knock on either — it is an architectural trade-off worth understanding before you choose.
Other capabilities shipping at v1.0: headless CI mode (-p flag for non-interactive pipelines), full Model Context Protocol support (existing MCP servers connect without reconfiguration), and ACP (Agent Communication Protocol) for IDE integration with VS Code, Cursor, and JetBrains. The underlying model is Grok 4.6 with a 500K token context window.
The Incident You Should Know About
On July 10, a security researcher published wire-level analysis showing that earlier Grok Build versions were silently packaging developers’ entire git repositories — full commit history, .env files, SSH keys, API keys — and transmitting them to a Google Cloud Storage bucket called grok-code-session-traces. The upload volume was roughly 27,800 times what the actual coding tasks required. Hacker News documented the full technical breakdown.
The privacy toggle labeled “Improve the model” did nothing to stop it. The setting continued returning trace_upload_enabled: true regardless of user preference. This directly contradicted xAI’s marketing, which had stated that “nothing from your codebase is transmitted to xAI servers during a session.”
xAI’s response was fast: the same binary stopped making storage requests on July 13. On July 15, xAI released the full source code — 844,530 lines of Rust — on GitHub under Apache 2.0, alongside deleting all uploaded data and resetting usage limits for all users.
What xAI has not provided: the number of affected developers, the total volume of data collected since beta started in May 2026, a mechanism for individual developers to verify their data was deleted, or any third-party audit confirming the deletion occurred. These are not minor gaps. They are the difference between a resolved incident and an acknowledged one.
About That Open Source Release
The Apache 2.0 release is real and verifiable — you can read the Rust source, audit the upload logic, and confirm the current binary is not doing what the July builds did. That has genuine value.
What it does not give you is any say in what comes next. xAI’s CONTRIBUTING.md explicitly states that external pull requests are not accepted. The community characterization — “read-only open source washing” — is harsh but not inaccurate. xAI published the source because they had to restore developer trust, not because they wanted community participation in the codebase.
Should You Use It?
On a non-sensitive project — a side project, an open-source repo, a throwaway prototype — Grok Build’s parallel worktree model is worth trying. The $30/month SuperGrok entry point is competitive. The architecture is genuinely different from anything else in the terminal agent space right now, and the Plan Mode workflow is clean. Independent testing across 50+ hours shows the parallel subagent approach delivers on its promise for the right class of tasks.
On a proprietary codebase with committed secrets, unreleased product code, or any data your employer would not want transmitted externally: the incident record is too recent and too incompletely resolved to recommend it with confidence. That may change as xAI answers the open questions. As of v1.0, it has not.
Install when you are ready: curl -fsSL https://x.ai/cli/install.sh | bash. Requires macOS, Linux, or Windows with Git Bash or WSL2. SuperGrok ($30/mo) or X Premium+ ($40/mo) subscription required. Full v1.0 release notes are here.













