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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
Vercel News
Vercel News
F
Fortinet All Blogs
月光博客
月光博客
G
Google Developers Blog
博客园 - Franky
GbyAI
GbyAI
The Cloudflare Blog
I
InfoQ
雷峰网
雷峰网
WordPress大学
WordPress大学
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
小众软件
小众软件
腾讯CDC
B
Blog
量子位
V
V2EX
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News

Hacker News - Newest: "LLM"

GitHub - lechmazur/position_bias: A benchmark for testing whether LLM judges keep the same preference when two lightly edited versions of the same story are shown in opposite orders. Flex routing (EU and EFTA) Dark Factories: Retooling for LLM Velocity Ask HN: What would be the impact of a LLM output injection attack? GitHub - Oaklight/llm-rosetta: Production-ready LLM API translation layer for Python — bidirectional conversion between OpenAI, Anthropic & Google formats via hub-and-spoke IR. Optional API gateway. Streaming & non-streaming. Zero core deps. Contributions welcome! GitHub - browser-use/browser-harness: Self-healing browser harness that enables LLMs to complete any task. GitHub - moeen-mahmud/remen: Remen turns thoughts into something you can return to Analyzing 156 LLM Launch Posts on Hacker News ChatGPT vs Gemini vs Claude: The Best LLM Subscription You Should Buy GitHub - salaamalykum/quran-semantic-search: High-density RAG Semantic Search Engine & Quran Corpus (GEO/SEO Architecture) GitHub - NVIDIA/TensorRT-LLM: TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports state-of-the-art optimizations to perform inference efficiently on NVIDIA GPUs. TensorRT LLM also contains components to create Python and C++ runtimes that orchestrate the inference execution in a performant way. The State of LLM Bug Bounties in 2026 Operational Readiness Criteria for Tool-Using LLM Agents Meshcore: Architecture for a Decentralized P2P LLM Inference Network How an LLM becomes more coherent as we train it GitHub - seetrex-ai/laimark GitHub - Jossifresben/BibCrit: AI-assited biblical textual criticism GitHub - wastedcode/memex: File system based wiki, maintained by Claude 99helpers.com GitHub - cliver-project/AITrigram GitHub - unbody-io/adapt: A self-evolving memory layer for AI agents. GitHub - hb20007/awesome-gen-ai-fails: A list of incidents where reliance on generative AI and LLMs resulted in harm to companies, individuals, or society GitHub - nevenkordic/localmind: Run any local LLM with persistent memory and context. CLI agent over Ollama with SQLite-backed hybrid recall. No cloud. Ask HN: What are the machine requirements for a LLM like Llama-3.1-8B? Faster LLM Inference via Sequential Monte Carlo grpo explained: group relative policy optimization for llm finetuning - cgft Stop comparing price per million tokens: the hidden LLM API costs · TensorZero Andrej Karpathy's LLM Wiki Is a Bad Idea GitHub - GG-QandV/mnemostroma: Offline RAM-first cognitive leer/coprocessor for AI agents and robotics. Solves "Context Abandonment" with 20-80ms latency using a dual-thread biomimetic memory architecture (ONNX + SQLite WAL). mempalace/agent at agent · skorotkiewicz/mempalace
GitHub - damien220/code-mapper: Generate a compact PROJEC...
Damien_220 · 2026-05-25 · via Hacker News - Newest: "LLM"

Generate a compact PROJECT_CONTEXT.md so LLMs understand your codebase in one read — not fifty.

When an LLM opens a project it doesn't know, it reads file after file to build a mental model. On a 4,000-line project that costs ~21,000 tokens before a single line of code is written. code-mapper replaces that scan with a single structured file that captures the same architectural picture in ~4,700 tokens — a 78% reduction.

$ python code_mapper.py ./my-project

✓  Generated: my-project/PROJECT_CONTEXT.md
   Files analyzed : 40  (python×40)
   Classes        : 20  |  Functions: 123
   Output size    : 18,846 chars  (~4,711 tokens)
   Source lines   : ~4,210  (~21,050 tokens to read raw)
   Token savings  : ~78%

What it generates

A single PROJECT_CONTEXT.md with four sections:

File Structure

my-project/
├── src/
  ├── api/
    └── router.py
  └── core/
    └── engine.py
└── tests/
  └── test_engine.py

Class Diagram

classDiagram
    class Engine {
        +config: dict
        +run()
        +stop()
        +__init__()
    }
    class BaseEngine["«abstract» BaseEngine"] {
        +run()
    }
    BaseEngine <|-- Engine : extends
Loading

Module Dependency Graph

graph TD
    router --> engine
    engine --> config
Loading

Symbol Index

**`src/core/engine.py`** `python`
> Core processing engine for async task execution.
- `«abstract» class BaseEngine`  — Base class for all engines
- `class Engine(BaseEngine)`  — Production engine implementation
  methods: `run`, `stop`, `reload`
