GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
      • Apple Intelligence
      • Gemini AI
      • Google DeepMind
      • Anthropic
      • Claude AI
      • Claude Code
      • OpenAI
      • ChatGPT
      • Codex
      • Perplexity
      • SpaceXAI
      • Grok AI
      • Microsoft Copilot
      • Meta AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • NVIDIA
    • Samsung
    • Security
    • Smart Home
    • Sony
    • Xbox
    • YouTube
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Gaming
    • Streaming
    • Apple TV
    • Disney
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Spotify
    • Star Wars
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Computing
  • Gaming
  • Mobile
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • Buying Guide
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • NVIDIA
    • Samsung
    • Security
    • Smart Home
    • Sony
    • Xbox
    • YouTube
  • AI
    • Apple Intelligence
    • Gemini AI
    • Google DeepMind
    • Anthropic
    • Claude AI
    • Claude Code
    • OpenAI
    • ChatGPT
    • Codex
    • Perplexity
    • SpaceXAI
    • Grok AI
    • Microsoft Copilot
    • Meta AI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Gaming
    • Streaming
    • Apple TV
    • Disney
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Spotify
    • Star Wars
Follow US
AISpaceXTech

SpaceXAI gives Grok Build persistent memory

Grok Build can now remember project conventions, decisions, and important facts between coding sessions.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
Sep 17, 2026, 2:00 AM EDT
Share
We may get a commission from retail offers. Learn more
White text reading "Memory in Grok Build" centered over a dark, blurred gradient background transitioning from black to vibrant cyan.
Image: SpaceXAI
SHARE

AI coding agents are getting better at writing code, but there is another problem that becomes increasingly obvious the longer you use them: they forget.

Start a new session and you may have to explain the project structure again. Tell the agent how your tests are supposed to run, which coding conventions the team follows, or why a particular architectural decision was made, and there is no guarantee that the next session will remember any of it.

SpaceXAI is now addressing that problem in Grok Build. The company has added persistent memory that allows Grok Build to carry project conventions, decisions, and other useful facts from one session into the next.

The feature was announced on September 16 and is now generally available as part of Grok Build 1.0.34.

Grok Build can now remember how you work

Grok Build’s new memory system is designed around the idea that an AI coding agent should not have to start from zero every time a session begins.

As you work, Grok Build reviews completed turns in the background and records information that could remain useful later. That can include coding conventions, decisions made during development, project-specific facts, and details about how certain parts of a codebase work.

The important part is that this isn’t simply a giant transcript of everything you have ever told Grok.

SpaceXAI says the memory system deliberately focuses on durable information that is likely to matter in future sessions. Temporary task state, tentative conclusions, secrets, and information that is already adequately documented in the repository are left out.

That distinction matters. A coding agent remembering every passing comment would quickly become just as problematic as one that remembers nothing.

Instead, Grok Build is trying to create a lightweight project knowledge base that evolves as you work.

The memory is stored as Markdown files

Grok Build’s approach is particularly interesting because its memories are stored as Markdown files rather than being hidden entirely inside the AI system.

Each project gets its own workspace memory, while a separate global memory can hold preferences that apply across projects.

The system organizes information into topic files. For example, a project might have a testing.md file explaining how the test suite works and a code-style.md file containing coding conventions.

There is also a MEMORY.md file for broader information.

That makes the system much easier to understand than an opaque memory database. Developers can see what Grok Build has decided is worth remembering and inspect the resulting notes.

Grok Build also introduces a /memory command that opens a read-only browser for the memory files. The browser groups memories by scope and provides a preview of the selected file.

There is also a /dream command, which organizes recent observations into topic files. SpaceXAI says the process can also run periodically in the background.

It learns from completed sessions

The memory system operates after a turn has finished rather than interrupting the coding session.

Once a turn is complete, Grok Build reviews what happened and captures information that appears durable. SpaceXAI says this capture process runs in the background and does not block the current session.

That means something as simple as correcting Grok Build’s assumptions about a project’s test command can become useful later.

In SpaceXAI’s example, Grok initially tries cargo test, which fails because the project’s integration tests require a separate database setup. The developer explains that the correct command is just test, which starts the test database first.

Grok Build records that information in a testing topic. When the developer later asks it to modify the code and run the tests, Grok recalls the topic and uses just test instead.

The example is mundane, but that’s exactly where persistent memory can become useful. Developers don’t necessarily need an AI agent to remember huge architectural documents. Remembering small, recurring details can eliminate a surprising amount of repetitive prompting.

Project memory and global memory are separate

Grok Build also separates information that belongs to a particular project from preferences that should apply more broadly.

Project-specific knowledge stays within that project’s workspace. Global memory can contain preferences that apply across projects.

That separation should make the feature more useful for developers who work across multiple repositories without constantly mixing assumptions from one project into another.

