Context LatticeBy Private Memory Corp
CLI

Install, launch, and validate Context Lattice from terminal in minutes.

Use these commands as the canonical local flow for public and premium lanes.

Install

Clone + bootstrap

git clone https://github.com/sheawinkler/ContextLattice.git
cd ContextLattice
BOOTSTRAP=1 scripts/first_run.sh
Launch

Guided quickstart

gmake quickstart

`quickstart` now shows resource guidance and lets users choose the best profile for their machine.

Monitor

Health and dashboard checks

gmake monitor-open
# or terminal-only checks
gmake monitor-check
Write/search smoke

Verify memory path end-to-end

ORCH_KEY="$(awk -F= '/^CONTEXTLATTICE_ORCHESTRATOR_API_KEY=/{print substr($0,index($0,"=")+1)}' .env)"

curl -fsS -H "content-type: application/json" -H "x-api-key: ${ORCH_KEY}" \
  -d '{"projectName":"_global","fileName":"smoke/cli_check.md","content":"cli smoke ok"}' \
  http://127.0.0.1:8075/memory/write | jq

curl -fsS -H "content-type: application/json" -H "x-api-key: ${ORCH_KEY}" \
  -d '{"query":"cli smoke ok","limit":3}' \
  http://127.0.0.1:8075/memory/search | jq
Global helpers

Installed wrappers for agents/operators

contextlattice_search -h
contextlattice_write -h
contextlattice_search --query "release readiness" --project contextlattice
contextlattice_write --project contextlattice --file notes/checkpoint.md --content "checkpoint saved"