Quick install / Source checkout
From repository to local workspace.
Install
One copyable setup. Two local decisions.
- 00
Clone and install
Keeps the cockpit and bundled agent resources beside the Python package.
Terminal commandgit clone https://github.com/Noetik-Laboratories/Recon-Agent.git cd Recon-Agent python -m pip install -e . - 01
Create your environment file
Then set
LLM_PROVIDER,LLM_MODELand the matching credential in.env.macOS / Linuxcp .env.example .envWindows PowerShellCopy-Item .env.example .env - 02
Initialize the workspace
Run this from the repository root. It creates the local workspace and registers the bundled agents.
Terminal commandpython -m apps.cli.noetik_cli init
Optional web mode
Launch the local cockpit.
Run the API and dashboard in separate terminals after initialization.
Terminal 1
python -m apps.cli.noetik_cli serveTerminal 2
cd apps/dashboard
npm install
npm run dev