This is a platform rather than an integration, and the convenience tool that goes from a natural-language request to execution in one call is where its design decisions concentrate. Everything depends on what that safety check actually enforces, and the tool text says it exists without saying what it covers — worth reading the implementation before wiring it to anything consequential. The rest is a coherent set: tiered memory, model routing, local speech models rather than hosted ones, and HTTP routing to downstream agents. Local Whisper and Coqui is a real distinction for anyone who cannot send audio to a third party.
A broad agent-platform surface rather than an integration with one service: a processing pipeline, a tiered memory system, a model router, speech transcription and synthesis, codebase context assembly, downstream agent routing over HTTP, and feedback collection.
- neuroverse_store and neuroverse_recall work against a tiered memory system with short and longer-lived tiers, keyed per user.
- neuroverse_model queries a multi-model router, so the choice of model is made by the router rather than fixed at the call site.
- neuroverse_transcribe runs Whisper speech-to-text and neuroverse_synthesize runs Coqui text-to-speech, both local-model rather than hosted.
- neuroverse_route hands a task to a registered downstream agent over HTTP, which is what makes this a hub rather than a single agent.
- neuroverse_assemble_context scans a codebase and assembles the most relevant chunks for a query, and neuroverse_reason runs a complex task on higher-performance models.
- neuroverse_process runs mixed-language input through the whole pipeline, and neuroverse_execute parses, safety-checks and executes a request end to end.
- neuroverse_feedback submits RLHF data for tuning.
The pipeline names Whisper and Coqui specifically, so speech depends on those models being available to it rather than on a hosted API.
One command — npm install neuroverse
