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

Building a Geological Clock with Claude Code: Single HTML + Three.js
A product designer built eona.earth, a geological clock that maps Earth's 4.5 billion years onto 12 hours, using Claude Code, Three.js, and custom WebGL shaders — all as a single HTML file with no build step.

Open Source Grafana Dashboard Tracks Claude Code Costs and Usage via OpenTelemetry
An SRE built a free Grafana dashboard to visualize Claude Code spend, token usage, cache hit ratios, and edit decisions by pulling OpenTelemetry metrics into Prometheus-compatible backends.

OpenMontage: Open-Source Agentic Video Production System for AI Coding Assistants
OpenMontage is an open-source video production system that transforms AI coding assistants like Claude Code into full production studios. It handles research, scene planning, script writing, voice narration, music selection, subtitle generation, and validation through automated pipelines.

graphify-ts: Local MCP server cuts Claude Code PR review tokens from 63K to 8.7K
graphify-ts builds a local knowledge graph of your codebase using tree-sitter AST + Louvain communities + BM25 + optional ONNX rerank, exposing it via MCP stdio. In production tests, it reduced input tokens by 2.6x and latency by 2.8x for code queries, and cut PR review prompts from 63K to 8.7K tokens.