MCP Just Deleted the Session ID. That Is the Smartest Thing It Has Done.
▲ 4 r/MCPservers+1 crossposts

MCP Just Deleted the Session ID. That Is the Smartest Thing It Has Done.

The Model Context Protocol shipped its biggest spec change since launch.

The session ID is gone entirely.

Here's the problem it solved: the original MCP used a stateful session

model. Client connects, server hands back a session ID, every request

echoes it back. Works perfectly on localhost. The moment you put a load

balancer in front of multiple replicas (which is how every production

HTTP service runs), it falls apart. Request 1 lands on Replica A.

Request 2 lands on Replica B. Replica B has never seen your session ID.

Tool call fails.

Teams patched it with sticky sessions, Redis shared state, and deep

packet inspection at the gateway. Every fix added cost without fixing

the root cause.

The July 28th release candidate removes the root cause. No initialize

handshake. No session ID. Every request carries everything the server

needs in a meta object. Any replica can answer any request.

I made a video walking through the full update - the stateless core,

Multi Round-Trip Requests for tools that need mid-flow user input, new

routing headers, the extension framework, and the design lesson that

applies beyond MCP to any distributed system you build.

Video: https://youtu.be/rZq00ZafL6I

Full writeup: https://medium.com/@AkhilAIWorld/mcp-just-deleted-the-session-id-that-is-the-smartest-thing-it-has-done-2be3f1e13957

u/Akhil_vallala — 2 days ago
▲ 6 r/ClaudeCowork+1 crossposts

Claude Skills vs MCP: Why Simon Willison Said Skills Might Be the Bigger...

Back in October 2025, Simon Willison (who built Datasette and is one of the most reliable technical voices in AI) called Claude Skills "maybe a bigger deal than MCP." That's a bold claim. In this video I break down why I agree with him.

