Use the disposable course agent
The final verified graph has three prefixed facts across private, workspace, and organization scopes.
ls -l and wc -l for the files.Prove each fact from storage
armaraos memory graph-inspect <AGENT> --scope agent_private --json
armaraos memory graph-inspect <AGENT> --scope workspace_shared --json
armaraos memory graph-inspect <AGENT> --scope org_shared --json
Ask for grounded recall
armaraos message <AGENT_UUID> "Use your stored Course 5 facts. Give me three short bullets."
Compare the answer with the graph. Fluent text alone is not storage evidence.
Export graph knowledge
armaraos memory graph-export <AGENT> -o brain.json
This is a readable, one-way record, not a restore file.
Analyze and export behavior
armaraos trajectory analyze <AGENT>
armaraos trajectory export <AGENT> -o steps.jsonl
Preview cleanup and stop
armaraos trajectory prune <AGENT> --dry-run --older-than-days 30
The verified count was zero. No capstone deletion is required.
Open the two named files
| File | Contains |
|---|---|
brain.json | Graph nodes and edges in one JSON document. |
steps.jsonl | One trajectory object per line. |
Store the evidence pack privately
Both files can contain learned content, prompts, and local paths. Protect and redact them.
Course 5 completion check
Reconcile every final count.
Show three facts, four trajectory rows, six successful steps, two output files, and a zero-row prune preview.
Keep both exports private and stop at dry-run. The capstone does not need a real deletion.
Troubleshooting the evidence pack
| What you see | Likely cause | What to do |
|---|---|---|
| A fact is missing | Wrong scope or directory ID. | Inspect every intended scope. |
| Answer differs from graph | Recall was not grounded reliably. | Trust inspection. |
| JSONL has several lines | One line is one row. | Parse line by line. |
| Preview is nonzero | Older rows exist. | Stop and review timestamps. |