Five Core Forms of AI Agent in YC's Eyes

marsbitPublished on 2026-05-20Last updated on 2026-05-20

Abstract

The article outlines five core architectural patterns for effective AI Agents, emerging from tools like Codex and Claude, that move beyond simple prompts towards reusable, process-based capabilities. 1. **Skills**: Reusable, parameterized workflows that function like method calls, allowing a single process (e.g., "/investigate") to handle various tasks based on input parameters. 2. **Thin Harness**: A lightweight execution framework (~200 lines) that manages the AI model's "hands and feet"—handling loops, file I/O, and context—without becoming bloated. 3. **Resolvers**: Routing tables that map tasks to specific Skills, preventing "context corruption" when managing dozens of Skills and ensuring outputs go to the correct locations. 4. **Latent vs. Deterministic Layer**: A critical separation where LLMs handle judgment, synthesis, and pattern recognition, while deterministic code handles tasks requiring precision, consistency, and low cost (like calculations). 5. **Memory**: A persistent, accumulating knowledge base (e.g., a markdown folder) with a "current trusted conclusion" section and an append-only timeline, enabling the system to learn and retain context over time. Together, these patterns create a "process power"—a durable competitive advantage. Unlike one-off prompt-based applications whose value quickly commoditizes, a well-designed AI Agent system encodes experience into reusable, parameterized workflows, offloads stable rules to code, and continuously learns thr...

Editor's Note: As AI Agents move beyond one-off prompts and vibe coding into more complex workflow stages, the truly important question is no longer 'Can the model complete the task?' but rather 'Can we solidify AI capabilities into reusable, accumulable process assets?'

This article starts from Garry Tan's GBrain and summarizes five core forms that many are converging on when using Agent tools like Codex, Claude Code, Hermes: parameterizable Skills, lightweight execution frameworks (Thin Harness), routing Resolvers, an execution layer separating model judgment from deterministic code, and Memory for long-term context accumulation.

These modules, combined, point towards a new kind of 'process capability': codifying experience into workflows, abstracting tasks into parameters, handing stable rules to code, entrusting judgment and synthesis to models, and continuously depositing learnings through a memory layer. Compared to one-off generated applications or prompts, this kind of system is harder to replicate and more likely to become the foundation for individuals, small teams, and even companies to form a long-term competitive advantage in the AI era.

The original text follows:

I spent some time studying Garry Tan's GBrain. As someone without a technical background and not working in venture capital, I want to distill a few general structural forms I see in it, and where its real significance lies.

I believe many people are gradually converging on the same set of core structures. They can roughly be summarized into 5 forms, which also represent the natural evolution direction in how agentic AI tools like Codex, Claude Code, Hermes, OpenClaw are being used.

Related Reading: 'Thin Harness, Fat Skills: The Real Source of 100x AI Productivity'

Skills: From SOP to 'Method Call'

Skills are almost everyone's most natural starting point. Even without prompting, users intuitively start building them because their form feels very familiar. I initially understood it as a kind of SOP (Standard Operating Procedure), a documented process for getting something done. The user provides 'what to do,' and the Skill provides 'how to do it.'

Tan's understanding is that a Skill is more like a 'method call.' In programming, a method call means invoking a programmatic flow with parameters. The same code runs every time; what changes are the parameters: what data, what question, what objective. For example, the same process_invoice function can handle every invoice in the system, not just the one it was originally written for.

Skills are a similar structure. A Skill named /investigate might contain seven fixed steps; these steps don't change. What changes are the parameters: TARGET (who or what to investigate), QUESTION (what you want to figure out), DATASET (where to look for information). Point it at a whistleblower case in healthcare, and it works like a research analyst; point it at SEC filings, and it works like a legal investigator. The same file, the same seven steps; the difference is provided by the external world.

This is different from traditional SOPs. Most SOPs are written for a specific role or task, like 'Processing Accounts Payable.' Each use case gets its own set of documents. Skills are more abstract; the same process can handle a category of problems. A well-designed Skill can do the work of dozens of SOPs because the case-specific information is extracted from the document and moved into parameters. In practice, some Skills are closer to SOPs, others closer to method calls.

