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

Agentic Context Engine: Automated Agent Improvement Loop with 34.2% Accuracy Gain
An open-source tool automates the entire agent improvement loop from trace analysis to fix implementation, achieving 34.2% accuracy improvement on Tau-2 Bench in one iteration. The system uses Claude Code in a REPL environment to analyze failures and decide between prompt or code fixes.

Open-source Claude Code plugin captures books and converts them to structured Markdown
A developer has open-sourced a Claude Code plugin that automatically captures book pages via screenshots, performs OCR with macOS Vision, and generates structured Markdown files organized by theme rather than chapter order. The tool supports Kindle, Apple Books, Kindle Cloud Reader, and scanned PDFs on macOS.

CAL: Open-Source Context Optimization Layer for LLM Agents
CAL (Context Assembly Layer) is a Python library that reduces Claude API token usage by 83% through intelligent context selection and compression. It's available via pip install and MIT licensed.

Storybloq: A Project Tracker Living in Your Repo's .story/ Directory Now Has a Mac App
Storybloq, a project tracker that stores tickets, issues, roadmap phases, and session handovers as JSON/markdown inside .story/ in your repo, now has a free Mac app on the App Store. It integrates with Claude Code via CLI and MCP server, and was built entirely using Claude Code.