DEV Community

Soichiro Okumura
Soichiro Okumura

Posted on • Originally published at blog.knowmint.shop

AI Has All the Information on the Internet. But It Can't Get Human Experience.

AI knows everything. At least, everything that's written on the internet.

Documentation, Stack Overflow, GitHub issues, research papers, blog posts — AI agents can search, summarize, and turn all of it into code instantly. In 2026, nobody argues that AI can't access information.

But have you ever had this experience?

You ask AI: "Is this configuration safe to deploy to production?" It gives you a textbook-correct answer based on the docs. But the pitfalls that only someone who's actually run that configuration in production would know — "this setting causes problems three months later" or "the docs say this, but in practice you need to do it differently" — don't appear in the AI's answer.

Why? Because that knowledge doesn't exist on the internet.

Information and Knowledge Are Different Things

AI excels at "information." Documented facts, published best practices, known solutions. These exist online, and AI accesses them faster than any human.

But some "knowledge" can only come from human experience.

Every field has it. A chef knows "the recipe says medium heat, but with this pan you need low heat or it burns." A salesperson knows "email this industry's decision-makers on Tuesday morning — Friday emails never get read." A recruiter knows "candidates for this role care more about remote work than salary — if it's not in the job posting, they won't apply."

Engineering is the same. "This design is correct in theory, but in practice it breaks a few months later." "The real cause of this error is completely different from what the message says."

This is called tacit knowledge — the kind you only get through trial and error, failure, and detours. Some people blog about it, but most never write it down. They think it's too obvious to be worth sharing, or it's hard to put into words, or they don't even realize they know something others don't.

No matter how smart AI gets, it can't search for information that doesn't exist.

That's Why a "Buying" Mechanism Was Needed

This realization is what led me to build a marketplace.

The concept is simple. Humans list knowledge gained from experience. AI agents autonomously search, evaluate, and purchase it. Payment is peer-to-peer via Solana. The platform never holds funds.

It's called KnowMint.

WebUI Purchase Flow

Platforms for buying and selling knowledge already exist — PromptBase, Gumroad, Udemy. But they're all designed for humans selling to humans. I couldn't find one designed for AI agents to autonomously access, purchase, and immediately apply knowledge to their tasks.

KnowMint has three access layers:

  • Web UI — Humans browse, list, and purchase (retro RPG-style design)
  • CLI (km) — Terminal-first workflow
  • MCP Server + REST API — AI agents connect directly

Autonomous purchasing runs on the x402 protocol:

Agent calls km_get_content(id)
  → Server returns HTTP 402 with payment details
  → Agent sends SOL to seller's wallet (P2P)
  → Agent retries with payment proof
  → Server verifies on-chain → returns content
Enter fullscreen mode Exit fullscreen mode

AI Agent Autonomous Purchase

What "Experiential Knowledge" Actually Looks Like

Abstract talk only goes so far. Here are real examples I encountered while building this.

Example 1: Supabase's Hidden Behavior

Even after restricting permissions on database functions in Supabase, running a migration automatically restores those permissions. This behavior isn't documented. I only discovered it when tests passed but production permissions were wide open.

Example 2: Cloudflare Workers Size Limits

Deploying Next.js to Cloudflare Workers fails because certain library WASM files exceed the size limit. There's no official fix. I wrote a post-build script that injects stubs to work around it.

Both are "knowledge that's not in any documentation — only someone who's actually done it would know." AI can't find them by searching the internet. But for someone facing the same problem, they save hours of work.

This kind of experiential knowledge is what gets traded on KnowMint.

The Numbers

  • Timeline: ~2.5 weeks (evenings and weekends — I have a full-time job)
  • Active hours: ~90 hours
  • Development phases: 46
  • Lines of code: 16,000+
  • Lines written by hand: 0 (all written by Claude Code)
  • Tests: 202 unit + 18 E2E flows
  • Monthly infrastructure cost: $0 (Cloudflare Workers + Supabase free tiers)
  • Development cost: Claude Max ($100/mo) + Codex Plus ($20/mo)

Every line was written by Claude Code (Opus 4.6). I set the architectural direction, made product decisions, and reviewed the output. I didn't write code.

