惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
博客园_首页
WordPress大学
WordPress大学
罗磊的独立博客
小众软件
小众软件
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
The Cloudflare Blog
GbyAI
GbyAI
C
Check Point Blog
腾讯CDC
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
博客园 - 聂微东
IT之家
IT之家
雷峰网
雷峰网
H
Help Net Security
博客园 - 叶小钗
美团技术团队
D
DataBreaches.Net

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Mycelium — Codebase memory for AI agents
KopikoCappu · 2026-06-25 · via Hacker News - Newest: "AI"

AI codebase intelligence

Your agent reads
40 files. It should
read 4.

One command gives your AI agent persistent, queryable memory of your entire codebase — before it touches a single file.

$ npx @kopikocappu/mycelium init

Works with Claude Code · Cursor · GitHub Copilot · Any MCP-compatible agent

↓ scroll

70+

Files mapped per project

Without Mycelium

Your agent guesses.

Before writing a single line, your agent opens file after file trying to build a mental model it has never had. By the time it starts, it's read 40 files and lost context on most of them.

app/page.tsx

app/layout.tsx

lib/auth-context.tsx

lib/user.ts

components/Navbar.tsx

components/ProGate.tsx

app/api/stripe/webhook/route.ts

+ 33 more files...

With Mycelium

Your agent knows.

Before touching anything, your agent calls /preflight and gets back exactly the files it needs — with plain English descriptions of what each one does.

app/api/checkout/route.ts

app/api/stripe/webhook/route.ts

lib/user.ts

app/pro/page.tsx

01 — SCAN

$ mycelium init

Map everything

Mycelium parses every file, resolves every import, and builds a dependency graph of the entire codebase. Claude Haiku writes a plain English description of what each file does and why it exists.

02 — QUERY

GET /preflight?task=

Ask before touching

Your agent calls /preflight with a plain English description of its task. Mycelium returns exactly which files matter and how they connect. Four files, not forty.

03 — TRACK

GET /history

Know what happened

Every file save is logged with a timestamp, a task description, and which agent made the change. You always know what your agents did — and when.

Natural language preflight

Describe your task in plain English. Get back exactly the files that matter, with AI-written explanations of what each one does and how they connect.

Live graph viewer

A browser-based visualization of your entire codebase. Files as nodes, imports as edges, call relationships in orange. Understand any codebase in five minutes.

Agent change history

Every file save logged by task and agent identity — human, Claude Code, Cursor, anything. The full audit trail of what your AI agents actually did.

Semantic search

Find files by concept, not keyword. "Authentication flow" finds the right files even when none of them have the word "auth" in their name.

Auto-bootstrap

Mycelium writes CLAUDE.md and .mcp.json into your project automatically. Agents discover it and use it without any manual configuration.

Cross-reference analysis

Before modifying a function, ask what calls it. Get the full blast radius — every file and function that depends on what you're about to change.

In practice

What your agent sees before it opens a file.

An agent about to implement a Stripe checkout calls /preflight and gets back exactly the right context. No guessing. No wasted reads. Just the graph knowing what matters.

The server runs locally at localhost:47821 — your code never leaves your machine.

$ curl "localhost:47821/preflight?task=add+stripe+checkout"

{

  "task": "add stripe checkout",

  "mode": "semantic",

  "tokensSaved": 7000,

  "files": [

    { "nodeId": "app/api/checkout/route.ts", "score": 0.94 },

    { "nodeId": "app/api/stripe/webhook/route.ts", "score": 0.91 },

    { "nodeId": "lib/user.ts", "score": 0.87 },

    { "nodeId": "app/pro/page.tsx", "score": 0.82 }

  ]

}

// 4 files. 7,000 tokens saved. Agent starts writing.

Developers

Make your agent actually understand what it's doing.

Stop watching Claude Code open 30 files before writing a single line. Mycelium gives it a map. It reads 4 files and gets it right.

  • Claude Code users
  • Cursor users
  • GitHub Copilot users
  • Any MCP-compatible setup

Engineering leads

Finally know what your agents are doing to the codebase.

Every agent session logged. Every file touched, timestamped, attributed. The audit trail that AI coding tools forgot to build.

  • Session-level history
  • Per-agent attribution
  • Task-based grouping
  • Full change timeline

New engineers

Understand any codebase in five minutes.

Open the graph viewer. See every file, every dependency, every connection — with plain English explanations on every node. No more codebase spelunking.

  • Visual dependency map
  • AI descriptions on every file
  • Semantic search by concept
  • Works on any language

Get started

Your codebase has been waiting to be understood.

One command. Any project. Your agent never files blind again.

$ npx @kopikocappu/mycelium init

🍄 mycelium

Built by Minh Tran · MIT License · 2026