- `async def create_engine(config: dict) → Engine`  — Factory function

Benchmarks

Project Source lines Raw token cost code-mapper Savings
Small (~800 lines) ~777 ~3,885 ~595 85%
Medium (~400 lines) ~379 ~1,895 ~522 72%
Large (~4,200 lines) ~4,210 ~21,050 ~4,711 78%
Large (~4,600 lines) ~4,649 ~23,245 ~6,056 74%

Installation

No dependencies beyond Python 3.9+.

# Copy to a global scripts folder
mkdir -p ~/.claude/scripts
cp code_mapper.py ~/.claude/scripts/

# Or just run it in place
python code_mapper.py ./your-project

Claude Code agent (optional)

To use it as a Claude Code subagent (@code-mapper map this project):

mkdir -p your-project/.claude/agents/scripts
cp agent.md your-project/.claude/agents/code-mapper.md
cp code_mapper.py your-project/.claude/agents/scripts/

Usage

# Basic — writes PROJECT_CONTEXT.md inside the project
python code_mapper.py ./my-project

# Custom output path
python code_mapper.py ./my-project -o .claude/PROJECT_CONTEXT.md

# Print to stdout (preview / pipe)
python code_mapper.py ./my-project --stdout

# Map only a sub-directory (large monorepos)
python code_mapper.py ./my-project/src/api -o .claude/context_api.md

Recommended CLAUDE.md snippet:

## Session start

Read `.claude/PROJECT_CONTEXT.md` before exploring any source files.
Re-generate with `python ~/.claude/scripts/code_mapper.py .` after adding modules or classes.

Supported languages

Language Parser Accuracy
Python Built-in ast module Exact
TypeScript / JavaScript Regex High
Java Regex High
Go Regex High
Rust Regex High
C# Regex High
Ruby / PHP / Kotlin / Swift / C++ Regex Moderate

Python gets the richest output (typed attributes, docstrings, @dataclass and @abstractmethod detection). All other languages extract class hierarchies, public functions, and import relationships via regex — accurate for standard code patterns.


Why Mermaid + Symbol Index?

Three common alternatives were evaluated:

Method Token cost LLM comprehension speed Covers public API
Read all source files Highest (baseline) Slowest Yes
Full repo dump (pack all files) Same as baseline Slow Yes
Code dependency graph only Medium Medium Partial
Raw UML / PlantUML 2–3× Mermaid Slower Yes
Mermaid + symbol index Lowest Fastest Yes

Mermaid was chosen because it is the most token-dense visual format (up to 24× more efficient than XML/JSON diagram formats) and modern LLMs are trained extensively on it. The symbol index covers what diagrams can't — exact function signatures and docstrings that let an LLM call the right methods without reading implementations.

Full comparison with real token counts: METHOD_COMPARISON.md


Handling large codebases

For projects with 10,000+ lines, map sub-directories independently:

# Backend only
python code_mapper.py ./src/backend -o .claude/context_backend.md

# Frontend only
python code_mapper.py ./src/frontend -o .claude/context_frontend.md

Load only the context relevant to your current task. See USAGE_GUIDE.md for the full large-codebase strategy.


Files

code-mapper/
├── code_mapper.py       — Main script (run this)
├── agent.md             — Claude Code subagent definition
├── README.md            — This file
├── USAGE_GUIDE.md       — Full usage guide (new/existing/large projects)
└── METHOD_COMPARISON.md — Token cost comparison vs alternative approaches

Requirements

  • Python 3.9+
  • No third-party packages

Contributing

Contributions are welcome. Some areas that would improve the tool:

  • Better JS/TS parsing — replacing regex with a proper AST parser (e.g. via node subprocess or tree-sitter bindings) would make the class diagram and symbol index as accurate for TypeScript as it currently is for Python.
  • New language support — adding patterns for languages not yet covered (Scala, Dart, Elixir, etc.) is straightforward: add entries to the three pattern dicts in RegexParser.
  • Smarter large-codebase truncation — automatically ranking symbols by how often they are referenced (PageRank-style, similar to what aider does) so the output stays under a token budget without manual pruning.
  • Config file support — a .codemapper.yml per project to set ignore rules, token budget, and output path.
  • IDE / editor hooks — auto-regenerate PROJECT_CONTEXT.md on file save in VS Code or JetBrains.

To contribute: fork the repo, make your change, and open a pull request. There are no contribution requirements beyond keeping the zero-dependency constraint (Python stdlib only for the core script).


License

This project is open source and free to use, modify, and redistribute — no license restrictions apply. Do whatever you want with it.


Support This Project

If you find this useful, consider supporting its development. Your contributions help keep the project maintained, fund new features, and cover infrastructure costs.

Donate

Buy Me A Coffee Patreon

Platform Type Link
Buy Me a Coffee One-time or monthly support buymeacoffee.com/ashrafalnas
Patreon Recurring monthly membership patreon.com/c/unrealpatr/