Thin Harness: Model is the Brains, Harness is the Hands and Feet

Models, like Opus, GPT-5.5, etc., are raw intelligence; Harnesses, like Claude Code, Codex CLI, Hermes, OpenClaw, are the execution frameworks that give models real 'hands and feet.' They handle loop execution, reading/writing files, managing context, enforcing safety constraints. Their core code is around 200 lines.

Garry mentions a common mistake most people make: continuously stuffing more things into the Harness. I did the same. I ended up with 100 tool definitions and a pile of MCP servers. The result was the context window being filled with tool descriptions irrelevant to the current task. The model started confusing which tool to use, latency increased, accuracy dropped, eventually leading to so-called 'context corruption.'

Resolvers: Using Routing Tables to Solve Context Corruption

The solution to context corruption is to build a routing table. A Resolver's job is to map 'the incoming task type X' unambiguously to 'Skill Y should be called.' When you only have 5 Skills, you don't need a Resolver; but when you have 100 Skills, the descriptions become fuzzy, and the model easily fails to call the right Skill at the right time. Resolvers replace fuzzy pattern matching with explicit rules.

Tan also runs a similar Resolver-like mechanism for files: a separate routing table to decide where the output of a Skill should land in the filesystem. This is the same 'audit–route' structure applied to a different problem. This ensures outputs consistently go into the correct folders, not where the model temporarily guesses.

Skillify is another supporting idea of his: it's a quality loop to turn one-off Skills into long-term reusable infrastructure. Tan describes a 10-step process including: contract definition, using deterministic code where appropriate, unit testing, integration testing, LLM-as-judge evaluation, Resolver entry, audit script, checking which Skills have no call path, and end-to-end smoke tests. The test criterion is simple: if you have to ask the model the same question twice, it's a failure.

Latent vs. Deterministic: Judgment to the Model, Deterministic Tasks to Code

It's crucial to distinguish which work should be given to the LLM and which to a deterministic system. LLMs excel at judgment, synthesis, pattern recognition, and reading between the lines; but they are not good at arithmetic, combinatorial optimization, or anything requiring the same answer every time. LLMs are inherently probabilistic; when a deterministic solution can solve the problem, don't use an LLM.

Most non-technical people often underestimate the value of the deterministic layer. The default reaction is to throw everything at the model. But if something can be done deterministically, you almost always should. And you don't need to be a programmer because the model can write the code for you. What really needs training is a discipline: each time, ask yourself, can this be done reliably and cheaply with code? If the answer is yes, have the model write that code.

Memory: Making the System Truly Accumulative

For a system to be useful, it must have some form of memory. I'm not yet sure what the correct form is; many people are building it in different ways: vector embeddings, semantic similarity, knowledge graphs, hybrid storage, etc. Tan's approach is the same as mine: just a folder of markdown files.

His structure is: one page per person, one page per company, one page per concept. The top of each page is the 'Current Believed Conclusion,' a synthesized judgment that is continuously rewritten and updated as new evidence arrives; the bottom is an append-only timeline.

Choosing markdown yields several consequences. First, the files are the system's primary record, not some export. You can open it in VS Code, edit it manually, and the Agent will automatically read those changes. Second, typed relationships, like works_at, invested_in, founded, attended, advises, are automatically extracted via regex each time something is written, so the knowledge graph can connect itself without consuming tokens. This specific schema fits his work, but for others, it likely needs to be re-tailored based on one's own profession and business context.

Furthermore, a signal detector runs in the background. If a person is mentioned once, a stub page is created; if they are mentioned three times across sources, it triggers a web info completion process; after a meeting, a full process runs. A nightly 'dream cycle' scans conversations, completes outdated entity information, and fixes broken references. The base layer is text; everything built on top is cheap and composable.

There are, of course, more details underneath, but I believe these are the most important contours, and they are to a considerable degree universal.

Personally, I've already built about half of such an architecture. Previously, I hadn't reached the scale necessitating a true Resolver, but now I have, so I recently did a minor refactor to make my system model-agnostic and built a Resolver into it. The key part I haven't built yet is the background-running signal detector and the nightly dream cycle—the automatic info completion and organization mechanisms—which is what I want to try adding next.

