SendToAI VS Code Extension Solves Claude's 20-File Limit with Project Bundling

What SendToAI Does
SendToAI is a VS Code extension that solves the problem of Claude's 20-file upload limit by bundling your entire project into a single clipboard paste. Instead of re-uploading files in every new chat session and losing context, you can send your complete project structure to any AI that accepts text input.
Key Features
- Three bundle modes: Full project, just your open tabs, or only your git changes
- Three output formats: Includes Claude XML for structured prompts and a compact mode that strips comments, saving around 20% on tokens
- Visual file picker: Choose exactly which files get included
- Live token counts: Updates as you select files
- Cost estimates: Shows costs for Haiku, Sonnet, and Opus before sending
- Project notes: Type in your stack, architecture, or any context you want the AI to know - gets prepended to every bundle automatically
- Smart file handling: Respects your .gitignore, skips node_modules and binaries automatically
Practical Details
The extension works with Claude, ChatGPT, Gemini, or any AI that accepts text input. According to the developer, a typical project costs about $0.04 to send on Haiku. It's available for free on the VS Code marketplace.
📖 Read the full source: r/ClaudeAI
👀 See Also

Enhanced Claude Code Telegram Plugin Adds Voice, Stickers, Threading
A developer has released a fork of the official Claude Code Telegram plugin that adds voice message transcription via Whisper, sticker/GIF support, conversation threading, and emoji reactions. It's a drop-in replacement requiring only cloning, copying one file, and restarting.

GrapeRoot: Open-source tool reduces Claude Code token usage by 40-80%
GrapeRoot is a free, open-source local MCP server that sits between your codebase and Claude Code, reducing token usage by 40-80% by tracking what the model has already seen and sending only relevant code changes.

Mia: Local AI Workspace Daemon with Native Android App and P2P Streaming
Mia is a daemon that runs on your machine and pairs with a native Android app over P2P, allowing you to kick off and monitor long-running AI coding tasks from your phone. It supports OpenCode, Claude Code, Gemini CLI, and Codex agents, streaming output directly to your device in real time.

Artificial-life: A 300-line Python reproduction of Computational Life research
A Python implementation reproducing the Computational Life paper, where 240x135 grid of Brainfuck-like programs interact and evolve self-replicating code through random pairing and instruction tape concatenation.