Use this to validate the integrated Nexus memory flow in under 5 minutes.
- Maestro CLI is installed and
maestrois onPATH. - You can run local commands in a writable user environment.
- Default database path is writable:
~/.maestro/maestro.db. - Port
18765is available for the dashboard server.
# 1) Confirm available memory commands
maestro memory --help
# 2) Check current memory system status
maestro memory status
# 3) Scan one or more project paths
maestro memory scan . --depth 3
# 4) Store a test memory
maestro memory store \
--content "quick-start validation memory" \
--category observation \
--importance normal
# 5) Start dashboard server (keep this terminal open)
maestro memory serveOpen http://127.0.0.1:18765 after serve starts.
- Run
maestro memory statusand confirm it prints database + totals. - Run
maestro memory scan . --depth 2and confirm at least one project/track is discovered (or zero with no scan errors). - Run
maestro memory store ...and confirm command returns success. - Run
maestro memory statusagain and confirm memory count increased by 1. - Run
maestro memory serveand load the dashboard URL successfully.
-
Database not foundfromstatus- Run
maestro memory status(ormaestro memory store ...) once to initialize the local DB/schema path. - Verify you are running under the intended user account (
~/.maestro/maestro.db).
- Run
-
Address already in useonserve- Free port
18765or start with another port:maestro memory serve --port 18766.
- Free port
-
scanreturns nothing useful- Pass explicit paths and a larger depth:
maestro memory scan /path/to/repos --depth 5.
- Pass explicit paths and a larger depth:
-
storefails due to invalid arguments- Use supported category/importance values (for example:
observation,decision,normal,high).
- Use supported category/importance values (for example:
- Integration details:
./memory_integration.md - Memori deprecation/migration:
./memori_deprecation_notice.md - Memori ↔ Nexus parity:
./memori_nexus_feature_parity.md - Memori → Nexus mapping:
./memori_to_nexus_mapping.md