ai-codex: Pre-index your codebase to save Claude tokens

What ai-codex does
ai-codex is a single script that scans your project and generates five compact markdown files to pre-index your codebase for Claude Code conversations. This eliminates the initial exploration phase where Claude typically spends 10-20 tool calls reading files, scanning directories, and checking functions.
How it works
You run npx ai-codex once to generate these files:
routes.md— every API route with methods and auth tagspages.md— full page tree with client/server flagslib.md— all library exports with function signaturesschema.md— database schema compressed to key fields onlycomponents.md— component index with props
Then add one line to your CLAUDE.md telling Claude to read these files first. Every future conversation skips the exploration phase entirely.
Performance impact
On large projects, the exploration phase typically burns 30-50K tokens before any real work begins. The creator's example project had 950+ API routes and 255 DB models:
- Without codex: ~15 Serena/Read calls to understand the finance module
- With codex: 5 grep calls on the pre-built index, instant full picture — routes, pages, schema, lib exports, components
- All in parallel, all under 2 seconds
Technical details
The tool works with Next.js (App Router & Pages Router) and generic TypeScript projects. It auto-detects Prisma schemas. The entire tool was designed and built by Claude Code itself in a single conversation session. It's MIT licensed and available on GitHub.
📖 Read the full source: r/ClaudeAI
👀 See Also

Mnemos: an MCP server for persistent Claude Code memory
Mnemos is an open-source MCP server that gives Claude Code persistent memory across sessions, recording corrections as structured patterns and pushing ranked context at startup. Single 15 MB Go binary, no Docker or vector DB needed.

GLM 5 on Mac M3: Performance Observations for Agentic Coding
A user reports running GLM 5 via MLX 4-bit quantization on a Mac M3 with 512GB RAM, finding it usable for agentic coding with context under 50k tokens but noting significant slowdowns beyond that threshold.

BetterClaw vs OpenClaw: Comparing Tool Calling, Structured Outputs, and Workflow Control
A developer-focused comparison of BetterClaw and OpenClaw covering tool calling, structured outputs, workflow control, and day-to-day agent development.

Open Source Claude Skills for Product Managers: PRD Generator, User Stories, Meeting Notes
A developer has released five free Claude AI skills for product managers that generate formatted .docx files for PRDs, user stories, meeting synthesis, market research, and stakeholder updates. The tools avoid hallucinated content and use structured templates.