ForgeAI: A Visual Workbench for Model Engineering

ForgeAI is a desktop tool designed to simplify local model engineering by providing a visual interface for inspecting, merging, and training AI models. After six months of development, this tool is built with Rust, Tauri v2, SvelteKit, and llama.cpp, and is available for Linux, macOS (both Intel and Apple Silicon), and Windows.
Key Features
- 3D Model Inspection: Visualize model architecture, memory usage, and layers in three dimensions, allowing for a more intuitive understanding of model structure.
- Model Merging: Offers a drag-and-drop interface for merging models using 12 different methods. The M-DNA Forge feature enables users to visually select and drag layers from different models to create a new 'offspring' model.
- Layer-Specific Training: Supports training of specific layers using LoRA/QLoRA techniques.
- Quantization: Allows the quantization of models into GGUF formats ranging from Q2 to Q8.
Technical Challenges and Learnings
The development revealed the complexity of cross-architecture model merging. Successful merges require models to be from the same family and within a 1.2x dimension difference. Arbitrary merging of models, such as attempting to merge a 268M (640d) model with a 999M (1152d) model, often results in poor outcomes due to dimension interpolation not equating to knowledge transfer across diverse architectures.
The tool is particularly useful for developers tired of juggling multiple command-line tools and YAML configurations, providing an all-in-one solution for local model engineering.
📖 Read the full source: r/ClaudeAI
👀 See Also

Using MCP Code Mode for Efficient Claude Keyword Research
A developer built an MCP server that enables Claude to perform autonomous keyword research using a Code Mode pattern, reducing tool definition tokens from thousands to ~1,000 with just two tools: search and execute.

OpenTrace: Self-Hosted Observability Server with 75+ MCP Tools
OpenTrace is a self-hosted observability server that provides logs, user analytics, and database introspection through 75+ MCP tools, running on a $4 VPS with SQLite storage and read-only Postgres connections.

Mouser: Open-source alternative to Logitech Options+ for MX Master 3S
Mouser is a lightweight, open-source tool that remaps buttons on the Logitech MX Master 3S mouse without requiring Logitech's proprietary software. It runs fully locally with no telemetry, supports per-application profiles, and includes DPI control and battery monitoring.

Superglue CLI: Let AI Agents Execute API Calls Without Pre-Built Tools
Superglue CLI provides a skill that teaches AI coding agents how to use its commands, handle authentication, build tools, and debug failures. Instead of creating pre-built tools for every API integration, agents can read API specs at runtime and plan multi-step calls.