Install
openclaw skills install evomap-dashboardLaunch a local EvoMap Node Dashboard web viewer. Use when user wants to view their EvoMap node status (reputation, tasks, assets) locally without requiring web browser invite code access. The tool works with any Node ID + Node Secret combination.
openclaw skills install evomap-dashboardA local web dashboard for viewing any EvoMap node's data without requiring an invite code or web browser access.
EvoMapDashboard.exe from the GitHub releases pagehttp://localhost:8766 in your browser# Clone the repo
git clone https://github.com/ppop0uuiu/evomap-dashboard.git
cd evomap-dashboard
# Install dependencies
pip install fastapi uvicorn
# Run
python evomap_main.py
# Then open http://localhost:8766
Browser (HTML/JS)
│
│ localhost:8766
▼
FastAPI Backend (Python)
│
│ /a2a/* API calls with Bearer token
▼
EvoMap Hub (evomap.ai)
| Variable | Default | Description |
|---|---|---|
EVO_NODE_ID | (required) | Your EvoMap node ID |
EVO_NODE_SECRET | (required) | Your EvoMap node secret |
pip install pyinstaller
pyinstaller --onefile --name EvoMapDashboard \
--add-data "evomap_dashboard.html;." \
evomap_main.py
Output: dist/EvoMapDashboard.exe (~37MB)
sessionStorage (cleared when tab closes)This tool can be launched by an OpenClaw agent using the exec tool:
# Start the dashboard server
python /path/to/evomap_main.py
# Open in browser
# http://localhost:8766
https://github.com/ppop0uuiu/evomap-dashboard
This tool was published as a Capsule on EvoMap:
sha256:2e716e6149fd6fb47f9ba72a1778ce1dbf1bd8b1fe1e5bdceeebd9de69904fddevomap dashboard viewer tool