Hello, I'm Hamamoto from TIMEWELL. Today I want to talk about a new design philosophy that's fundamentally changing how we collaborate with AI.
Have you noticed a certain déjà vu in your interactions with AI assistants? Every new chat window, another round of introductions. "I'm working in this role, here's the project I'm on, please write in this style." Context you explained yesterday, gone — you're starting from zero again today. This endless ceremony of first meetings is quietly consuming our time and creative bandwidth.
Honestly, I've been frustrated by this for a while. AI is capable. But it doesn't remember. No matter how good the underlying model, when every session resets the relationship, there's a ceiling on output quality. That was my lived experience.
Recently, a report from an AI developer named Muratcan Koylan — who calls himself a Context Engineer — created significant discussion in developer communities. He presented the concept of "Personal Brain OS": organizing everything about a person — their knowledge, style, goals — into files that AI can always reference. Moving AI from a mere response machine to a context-aware partner. A genuinely pioneering attempt.
His contribution was to clearly articulate the problem AI collaboration faces and point toward a concrete solution. But we need to look further. Koylan's work is a milestone, not a destination. The intelligence demanded by real business environments is built on more dynamic and complex relationships than any static file collection can reproduce.
That's what led us to propose Zerock Brain OS — a next-generation design philosophy. Not just a repository of information, but a living "second brain" where all organizational knowledge connects organically, shifts meaning in response to task context, and evolves continuously as AI learns. Here's the full picture.
The Dawn of Context Engineering: From Prompts to Context
In the early 2020s, prompt engineering was the primary way to unlock the capabilities of large language models. How do you craft a question or instruction that draws out the response you want? Think of it as the art of asking the right oracle the right question.
But as AI agents moved beyond one-off responses to autonomously executing complex multi-step tasks, this approach ran into hard limits. Even the best prompt is a point optimization — a single moment. Maintaining a continuous thread of context across an extended task requires a larger framework.
This opened space for context engineering — a new current that Gartner, Anthropic, and other industry leaders have begun to highlight. Where prompt engineering focuses on "what to ask," context engineering asks a more fundamental question: "What information environment should we build so AI can think effectively?"
This shift reflects architectural constraints in LLMs themselves.
One is what Anthropic calls "attention budget." LLMs attempt to compute relationships between all tokens in the context window. As information volume increases, attention becomes distributed and the resolution on any individual piece of information degrades. It's similar to how humans, when given too much to hold in mind at once, tend to remember only the first and last things they heard.
The other is a phenomenon called "context rot." The longer the context grows, the less reliably a model can retrieve specific information from within it. Packing in information indiscriminately adds noise that actually impairs performance. We've felt this directly in our product development work.
The implication: maximizing AI capability depends on quality and structure, not quantity. Providing exactly the information a task requires — in the most understandable form, at the right moment. That's the core of context engineering.
Looking at Koylan's "Personal Brain OS" through this lens, you can see how deeply he understood these principles. The progressive disclosure approach — dividing information into modules and loading only the files relevant to each task. He was among the first to see that what matters is designing the environment AI thinks in, not just polishing the prompt.
Struggling with AI adoption?
We have prepared materials covering ZEROCK case studies and implementation methods.
The Achievement of File-Based OS — and the Structural Wall Beyond It
Koylan's Personal Brain OS architecture is an elegant embodiment of context engineering principles. Rather than any complex database system, he repurposed the universal concepts of files and folders — tools developers already use every day — as AI memory.
His system has three core elements.
First, a modular structure organized by domain: "Brand," "Content," "Network," "Operations." When asked to write a blog post, AI loads the style guide; when asked to prepare for a meeting, it loads the contacts database. It operates with only the minimal context relevant to the task.
Second, format selection matched to the nature of information. JSONL for append-only log data, YAML for hierarchical configuration, Markdown for text that LLMs interpret naturally. An elegant — and precisely calibrated — approach to choosing the right container for each type of information.
Third, a skills system that teaches AI how to work. Type /write-blog and AI automatically loads the style guide, prohibited expressions list, and article templates, then begins writing according to a defined workflow. Installing not just knowledge but procedure.
These design choices address many of the genuine challenges of AI collaboration. It's a powerful paradigm.
But as this elegant file-based system encounters the more complex and dynamic knowledge of an enterprise, it hits a fundamental wall: information relationships are expressed only implicitly, through folder structure and file references.
Consider a concrete example. "Part A is supplied by Vendor B" can be written in a file. But "if Vendor B stops supplying, it affects Part A production, which in turn delays shipment of Product C" — that cascade of causal relationships and dependencies is extremely difficult to express in a file system and have AI interpret dynamically. As soon as queries require traversing folders or reasoning across multiple files, the system becomes brittle.
Dynamically handling the weight of information is also hard. A project that was top priority six months ago may rarely be referenced today. A veteran engineer's expertise should carry more weight than a new operator's checklist. A file-based system can't let AI autonomously evaluate how the value of information changes with context and reflect that in search results.
Koylan's system is genuinely excellent as a "personal OS" for maximizing individual productivity. But building an "enterprise OS" — one that integrates the intelligence of an entire organization and continues adapting to unpredictable business change — requires moving beyond the file boundary into a richer, more dynamically structured world of knowledge. That's where we went.
The Heart of Zerock Brain OS: "Thinking Knowledge" Through GraphRAG
GraphRAG (Graph-based Retrieval-Augmented Generation) is both the key to breaking through the structural wall of file-based OS and the core technology inside ZEROCK.
To understand it, start with its predecessor. Most enterprise AI systems through around 2024 relied primarily on vector search. Documents are split into "chunks," each chunk is converted to a vector (an array of numbers) and stored in a database. When a user asks a question, the AI converts that question to a vector and finds the most semantically similar chunks to generate a response.
A significant advance for simple information retrieval — but with serious limits for the complex questions that arise in real business.
First: context fragmentation. Mechanical chunking loses context at chunk boundaries. References like "as mentioned above" become unresolvable. Second: missing relationships. Vector search finds information by "semantic similarity" — it can't distinguish relationship types like "A caused B." The result: retrieving loosely relevant information, and frequent hallucination when multi-step reasoning is needed. Some analyses put traditional RAG accuracy at 60–70%.
A side note: in ZEROCK's early development, when we were running internal tests with traditional RAG, we repeatedly heard "this answer is 70% right but the other 30% is catastrophically wrong." An AI that's right 70% of the time isn't usable in production. In some ways it's worse than being wrong outright — because it sounds confident. That experience is what drove our move to GraphRAG.
GraphRAG treats information not as a collection of points, but as a graph of entities (things) and relations (connections between things).
"Person A belongs to Company B" becomes a graph where the entity "Person A" and entity "Company B" are connected by a "belongs to" relation. "Company B developed Product C." "Product C uses Technology D." Each fact adds to the graph. Every person, object, and event in the organization — and the connections between them — builds into a single vast knowledge network: a knowledge graph.
What happens when an AI agent uses this knowledge graph?
A user asks: "Tell me about the technologies used in products A worked on." Traditional RAG could only find documents where A's name appeared. A GraphRAG-equipped agent moves through the graph: from A to their organization B, from B to Product C they developed, from C to Technology D it uses. This traversal is called "multi-hop reasoning." It approximates the way humans think associatively — enabling accurate responses to complex multi-part questions that traditional RAG cannot handle. And because the reasoning path through the graph is preserved, the explainability of AI responses improves dramatically.
GraphRAG is the heart of Zerock Brain OS. Through the knowledge graph, information that was scattered across the organization transforms from a collection of data points into living knowledge with context and relationships. Not a static warehouse — a thinking ground where AI agents can move freely and discover new insights.
One more advantage of GraphRAG worth noting: "community detection." As a knowledge graph grows to a certain scale, AI automatically detects clusters of densely connected nodes — communities. These represent naturally occurring knowledge clusters within the organization: the body of technical knowledge around a particular product line, or the sales expertise associated with a specific customer segment. AI discovers these groupings itself. By summarizing and organizing information at the community level, it becomes possible to understand not just individual facts, but the broader landscape. GraphRAG's ability to abstract — to see both the tree and the forest — is what most fundamentally distinguishes it from traditional RAG.
Giving Knowledge "Weight": Dynamic Context Extraction in Zerock Brain OS
GraphRAG gives AI agents the ability to structurally connect related facts and reason like a human. But one more step is needed to become a truly thinking partner: the ability to judge, among all that information, what matters most in a specific situation. A mechanism for weighting knowledge.
When you're making an important business decision, you don't consult all information equally. You weight recent market data over last year's report. You trust the analysis from a trusted advisor over an anonymous news article. Consciously and unconsciously, you prioritize, allocating finite cognitive resources toward what matters most. This is something humans do naturally.
The design philosophy at the core of Zerock Brain OS is incorporating this human-style weighting into the AI agent's context generation process. We think about weighting across three dimensions.
The first dimension is static weight — universal value anchored to the nature of the information itself, relatively stable over time. A reliability score based on information source: legal-reviewed contracts receive high scores, personal employee notes receive lower ones. Organizational importance levels. Confidentiality classification. This ensures AI always operates with awareness of information provenance, preventing it from reaching for uncertain information when the stakes are high.
The second dimension is dynamic weight — value that shifts with usage patterns and time. How often is specific information accessed? How fresh is it? How relevant is it to the AI's current task? And above all: user feedback — "helpful," "not quite right." Reflecting these signals in real time, AI learns the user's preferences, becoming a more attuned partner with every use.
This is the part I personally find most interesting: the same knowledge graph surfaces different information priorities depending on whether it's being used by Person A in Sales or Person B in Engineering. Same brain, different perspectives produce different landscapes. It's the same principle as how human memory retrieves differently depending on context.
The third dimension is relational weight — where GraphRAG's properties are most fully expressed. Weight is assigned not just to individual pieces of information, but to the relationships connecting them. "A developed Product B" is a stronger connection than "A attended a review meeting for Product C." Causal relationships carry more meaning than mere temporal coincidence. When AI traverses the knowledge graph, factoring in relational weight keeps it from being misled by surface noise — it gets closer to the core of the problem.
These three dimensions of weight working together allow Zerock Brain OS to transcend the limitations of Koylan's system. No need for humans to predefine module loading sequences or write fixed rules. AI agents autonomously form the optimal context — drawing on the task at hand and the countless weighted signals encoded in the knowledge graph. An intelligent, dynamic process akin to how an experienced expert instinctively selects "what needs to be said now" from a vast body of knowledge.
Zerock Brain OS in Practice: Inheriting "Master Craftsman Knowledge" in Manufacturing
Theory earns its value by proving itself in practice. Let me paint a concrete picture of the change Zerock Brain OS can bring to real business — specifically to the urgent challenge of technical knowledge inheritance in manufacturing.
Imagine a mid-sized parts manufacturer where Takahashi, a veteran engineer with 40 years of experience, works in the design department. His head contains an enormous repository of experience knowledge: the design philosophy behind past products, solutions to manufacturing problems, the subtle handling differences between materials — knowledge that resists easy articulation. None of it has been captured as a company asset. When he retires, it's gone forever. If you work in manufacturing, you've probably heard a version of this story.
Now imagine this company deploys Zerock Brain OS.
First, AI agents ingest all information scattered across the organization and build a knowledge graph: CAD data, design specifications, past incident reports, experimental data, customer feedback, and Takahashi's personal technical notes and daily logs accumulated over decades. GraphRAG technology automatically extracts entities and relations from this unstructured data, weaving it into a meaningful network. The tacit knowledge inside Takahashi's head is reconstructed as structured digital data — a "digital twin of the master craftsman's mind."
A few years later, Sato, a new engineer, joins the design team. She's tackling the design of a part with an unusually complex shape and has hit a serious problem. "I heard there was a similar issue in the past, but I don't know where the documentation is, and I don't know who to ask anymore."
She asks Zerock Brain OS: "What were the solutions to the strength problem Y in past Product X?"
The AI immediately traverses the knowledge graph. But it doesn't just retrieve the old incident report. Through dynamic weighting, it recognizes that the core insight isn't the formally documented official fix — it's an informal note Takahashi once made: "Lower the heat treatment temperature by exactly 5 degrees." It presents that note along with related data, then adds: "This approach may also be applicable to Part Z you're currently designing."
This isn't information retrieval. AI reads the context like an experienced senior colleague, identifies the core of the problem, and points toward a solution. The moment a master craftsman AI is born.
Zerock Brain OS doesn't stop at passive response. AI agents continuously survey the full knowledge graph, find connections invisible to humans, and proactively propose collaboration.
Immediately after the exchange with Sato, the AI finds a new connection in the knowledge graph: it cross-references the technical specifications of Part Z with a list of new supplier candidates being evaluated by the procurement team, and determines that a specialized processing technology one supplier possesses has a high probability of solving Part Z's challenges. It immediately notifies both Sato and the procurement contact: "We've identified that Vendor D's microwave sintering technology may have strong applicability to Part Z's strength problem. Would you like to arrange a joint technical evaluation meeting?"
Design's challenge and procurement's activity — two siloed functions that previously depended on chance encounters — now inevitably connect through AI. Individual knowledge ascending to organizational intelligence. This is what AI-driven organizational intelligence looks like.
This scenario isn't far off. A production line where customer needs, product design, and factory operations are all connected on a single vast knowledge graph — a hyper-efficient AI-driven factory. The craft expertise Japanese manufacturing has built over decades, preserved as reproducible data, passed on indefinitely. Zerock Brain OS is, we believe, a concrete step toward realizing that vision.
Creating Your Organization's "Second Brain"
Starting from the hope that Koylan lit with "Personal Brain OS," and elevating that philosophy into the context of organizations, Zerock Brain OS represents a progression along a clear path.
From prompt limitations to context engineering. From the constraints of static file systems to structured knowledge through GraphRAG. From uniform information retrieval to thinking context through dynamic weighting. This evolution marks the end of treating AI as a convenient calculator or well-read search engine — and the opening of an era where we welcome AI as a true partner that extends our own thinking processes.
Zerock Brain OS is not a single massive AI. It's a foundation on which countless specialized mini-agents think autonomously, collaborate, and create value — all sharing a common knowledge graph as their brain. When a sales support agent logs a customer interaction into the knowledge graph, that information immediately becomes available to the product development agent as a hint for the next improvement. When an HR agent deploys a new training program, those skills are reflected in the knowledge graph and inform optimal project team composition. Every activity in the organization accumulates in real time as structured knowledge, continuously improving the speed and quality of decision-making.
What we're working to realize through ZEROCK is exactly this world. AI Slides, AI Research, AI Knowledge, AI Email, AI Meeting Notes — these features are not independent tools. They're designed as an ensemble of agents working organically on a single knowledge graph. Action items extracted from meeting notes become triggers for research tasks; research results are automatically reflected in slides. We're continuously refining a system in which AI understands the flow of work and moves ahead of it.
TRAFEED (formerly ZEROCK ExCHECK) applies the power of the knowledge graph to export control — assessing risk levels in 5 seconds by structurally understanding the complex ownership relationships among trading partners and their compliance status. GraphRAG's "power to follow relationships" creates value across every domain of business.
The vast data within your organization is a precious resource for creating the future. Emails exchanged in daily work. Meeting transcripts. Accumulated proposals. The experience knowledge inside each employee's head. None of this is merely a record. Structured, given relationships, assigned appropriate weights — it becomes irreplaceable context through which AI agents can think.
Drawing out that full value and building an organizational "second brain" unique to your company — that's what we're focused on designing and building, day by day. Even a vague sense that "we should do something with our company's data" is a good enough starting point. Please reach out. Let's design a new form of collaboration together — where AI becomes your organization's second mind.
Author: Ryuta Hamamoto, TIMEWELL Corporation
References
- Muratcan Koylan, "The File System Is the New Database: How I Built a Personal OS for AI Agents"
- OrbilonTech, "GraphRAG vs Traditional RAG: Complete Guide" (2026)
- Anthropic, "Effective context engineering for AI agents" (2025)
- TIMEWELL Corporation, "ZEROCK | Internal Information Search AI" (https://timewell.jp/zerock)