SpaceXAI also says that instructions in the current conversation take precedence over information stored in memory.

That’s an important safeguard. If a developer tells Grok Build to do something differently in the current session, an old memory should not override the new instruction.

Memory is available in new Grok Build sessions

The feature is available now, but existing sessions don’t simply get retroactively transformed into memory-enabled sessions.

SpaceXAI says memory applies to new sessions. Developers can run /new or start a fresh grok session, after which notes begin being captured following the first completed turn.

The feature is part of Grok Build 1.0.34, which SpaceXAI’s changelog lists as a September 16 release. The same release also includes a fix for Markdown headings receiving theme colors correctly.

Grok Build itself has been expanding rapidly since its introduction. SpaceXAI brought Build to the web and mobile in August, making the coding and creation environment available beyond the original command-line workflow.

Memory is a natural next step for an agent intended to handle longer-running projects.

Why this matters for AI coding agents

Persistent memory is becoming increasingly important as AI coding tools move away from the idea of a chatbot that simply answers individual programming questions.

A serious coding agent may work on the same repository for days or weeks. It needs to understand not only what the code does, but how the developers expect the project to be maintained.

That’s where small pieces of accumulated context become valuable.

A developer shouldn’t have to repeatedly explain that a particular script must be used instead of a standard command, that a service intentionally lives in a particular directory, or that the team follows a specific pattern for pull requests.

Grok Build’s memory system is essentially an attempt to turn those repeated conversations into persistent project knowledge.

It also gives SpaceXAI an interesting advantage in how the feature is presented. Because the memories are stored as Markdown and exposed through /memory, developers have a visible representation of what the agent has retained rather than having to blindly trust that some invisible memory system is doing the right thing.

Of course, persistent memory also means developers will want to pay attention to what gets retained. SpaceXAI says the system intentionally excludes secrets and temporary information, but memory is still another layer of project context that needs to be kept accurate. A stale convention can be just as inconvenient as a forgotten one.

For now, though, the goal is straightforward: Grok Build should become less forgetful every time you use it.

And for an AI coding agent expected to work across multiple sessions, that may be one of the more important upgrades it has received so far.


Discover more from GadgetBond

Subscribe to get the latest posts sent to your email.

Topic:Grok AISpaceXAIxAI
Leave a Comment

Leave a ReplyCancel reply

Most Popular

Apple starts 27.2 beta cycle with iPhone Duo support coming
I installed iOS 27 on my iPhone SE 3. Here’s everything that’s new—or, in some cases, what’s not
Snap launches $2,195 SPECS AR glasses and SPECS Intelligence
Prime Video sets October 21 premiere for The Terminal List Season 2
Firefox adds Mistral Small 4 to Smart Window beta

Also Read

A blurred person works at a laptop in warm indoor lighting. To the right, three floating speech bubbles display a live meeting transcription with speakers Zharia, Mikel, and Hayle discussing starting a call. The bottom left features text that reads: "Wispr Flow Notetaker — Meeting notes accurate enough to act on."

Wispr Flow Notetaker now works on Windows

White text reading "Grok Voice Transcribe 2.0" centered against a soft, grainy gradient background of vibrant orange, deep black, and purple.

SpaceXAI launches Grok Voice Transcribe 2.0

User interface popup displaying the effort control slider set to the maximum "Ultra" position. The text above reads: "GPT-6 Astra for max effort and thoroughness. Highest credit usage," with a "Custom" option at the bottom.

Perplexity Computer adds Light, Standard, High and Ultra modes

A row of popular non-fiction ebook covers floating above an AI prompt bar reading "Help me personalize learnings from this book". The featured book covers include Thinking in Bets, The Sense of Style, The Lean Startup, Radical Candor, The New Menopause, Food Rules, and The Power of Habit.

Google launches Expert Intelligence for Gemini Notebook

A promotional graphic set against a soft blue and lavender gradient background. On the left is the white text "CC" next to an outlined pill badge reading "EXPERIMENT." On the right, layered digital interface cards tilt forward into view: a central card titled "Your Day Ahead" details a personalized family agenda with sections like "Top of mind," "On your calendar" (featuring drop-off, pickup, and appointment times), and "On your list." In the background sits a Google Calendar view with an open event card titled "[Maya] Swim Class Youth Level 2," displaying activity details, dates, and instructions.

Google’s CC AI agent can now manage family calendars, tasks, and chores

Mozilla logo

Mila, Mozilla, and Hypertec partner to build local, sovereign AI in Canada

ASUS Ascent QN10 hero

ASUS unveils Ascent QN10 with Snapdragon X2 Elite

A collage of user interface screens showcasing new podcast features on the Threads app against a black background, including analytics insights, post creation tools, video episode previews, and interactive transcript cards.

Threads launches new tools for podcast creators

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.