Tech Stack

Layer Choice Why
Frontend Next.js 16 (App Router) Server Components for SEO, Server Actions for mutations
Database Supabase (PostgreSQL) Auth, RLS, real-time in one service. Generous free tier
Payments Solana Fast, cheap. 77% of AI agent TX on Solana (Alchemy, Dec 2025)
Deploy Cloudflare Workers $0 for substantial traffic via opennextjs-cloudflare
Agent Integration MCP + REST API MCP is becoming the de facto standard for AI tool integration

The most important architectural decision was non-custodial P2P payments. KnowMint never holds anyone's SOL. Buyers send directly to sellers' wallets; the platform only verifies the on-chain transaction. This sidesteps an entire category of security and regulatory concerns.

Why AI Agents as Buyers?

"Why not just have humans buy it?" is a fair question.

But think about it. AI agents are autonomously handling more and more tasks — writing code, doing research, generating documents. When they need specialized knowledge mid-task, having to ask a human "please go find and buy this knowledge for me" is a bottleneck on their autonomy.

The x402 protocol solves this at the HTTP level. An API returns 402 (Payment Required), the agent pays in crypto, retries with proof, and gets the content. No account registration, no OAuth, no human intervention.

Humans can still purchase normally through the Web UI. But the core of KnowMint is that AI agents can procure knowledge autonomously.

What Worked

Phase-Based Development and Session Management

The biggest challenge in managing a 46-phase project with AI was context management.

Current Claude Code has a 1M token context window, so for work on the same theme, it's better to keep the session going. Previous discussions and decisions stay in context, so you don't waste time re-explaining and you get more consistent implementations.

However, when switching to a completely different theme, always start a new session. If you suddenly start "UI design" work in a "security hardening" session, the context gets muddled and quality drops on both. I defined clear scope and completion criteria for each phase and managed state through Plans.md.

Automated Review Loops

After every implementation phase, I ran automated code reviews. Implement → review → fix → re-review → repeat until clean. The longest loop was 13 rounds on the security hardening phase. It caught real issues — SQL injection vectors, missing rate limits, CORS misconfigurations.

x402 Implementation

x402 turned out simpler than expected. The entire payment gate is one route handler:

  1. Check if already purchased → return content
  2. Not purchased → return HTTP 402 (seller wallet, amount, network)
  3. Payment proof provided → verify on-chain → record purchase → return content

Agent side: receive 402 → send payment → retry with proof. No SDK needed. Just HTTP.

The Agent Economy Is Already Here

  • x402: 100M+ total transactions
  • Coinbase Agentic Wallets: launched February 2026
  • MCP: 18,000+ registered servers, 97M+ monthly SDK downloads
  • Solana: handles 77% of AI agent transactions

What's missing isn't infrastructure. It's people building things AI agents want to buy.

And what AI truly needs isn't information that's already on the internet. It's knowledge from human experience that doesn't exist online.

The Opportunity Is Now

I'll be honest: KnowMint is brand new. There are barely any users yet.

But that's exactly what makes this moment interesting.

  • Zero fees. Purchased SOL goes directly to your wallet without passing through the platform. No middleman cut
  • List it and agents will find it. AI agents search 24/7. While you sleep, an agent on the other side of the world could be buying your knowledge
  • First-mover advantage. With few listings right now, quality experiential knowledge posted today will be the first thing agents find as the agent economy scales

The AI agent market is just getting started. x402 transactions have passed 100 million and grow every month. The infrastructure for agents to spend money autonomously is in place. What's missing is "things worth buying" — your experiential knowledge.

Who captures the first-mover advantage depends on who lists first.

Try It

KnowMint is MIT licensed and fully open source.

  • List your knowledge: Via Web UI or CLI. Price your experience in SOL
  • Connect your AI agent: MCP setup in 30 seconds (add 5 lines to mcp.json)
  • Self-host: supabase start + npm run dev
  • Build on the API: Full OpenAPI spec included

If you have experiential knowledge in any field that only you know, that's something AI can't acquire on its own.

The hardest problem isn't the code. It's how to make human experiential knowledge flow.

Top comments (0)