Sherlock: Apple Developer Docs as Local MCP for Claude Code

Sherlock is a Claude Code plugin that gives Claude a local, searchable copy of Apple's full developer documentation. It indexes ~70,000 symbols across 300+ frameworks into SQLite FTS5 and serves them as MCP tools. The goal: stop Claude from hallucinating Apple API method names, deprecated symbols, or non-existent frameworks.
What It Does
Sherlock provides 5 MCP tools for querying the local doc index, plus 3 skills that auto-trigger lookups when you ask about Apple APIs. This grounds Claude in actual Apple documentation rather than relying on training data.
Installation
Add the plugin from the Claude Code plugin marketplace:
/plugin marketplace add hotfix-jobs/sherlock
/plugin install sherlock
Technical Details
The plugin uses SQLite FTS5 for full-text search across all indexed symbols. It covers 300+ Apple frameworks with roughly 70,000 symbols. The tool set allows Claude to look up specific APIs, search by keyword, and retrieve documentation snippets directly.
Who It's For
iOS/macOS developers using Claude Code who need reliable API references without leaving the editor.
Source & Repo
Open source project by hotfix-jobs on GitHub.
📖 Read the full source: r/ClaudeAI
👀 See Also

Queuelo: A Lightweight Approval API for LLM Agents
Queuelo is a simple API layer that lets LLM agents pause before irreversible actions. Agents POST action requests, you get notified to approve or reject, and the agent receives the answer via webhook.

VTCode: A Rust TUI Coding Agent That Aggressively Trims Context with AST-Level Chunking
VTCode is an open-source Rust TUI coding agent that aggressively trims context using AST-level chunking via ripgrep and ast-grep. It supports custom OpenAI-compatible providers, sandboxing with macOS Seatbelt and Linux Landlock, and tree-sitter-bash validation on generated commands.

Testing Local LLMs for Autonomous Code Generation: Quality vs. Speed Benchmark
A developer built a harness to test local LLMs on real Go code generation tasks, measuring compilation success, field extraction accuracy, and throughput. Results compare models across quality and speed.
CTOP: Terminal UI to Monitor Claude Code Sessions, Zero Deps
CTOP is a zero-dependency Node.js TUI that shows CPU, memory, context window saturation, token breakdown, and cost estimates for all running Claude Code and Codex sessions.