VibeSmith: Local Tool for Detecting Skill Conflicts in Claude Code Projects

What VibeSmith Does
VibeSmith is a local desktop application built to address component management challenges in Claude Code projects. The developer created it after experiencing issues with component sprawl across multiple projects, including global skills in ~/.claude/ shadowing project-level ones with the same name, agents referencing skills that only exist in different projects, and hooks firing in unintended contexts.
Key Features
- Unified view: Shows every skill, agent, command, and hook across all projects plus global components in one place
- Conflict detection: Flags when global and project-level components share the same name, with side-by-side diff and priority indicator
- Dependency graph: DAG visualization showing which skills reference which others, including circular reference detection
- Context cost tracking: Token usage estimate per component to identify dead weight that loads into every conversation
Technical Details
The tool runs locally on macOS and processes data entirely on your machine—nothing leaves your system. It was built because existing solutions like CLI tools only handle file location but not content-level conflicts, and Cursor Marketplace is Cursor-only.
The developer's breaking point came when deleting a skill they thought was unused, only to discover two other skills referenced it, causing agents to silently produce worse output without explicit errors.
📖 Read the full source: r/ClaudeAI
👀 See Also

Self-Hosted GitHub Bot Runs Claude Code with 40+ Webhook Triggers and MCP Tools
A self-hosted GitHub bot leverages Claude Agent SDK with full Claude Code features, supporting 40+ webhook triggers, 4 built-in MCP servers, and custom YAML-based workflows for PR review, CI auto-fix, and issue triage.

SecureContext: An MCP Plugin for Persistent Memory and Token Reduction in Claude Code
SecureContext is an open-source MCP plugin that provides MemGPT-style persistence across Claude Code sessions, reduces input tokens by ~87% through targeted context recall, and isolates credentials via a security sandbox.

GLM-5.1 vs MiniMax M2.7: Performance comparison for AI coding agents
GLM-5.1 achieves SWE-bench-Verified 77.8 and Terminal Bench 2.0 56.2 scores, the highest among open-source models, while MiniMax M2.7 offers fast responses with low TTFT and high throughput ideal for CI bots and batch edits.

Claude IDE Bridge: MCP Tool for Remote Editor Access
Claude IDE Bridge is an open-source tool that provides Claude AI with remote control access to code editors via MCP (Model Context Protocol). It exposes editor knowledge like live type information and debugger state as callable tools.