UNPKG

clangd-query

Version:

Fast C++ code intelligence CLI tool for humans and AI agents. Provides semantic search, source code reading and usage lookups.

17 lines 686 B
#!/usr/bin/env node /** * clangd-daemon - Background server for clangd-query * * This daemon maintains a persistent clangd instance to provide fast code intelligence * queries without repeated indexing overhead. Features: * - Single daemon per project root via lock files * - Unix domain socket communication with JSON-RPC 2.0 protocol * - Automatic idle timeout after 30 minutes of inactivity * - Graceful shutdown with proper resource cleanup * - Concurrent client handling * * The daemon is automatically started by clangd-query when needed and runs in the * background until explicitly stopped or idle timeout expires. */ export {}; //# sourceMappingURL=daemon.d.ts.map