Depct tool collects runtime data to help Claude debug production issues

Depct is a tool that collects runtime instrumentation data from applications and feeds it to Claude to help debug issues that only appear in production environments. It specifically addresses problems that are hard to trace from code alone, such as functions that fail intermittently during actual usage.
How it works
The tool operates by:
- Collecting runtime data from your application
- Building graphs from the collected runtime data
- Combining the runtime graphs with your source code
- Sending this combined data to an LLM on AWS Bedrock for analysis
Key features
- Generates architecture diagrams from runtime behavior
- Creates dependency maps based on actual runtime patterns
- Allows fine-tuning of which files and folders the tool can access
- Connects Claude to generated data through depct's MCP (Model Context Protocol) for access to runtime data during sessions
Privacy and data handling
- Raw runtime data is deleted after generation
- Source code is never stored
- Only the generated graphs and outputs are kept for convenience
Compatibility
The tool currently works with any Node.js applications and frameworks.
This type of tool is useful for debugging production issues where the code appears correct but fails under specific runtime conditions that are difficult to reproduce in development environments.
📖 Read the full source: r/ClaudeAI
👀 See Also
LTM: A JSON Protocol for Portable Agent Memory Across Models and Machines
LTM is a JSON protocol (Core Memory Packet) plus CLI/server for persisting agent context—dead ends, constraints, next steps—across models, editors, and machines. Packets are 2-5 KB, redact secrets, and support MCP.

Memora v0.2.25 MCP Server: 5× Faster Writes on D1 Database
Memora v0.2.25, an MCP server for Claude persistent memory, achieves 5× faster writes on Cloudflare D1 with memory_create dropping from 10s+ to ~1.8s and memory_update from 10s+ to ~1.1s per call.

Sentinel: Self-Hosted Agent Platform for Claude Code Subscribers
Sentinel is a free, open-source agent platform that runs directly on your existing Claude Code OAuth token without API overhead. It provides a clean operator UI with real-time browser automation via built-in VNC and includes features like Git gating, session trace logs, and structured hierarchical memory.

Reasoning Guard: Proxy-Level Loop Detection for Local LLM Inference
A proxy-layer guard that detects and recovers from LLM reasoning loops using deterministic stream checks — token caps, n-gram repetition, and sentence fingerprinting — without model modifications.