I suspect that different builders converging on a similar structure is itself a signal: while this form might not work for everyone, it's broadly likely useful. Even if specific implementation details vary importantly, this overall structure is being independently discovered by more and more people.

A question I've been asking myself lately is: How do you build a sustainable competitive advantage with AI?

Everyone is excited about vibe-coded apps and one-off prompts, which are of course very cool. I myself started that way and got hooked. But anything that can be built with a one-off prompt will, in equilibrium, have its price driven down to the cost of the tokens required to build it—just a few cents.

For example, someone replicating MyFitnessPal, selling it at half the price, and making a million dollars is impressive. But soon, someone else will replicate it and sell it cheaper. The cycle continues until the profit margin is completely squeezed.

The truly sustainable thing is a kind of 'process capability.' Using the framework from Hamilton Helmer's 7 Powers, the architecture described above embodies process power.

7 Powers posits that companies can sustain above-average returns over the long term because they possess one of seven structural powers. Any advantage not rooted in these powers will eventually be competed away.

For small and medium businesses and early-stage companies, five of Helmer's seven powers are essentially closed doors. Economies of scale require scale; network effects and switching costs can be built but require a large user base first; counter-positioning or exclusive resources often mean patents or similar assets, which most companies don't have; brand typically takes a decade to build and can't be shortcut.

The remaining two are counter-positioning and process power.

Counter-positioning refers to a business model existing giants cannot copy because doing so would harm their own core business. Such opportunities exist sometimes but are not always available.

Thus, the most realistic path left is process power. And a well-designed AI system is precisely a tool for generating process power.

This is essentially the same work as building high-quality SOPs or proprietary software in-house: processes are encoded, cases are parameterized, the underlying deterministic systems are fast and reliable, and the memory layer continuously absorbs past learnings. It amplifies the 'productization of services': you can offer a service or product at lower cost or higher quality because the entire job has been structured.

Imagine an accountant building such a system. The memory layer is a folder; each client has a markdown file containing a current believed conclusion—like entity structure, annual tax positions, ongoing audits—and a timeline logging meetings, decisions, and changes.

She has Skills, like /year-end-review, /quarterly-estimate, /audit-prep. The same process can be executed parametrically for different clients.

She has a deterministic layer including tax forms, depreciation schedules, IRS documents, client historical returns, etc.

Add a mechanism like log tidying or a dream cycle. For example, the system automatically notices at night that a partner's K-1 allocation dropped 40% without a stated strategy change; or notices that a certain client's home office deduction structure could be migrated to another client—the structure is reusable, but the identity and privacy stay put.

Thus, she can charge a small premium, serve more clients per year, and competitors find it hard to replicate because this structure didn't appear out of thin air after her success; it was accumulated from the start.

On the surface, the tool is just a folder of markdown files. But every line in every file comes from a great deal of intentional testing, building, and iteration. What forms the competitive moat isn't the files themselves, but the process capability they embody.

Related Questions

QWhat are the five core structural forms that AI Agent tools like Codex, Claude Code, Hermes are converging towards, as discussed in the article?

AThe five core forms are: 1) Parameterizable Skills, which function like method calls. 2) Thin Harness, the lightweight execution framework for the model. 3) Resolvers, which are routing tables to prevent context corruption. 4) A separation layer for Latent (LLM) vs. Deterministic (code) tasks. 5) Memory, a system for accumulating long-term context and knowledge.

QAccording to the article, what is the key difference between a traditional SOP and a Skill in an AI Agent system?

AA traditional SOP is written for one specific job or task, like 'processing accounts payable,' with each use case having its own process. A Skill is more abstract, akin to a method call. The same Skill process (e.g., a fixed 7-step investigation) can handle a class of problems, with the case-specific information moved from the document into parameters like TARGET, QUESTION, and DATASET.

QWhat problem does the 'Resolver' component address, and how does it work?

