CLI Documentation
CLI Interface
Deterministic control over the NARE engine via terminal-based orchestration.
Core Commands
nare [task]Autonomous Execution
The primary entry point for engineering tasks. It parses your intent and selects the optimal routing tier.
$ nare "fix the null pointer regression in auth.py"
Flags & Parameters
--tier <n>Force a specific routing tier (1-5).
--verboseEnable detailed trace logging.
--no-verifySkip the Verification Oracle loop.
--no-cacheDisable FAISS episodic memory lookup.
/status
View real-time session telemetry, including token savings and memory hit rates.
/compact
Trigger manual history summarization to reduce context window pressure.
DeepTech Insight: Amortized Reasoning
Every command executed via the CLI is not a static call. The engine performs Neural Amortization: it attempts to match your intent against the Episodic Memory layer before triggering expensive LLM inference. This is why repeated patterns execute in ~100ms.
Internal Reference:
nare.core.engine.routingPython SDK Documentation →
Programmatic access and engine configuration