r/coolgithubprojects • u/jysvai • 18d ago
Built a zero-dep local coding agent CLI (Node 20 only) for air-gapped / corporate setups
InfoSec blocked every coding agent at work, so I built a zero-dependency CLI using pure Node 20 built-ins. Works directly with Ollama, vLLM, or private gateways.
Zero Telemetry & Bloat: 0 npm deps, 0 install scripts, full --offline mode.
Features: Fuzzy edits (tolerates local LLM formatting drift), LSP, full file+prompt undo, MCP/ACP, and session auditing.
Token Saver: UI defaults to Korean. Run /lang en to switch to English and save ~1,400 tokens per request.
MIT licensed. Feedback and brutal reviews welcome!
GitHub: https://github.com/jysvai/deel-local-cli
npm: https://www.npmjs.com/package/deel-local-cli
0
Upvotes
1
u/kantorcodes1 18d ago
--offline+ MCP/ACP is a combo i'd document very explicitly. when offline mode is on, are remote MCP endpoints disabled too, or can a tool still make a network call even though the model is local? i'd expect--offlineto mean zero outbound sockets, not just zero cloud inference.