AThe Resolver addresses 'context corruption,' which occurs when an AI harness has too many tool/Skill definitions, confusing the model and degrading performance. It works as a routing table, using explicit rules to map an incoming task type 'X' directly to the specific 'Skill Y' that should be invoked, replacing fuzzy pattern matching with clear directives.

QBased on the article, which of Hamilton Helmer's '7 Powers' is most accessible for creating a sustainable competitive advantage with AI for most small teams or early companies?

AThe most accessible power is 'Process Power.' The article argues that a well-designed AI system that encodes workflows, parameterizes tasks, separates deterministic code from LLM judgment, and accumulates memory becomes a tool for building process capability. This creates a competitive moat that is difficult to replicate, unlike easily copied one-off prompts or applications.

QHow is Memory implemented in Garry Tan's system as described, and what are two key benefits of this approach?

AMemory is implemented as a folder of markdown files: one page per person, company, or concept. Each page has a 'Current Believed Truth' section at the top (rewritten as new evidence arrives) and an append-only timeline at the bottom. Key benefits are: 1) The files are the system's primary record, editable manually and read automatically by the Agent. 2) Typed relationships (e.g., works_at, founded) are auto-extracted via regex on write, building a knowledge graph without consuming LLM tokens.

Related Reads

Three Years Later: Looking Back at My Predictions About ChatGPT in 2023

Three Years Later: Revisiting My 2023 Predictions on ChatGPT In March 2023, shortly after ChatGPT's launch, I made 20 predictions about its future. Now, in mid-2026, I've used AI agents to fact-check each one against the latest data. Overall, most major directional forecasts were correct, with only one outright error (incorrectly stating GPT-4 had 100 trillion parameters). Key successes included predicting that RAG and retrieval architectures would become the standard for handling knowledge and hallucinations, that natural language interfaces (LUI) would create a massive new industry layer beyond the models themselves, and that China would develop viable large language models, significantly closing the performance gap with Western counterparts within about three years. Predictions about the absence of mass unemployment, the rise of a new "robot network" for agent communication, and ChatGPT not possessing consciousness also held true in their core arguments. However, the "devil was in the details." Errors frequently involved specific numbers, timelines, or overlooking distributional effects. I tended to overestimate the speed of adoption (e.g., for agent networks) while underestimating the ultimate scale of capabilities or costs (e.g., AI winning IMO gold without tools, or the extreme capital required for frontier models). Other misjudgments included: underestimating how AI would reinforce, not dissolve, information filter bubbles; incorrectly assuming AI-generated content would easily circumvent copyright (it has instead triggered record-breaking settlements); and misidentifying where value would be captured (it accrued overwhelmingly to the compute layer, like Nvidia, not just the application or model layers). Key lessons from reviewing these predictions are: 1) Directional and mechanistic insights are far more reliable than precise numbers or absolute statements. 2) There's a consistent bias to overestimate short-term speed but underestimate long-term magnitude. 3) Errors often lie in missing distributional impacts within a generally correct aggregate trend. 4) Predictions phrased with nuance and caveats aged the best. 5) Some fundamental debates (e.g., on machine consciousness or the ultimate value chain) remain unresolved even after three years. This exercise is less about scoring the past and more about establishing rules for clearer thinking about the next three years of AI.

marsbit5h ago

Three Years Later: Looking Back at My Predictions About ChatGPT in 2023

marsbit5h ago

Three Years Later: Looking Back on My 2023 Predictions for ChatGPT

