NervMap: Single Command Server Service Discovery and Diagnostics Tool

What NervMap Does
NervMap is a command-line tool that provides comprehensive visibility into server services and their dependencies. It was created to address the pain point of manually running multiple commands like docker ps, systemctl, and ss -tlnp and cross-referencing configurations when troubleshooting server issues.
Key Features and Performance
The tool executes in 0.6 seconds and discovers:
- All Docker containers
- All systemd services
- All bare processes
It maps dependencies between these services using multiple detection methods with varying confidence levels:
- Docker Compose
depends_on(100% confidence) - TCP established connections via
/proc/net/tcp(85% confidence) - Environment variables like
DATABASE_URL,REDIS_HOST(60% confidence) - Docker network membership (30% confidence)
Diagnostic Capabilities
NervMap includes 15 diagnostic rules that identify issues with severity and impact analysis, plus fix suggestions. The diagnostics cover:
- Port conflicts
- OOM-killed containers
- Restart loops
- Failed systemd services
- Circular dependencies
- Disk pressure
- Exposed wildcard ports
Usage and Testing
The tool includes a --scope flag to focus on a single project. It has been tested on a production server with 263 services and reported zero false positives. Secrets are redacted by default in all output.
NervMap is available as a Linux binary and is free for personal use. The source is hosted on GitHub.
📖 Read the full source: r/ClaudeAI
👀 See Also

Reduce AI Coding Session Costs by 90% with Graph-Based Code Indexing
A developer built a local graph database that indexes a codebase using LLM-generated summaries, cutting Claude Code session costs from $6-10 to cents by avoiding redundant file re-reads.

Miasma: A tool to trap AI web scrapers with poisoned data
Miasma is a server tool that sends poisoned training data and self-referential links to AI web scrapers, creating an endless loop. It runs with minimal memory footprint and can be configured via CLI options including port, host, and link prefix.

AutoBe: How Weak Local LLMs Fixed an AI Backend Generator's Architecture
AutoBe is an open-source AI agent that generates complete backend apps using TypeScript, NestJS, and Prisma. The team discovered their initial 100% compilation success produced unmaintainable code, then rebuilt with modular generation—crashing success to 40%—and used weak local LLMs like qwen3-30b-a3b-thinking to debug schema ambiguities.

Lobster Cage: Dockerized Security Environment for Self-Hosting OpenClaw on Raspberry Pi
A developer built Lobster Cage, a Docker Compose environment with restricted outbound access and proxy-based routing to run OpenClaw securely on a Raspberry Pi for experimentation.