Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
| Date | Stars |
|---|---|
| 2026-07-31 | 593 |
| 2026-08-05 | 593 |
| 2026-08-06 | 593 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# Claude Code 2.1.88 — Custom Build

Rebuilt from source maps with real source preservation for `@ant/*` packages.
## Prerequisites
- Node.js >= 20
- Bun >= 1.1
- npm (for overlay dependency install on first build)
## Build
```bash
# Production (minified)
node scripts/build-cli.mjs
# Development (unminified, faster builds)
node scripts/build-cli.mjs --no-minify
# Custom output path
node scripts/build-cli.mjs --outfile /path/to/output/cli.js
```
Output: `dist/cli.js` (wrapper) + `dist/cli.bundle/` (bundle).
First build runs `npm install` for ~80 overlay packages. Subsequent builds skip this.
## Run
```bash
node dist/cli.js
```
### Computer Use (macOS)
Computer use runs in-process automatically when the `CHICAGO_MCP` flag is enabled. The native addons are resolved from `prebuilds/` relative to the bundled package, or via env var overrides:
```bash
# Override native addon paths if the default resolution fails
COMPUTER_USE_SWIFT_NODE_PATH="/path/to/computer-use-swift.node" \
COMPUTER_USE_INPUT_NODE_PATH="/path/to/computer-use-input.node" \
node dist/cli.js
```
## Feature Flags
| Flag | What it does |
|------|-------------|
| `BUILDING_CLAUDE_APPS` | Skill content for building Claude apps |
| `BASH_CLASSIFIER` | Bash command safety classifier |
| `TRANSCRIPT_CLASSIFIER` | Transcript-level auto-mode classifier |
| `CHICAGO_MCP` | Computer use via MCP (screenshot, click, type, etc.) |
Toggle in `enabledBundleFeatures` inside `scripts/build-cli.mjs`. ~90 flags available — search `feature('` in source.
## Native Addons
In `source/native-addons/`:
| File | Purpose |
|------|---------|
| `computer-use-swift.node` | Screen capture, app management (macOS) |
| `computer-use-input.node` | Mouse/keyboard input (macOS) |
| `image-processor.node` | Sharp image processing |
| `audio-capture.node` | Audio capture |
## Clean Rebuild
```bash
rm -f .cache/workspace/.prepared.json
node scripts/build-cli.mjs --no-minify
```
## Structure
```
scripts/build-cli.mjs — Build script (source map extraction + bun bundling)
source/cli.js.map — Original source map (4756 modules)
source/native-addons/ — Pre-built .node binaries
source/src/ — Overlay assets (.md skill files)
.cache/workspace/ — Extracted workspace (generated, gitignored)
dist/ — Build output (generated)
```
Excerpt of 2,403 characters
Read on GitHub5
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:c69dc0c9e30532ba, llm:Repository name 'claude-code-source-build' by andrew-kramer-inno; TypeScript project. No README, no topics, no description. Likely not clear—name suggests building source for Claude code (Anthropic Claude?) but insufficient info.