Looking Back After Three Years: Revisiting My 2023 Predictions on ChatGPT In March 2023, shortly after ChatGPT's debut and before GPT-4's release, I made over twenty predictions about AI's future based on limited information and intuition. Now, in May 2026, I revisited those forecasts using an AI-driven analysis with 41 Opus 4.8 agents to cross-reference them with the latest data. The assessment used symbols: ✅ Correct, 🟢 Mostly Correct, 🟡 Partially Correct, ❌ Incorrect. Overall, the directional judgments held up well, with only one major factual error regarding GPT-4's rumored parameter size (incorrectly cited as 100T). However, nuances and degrees of accuracy revealed more. **What Was Largely Correct:** Predictions about mechanisms and directions proved accurate. The rise of RAG (Retrieval-Augmented Generation) as the standard architecture for combating AI hallucination was confirmed, as was the transformative potential of LUI (Language User Interface) in creating a new industry layer atop GUIs. The emergence of "robot networks" (agent-to-agent communication protocols) and China's rapid catch-up in developing capable large models (closing the performance gap with top models to ~2.7%) were also on point. The analysis affirmed that LLMs lack consciousness and that the Turing Test merely measures perceived intelligence. **What Was Off Target:** Errors often involved specific numbers, over-optimistic timelines, or misjudged distributions. The prediction that value would primarily accrue to the application layer was half-right but missed NVIDIA's dominance as the profitable infrastructure layer. Forecasts about AI circumventing copyright issues and fostering a "global common ground" by averaging human viewpoints were incorrect; instead, major copyright settlements occurred and AI personalization is increasing. Estimates for model training costs ("$5-10 billion cap") were significantly off, underestimating frontier costs and overestimating replication costs. The notion that LLMs could never do complex math without tools was disproven by later models winning IMO gold. **Key Patterns from the Review:** 1. **Direction over precision:** Judgments about mechanisms and trends were more reliable than specific numbers or definitive statements. 2. **Timing bias:** There was a tendency to overestimate short-term speed but underestimate long-term magnitude and transformation. 3. **The distribution blind spot:** Aggregate-level correctness often masked uneven impacts (e.g., on young professionals' employment). 4. **The value of qualifiers:** Predictions framed with caution (e.g., "reportedly," "for now," "prototype in 2-3 years") aged better. 5. **Some debates continue:** Issues like the nature of "emergent abilities" or machine consciousness remain unresolved. This three-year review highlights that while seeing the big picture is crucial, humility regarding specifics, timelines, and disparate impacts is essential for future forecasting.

链捕手7h ago

Three Years Later: Looking Back on My 2023 Predictions for ChatGPT

链捕手7h ago

AI Bubble Warning: AI Investments Are Negative Returns for Most Tech Giants

The article issues a stark warning about a potential AI investment bubble. It notes that while the AI boom shares similarities with the TMT bubble of the late 1990s, its scale is vastly larger, currently driving 93% of U.S. GDP growth. Major hyperscale cloud providers like Microsoft, Alphabet, Amazon, Meta, and Oracle are planning to invest trillions in AI data centers over the coming years. However, calculations based on analyst projections for 2025-2030 reveal a concerning math problem: expected capital expenditure growth far outpaces projected revenue growth. Even under an extremely optimistic scenario of zero costs, the implied return on investment for most of these tech giants (except Amazon) is deeply negative. This suggests that the current trajectory could lead to one of history's largest shareholder value destruction events. The piece outlines two potential escapes: AI generating vastly more revenue than currently anticipated—a near-impossible task—or a significant cutback in the planned investment splurge. The latter scenario could trigger a domino effect, severely impacting the entire tech supply chain (from Nvidia to TSMC), potentially pushing the U.S. economy into recession, and causing a major stock market downturn. The author suggests upcoming high-profile IPOs by companies like OpenAI and Anthropic might represent a transfer of risk from early investors to public market participants. While the peak of the hype cycle might sustain investment through 2026, the fundamental financial dilemma remains unresolved, setting the stage for a potential market correction in 2027 or 2028, similar to the years following Alan Greenspan's "irrational exuberance" warning.

marsbit8h ago

AI Bubble Warning: AI Investments Are Negative Returns for Most Tech Giants

marsbit8h ago

From Tokens to Machine Labor: AI is Shifting from Tool to "Worker"

The article "From Token to Machine Labor: AI is Evolving from Tool to 'Worker'" argues that the business model for AI is shifting beyond simply selling computational resources (tokens, GPU hours) or model access. Instead, a new "machine labor market" is emerging, where the core economic transaction is the purchase of economically useful work directly performed by software. The central thesis is that AI pricing will evolve through four stages: 1) raw tokens, 2) standardized LLM capabilities (e.g., text generation), 3) industry-specific labor markets (e.g., legal review, radiology), and finally 4) a programmable results market where tasks like resolving a support ticket are bid on and priced based on outcome. In this future, buyers will care less about *which* model or GPU completes a task and more about whether the work meets specified standards for accuracy, latency, and cost. This transition reframes the impact of AI on human labor. Rather than simple replacement, it suggests a re-coordination where machines handle standardized, verifiable work, freeing humans for roles involving oversight, context management, responsibility, and final judgment. In some cases, this "last 1%" of human input becomes more valuable as it enables the other 99% to be automated. Furthermore, as AI reduces the cost of work, demand may expand, creating larger markets (e.g., 24/7 customer service) rather than just cheaper versions of existing ones. The article concludes that while infrastructure (GPUs, models, tokens) remains crucial upstream, the market is converging on a simpler, tradeable unit: machine labor that can be defined, measured, priced, and procured based on contractible specifications.

