Forge: A Claude-based IDE with automated verification and project DNA

Forge is a Claude-based IDE built on VS Code by a single developer over two weeks using Claude Code. Unlike Cursor and Copilot, Forge's AI agent doesn't just write code and hand you diffs - it runs automated verification before you see anything.
Automated verification system
The agent runs the type checker, executes your tests, checks coverage, and validates imports automatically. If verification fails, the agent enters a self-healing loop where it reads the error, fixes the code, and re-runs verification for up to 3 attempts. By the time you review the code, it already works.
Project DNA and context retention
Forge scans your codebase to build a Project DNA that includes:
- Tech stack
- File structure
- Code patterns
- Naming conventions
- Git hotspots
- Tech debt
This DNA is included in every request so the agent follows your patterns without being told. Every architectural decision you discuss gets captured in a Decision Journal, allowing the agent to build compounding context that doesn't reset.
Technical implementation
Built on VS Code, Forge works with all your existing extensions. It's Claude-only and requires you to bring your own API key. The tool is still under development but available for testing.
📖 Read the full source: r/ClaudeAI
👀 See Also

singularity-claude: A Self-Evolving Skill Engine for Claude Code
singularity-claude is an open-source Claude Code plugin that adds a recursive evolution loop to prevent skill rot. It scores skill executions, auto-repairs low-scoring skills, crystallizes high-performing versions, and detects capability gaps.

Inline Visualizer: Local AI Models Can Now Render Interactive HTML Visualizations
Inline Visualizer is a BSD-3 licensed plugin for Open WebUI that enables any local AI model with tool calling support to render interactive HTML/SVG visualizations directly in chat, with a JavaScript bridge allowing elements to send messages back to the AI.

Vibeyard IDE adds embedded browser for direct web UI editing with AI agents
Vibeyard, an open-source IDE for AI coding agents, now includes a browser tab session type that lets users click elements in a web UI and instruct an AI agent to edit them directly, eliminating selector guessing and component hunting.

Claude Code's Monitor tool pipes dev server logs into AI-driven auto-fixes
Claude Code's Monitor tool lets you run a dev server in background, tail logs with smart grep filters, and have Claude auto-detect errors, write fixes, and commit them — all while you test the UI.