Pando Agent is a combined frontend and backend workspace for the PandoShare agent prototype.
frontend/- React/Vite Web UI. It talks to the backend over HTTP only.backend/- Agent runtime source and local HTTP API service..pandoshare/- Local runtime state written by the backend. This directory is ignored by Git.
Install frontend dependencies:
npm --prefix frontend installStart the Web UI and backend API together:
npm run devOpen:
http://127.0.0.1:8765/
The backend API listens on:
http://127.0.0.1:3001/
Useful focused commands:
npm run dev:backend
npm run dev:frontend
npm run checkRuntime data is written under .pandoshare/ and is intentionally ignored by Git.
The only supported repository root for development and commits is pando-agent/.
When you run npm run dev, both frontend and backend use pando-agent/.pandoshare/ as the single runtime data directory.
Do not commit API keys, tokens, local logs, or generated build output.