marsbit8h ago

From Tokens to Machine Labor: AI is Shifting from Tool to "Worker"

marsbit8h ago

Xiaomi MiMo's 99% Price Cut is Not Marketing! Luo Fuli Posts on X to Refute Critics

The price of Xiaomi's MiMo-V2.5 series API has been permanently reduced by up to 99%, specifically for the "Input (Cache Hit)" cost, which covers users re-reading historical context in long conversations. MiMo's head, Luo Fuli, published a detailed technical blog to clarify that this drastic price cut stems from genuine engineering breakthroughs, not a marketing stunt or a simple price war. The core of the achievement lies in six key engineering optimizations. First, the model architecture adopts a Hybrid Sliding Window Attention (SWA), reducing the memory footprint (KVCache) to 1/7th of a traditional model. Second, a dual-pool memory management system actually utilizes these savings, allowing a single GPU to handle over 5 times more concurrent users. Third, an upgraded prefix caching mechanism achieves a cache hit rate of 93-95% for repeated reads, meaning most such requests bypass GPU computation entirely. Fourth, a self-developed distributed cache (GCache) utilizes idle SSD space on existing GPU servers, eliminating additional storage costs. Fifth, an intelligent scheduling system (LLM-Router) efficiently routes requests to maximize cache reuse and performance. Sixth, Multi-Token Prediction (MTP) accelerates the model's text generation ("output") side. Together, these systemic optimizations dramatically lower the real computational cost per request, enabling the 99% price reduction for cached inputs while reportedly maintaining positive gross margins. Luo Fuli's disclosure aims to shift the narrative from "price war" to a demonstration of substantive AI engineering progress.

marsbit10h ago

Xiaomi MiMo's 99% Price Cut is Not Marketing! Luo Fuli Posts on X to Refute Critics

marsbit10h ago

Trading

Spot
Futures

Hot Articles

How to Buy CORE

Welcome to HTX.com! We've made purchasing CORE (CORE) simple and convenient. Follow our step-by-step guide to embark on your crypto journey.Step 1: Create Your HTX AccountUse your email or phone number to sign up for a free account on HTX. Experience a hassle-free registration journey and unlock all features.Get My AccountStep 2: Go to Buy Crypto and Choose Your Payment MethodCredit/Debit Card: Use your Visa or Mastercard to buy CORE (CORE) instantly.Balance: Use funds from your HTX account balance to trade seamlessly.Third Parties: We've added popular payment methods such as Google Pay and Apple Pay to enhance convenience.P2P: Trade directly with other users on HTX.Over-the-Counter (OTC): We offer tailor-made services and competitive exchange rates for traders.Step 3: Store Your CORE (CORE)After purchasing your CORE (CORE), store it in your HTX account. Alternatively, you can send it elsewhere via blockchain transfer or use it to trade other cryptocurrencies.Step 4: Trade CORE (CORE)Easily trade CORE (CORE) on HTX's spot market. Simply access your account, select your trading pair, execute your trades, and monitor in real-time. We offer a user-friendly experience for both beginners and seasoned traders.

5.3k Total ViewsPublished 2024.03.29Updated 2025.03.21

How to Buy CORE

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of CORE (CORE) are presented below.

活动图片