What we cover:
→ What a Claude Skill actually is (it's just a markdown file)
→ The token math that makes Skills dramatically more efficient than AGENTS.md
→ Skills vs MCP - they're not competing, they're different categories
→ How to build your first skill in 4 steps (takes ~30 minutes)
→ How skills self-improve over sessions - unlike prompts
→ Chaining skills into full automated workflows
→ Where skills fit in your full agent stack

Full article with code examples and diagrams:
https://medium.com/p/3d706ba52044

Also check out my article on OKF - the missing piece for AI agents:
https://medium.com/@AkhilAIWorld/google-just-quietly-released-the-missing-piece-for-ai-agents-its-called-okf-7e96a33898ce

🔔 Subscribe for weekly deep dives on Claude, AI agents, and developer tools.

#Claude #ClaudeSkills #AIAgents #Anthropic #MCP #AIProductivity #ArtificialIntelligence

youtube.com
u/Akhil_vallala — 3 days ago

Claude Skills vs MCP: Why Simon Willison Said Skills Might Be the Bigger...

Simon Willison (who built Datasette) called Claude Skills "maybe a bigger deal than MCP" when Anthropic released them in October 2025. I finally made a video breaking down why I think he's right.

The key insight that changed how I think about this:

Almost everything about HOW to use a tool can be described in a markdown file at about 5% of the token cost of MCP. Skills aren't a replacement for MCP - they're a completely different category.

What the video covers:

- What a Claude Skill actually is (it's literally just a SKILL.md file)
- The token math: 20 skills costs ~1,000 tokens at startup vs 18,800+ tokens for the equivalent in AGENTS.md
- Skills vs MCP - when to use each
- How to build your first skill in 4 steps (~30 minutes)
- The self-improving loop: how skills get better over sessions while prompts stay static
- Chaining skills into full automated pipelines

The part I find most underrated: a skill accumulates your corrections over time. By session 20, you're getting near first-draft quality output consistently. A prompt you paste every session stays exactly as good as the day you wrote it.

Full video: https://youtu.be/SVrQkHanGTQ

Also wrote the full breakdown with code examples on Medium if you prefer reading: https://medium.com/p/3d706ba52044

Happy to answer questions about the implementation in the comments.

u/Akhil_vallala — 3 days ago
▲ 35 r/Rag

Google quietly dropped a new open standard for AI agents in June 2026. Most people missed it. It's called OKF.

Been diving deep into agent memory architecture lately and stumbled on OKF - Open Knowledge Format - published by Google Cloud on June 12th. It's gotten way less attention than it deserves.

The core idea is simple: instead of explaining your codebase/systems to an AI agent every single session, you build a .okf/ directory of markdown files with YAML frontmatter that any agent can read. One required field (type). No SDK, no schema registry, no vendor lock-in. Just files.

What makes it interesting vs. just using CLAUDE.md or AGENTS.md:

  • It's a knowledge graph, not a flat list - concepts link to each other via plain markdown links
  • Versioned in git next to your code
  • Works across any agent (Claude Code, Cursor, Codex, 20+)
  • Karpathy's LLM wiki gist basically predicted this pattern; Google just formalized it

I wrote two pieces on it if anyone wants to go deeper:

Part 1 - What OKF is and how it works: Google Just Quietly Released the Missing Piece for AI Agents. It's Called OKF.

Part 2 - OKF + RAG together (when to use each, hybrid architecture): Your AI Agent Has Two Memory Problems. OKF Solves One. RAG Solves the Other.

The OKF vs RAG breakdown is the part I found most useful - they're not competing, they solve different memory problems. OKF handles your "known-knowns." RAG handles the large unstructured corpus. Most production stacks need both.

Curious if anyone here is already using something like this pattern.

reddit.com
u/Akhil_vallala — 6 days ago

Google dropped a new open standard for AI agents in June 2026. Most people missed it. It's called OKF.

Been diving deep into agent memory architecture lately and stumbled on OKF - Open Knowledge Format - published by Google Cloud on June 12th. It's gotten way less attention than it deserves.

The core idea is simple: instead of explaining your codebase/systems to an AI agent every single session, you build a .okf/ directory of markdown files with YAML frontmatter that any agent can read. One required field (type). No SDK, no schema registry, no vendor lock-in. Just files.

What makes it interesting vs. just using CLAUDE.md or AGENTS.md:

  • It's a knowledge graph, not a flat list - concepts link to each other via plain markdown links
  • Versioned in git next to your code
  • Works across any agent (Claude Code, Cursor, Codex, 20+)
  • Karpathy's LLM wiki gist basically predicted this pattern; Google just formalized it

I wrote two pieces on it if anyone wants to go deeper:

Part 1 - What OKF is and how it works: Google Just Quietly Released the Missing Piece for AI Agents. It's Called OKF.

Part 2 - OKF + RAG together (when to use each, hybrid architecture): Your AI Agent Has Two Memory Problems. OKF Solves One. RAG Solves the Other.

The OKF vs RAG breakdown is the part I found most useful - they're not competing, they solve different memory problems. OKF handles your "known-knowns." RAG handles the large unstructured corpus. Most production stacks need both.

Curious if anyone here is already using something like this pattern.

reddit.com
u/Akhil_vallala — 6 days ago

Google quietly dropped a new open standard for AI agents in June 2026. Most people missed it. It's called OKF.

Been diving deep into agent memory architecture lately and stumbled on OKF - Open Knowledge Format - published by Google Cloud on June 12th. It's gotten way less attention than it deserves.

The core idea is simple: instead of explaining your codebase/systems to an AI agent every single session, you build a .okf/ directory of markdown files with YAML frontmatter that any agent can read. One required field (type). No SDK, no schema registry, no vendor lock-in. Just files.

What makes it interesting vs. just using CLAUDE.md or AGENTS.md:

  • It's a knowledge graph, not a flat list - concepts link to each other via plain markdown links
  • Versioned in git next to your code
  • Works across any agent (Claude Code, Cursor, Codex, 20+)
  • Karpathy's LLM wiki gist basically predicted this pattern; Google just formalized it

I wrote two pieces on it if anyone wants to go deeper:

Part 1 - What OKF is and how it works: Google Just Quietly Released the Missing Piece for AI Agents. It's Called OKF.

Part 2 - OKF + RAG together (when to use each, hybrid architecture): Your AI Agent Has Two Memory Problems. OKF Solves One. RAG Solves the Other.

The OKF vs RAG breakdown is the part I found most useful - they're not competing, they solve different memory problems. OKF handles your "known-knowns." RAG handles the large unstructured corpus. Most production stacks need both.

Curious if anyone here is already using something like this pattern.

reddit.com
u/Akhil_vallala — 6 days ago

I spent a full day watching every major AI agent tutorial in 2026 - here's what actually matters

Watched about 6+ hours of Greg Isenberg, Ras Mic, Matthew Berman, and Austin Marchese covering Claude agents, MCP, skills, and the Karpathy method. Tried to synthesize the most useful stuff into two writeups.

The biggest thing I took away: the models are good enough now. The gap between Opus 4.6 and GPT 5.4 is nearly irrelevant. What actually separates people getting 10x results is the architecture around the model - context files, memory.md, MCP connections, and reusable skills.

A few things that surprised me:

  • Skills cost ~53 tokens per turn vs 944+ for equivalent agents.md entries. That gap destroys performance on long sessions.
  • Ras Mic argues agents.md files are mostly counterproductive for most users (hot take but he makes a good case)
  • Karpathy's method is dead simple: write a spec before you start, maintain a scratchpad, and feed every failure back into the system permanently

Wrote it up in full if anyone wants to go deeper:

Article 1 (agents, memory, MCP, skills): https://medium.com/p/d1d59321bc95

Article 2 (Karpathy's 3-layer method): https://medium.com/p/292a716bc840

Happy to answer questions - been deep in this stuff all week.

reddit.com
u/Akhil_vallala — 21 days ago