Agents should use Alice as a durable, private, provenance-aware, reviewable memory layer.
Universal pattern:
- Identify yourself.
- Request scoped context, not raw memory.
- Use Alice context packs before planning or acting.
- Submit important outputs back to Alice.
- Commit explicit "remember/save/add this to memory" instructions only through Alice's official memory commit path.
- Propose memory for inferred, external, generated, ambiguous, or lower-confidence facts.
- Create open loops when work remains.
- Respect domain and sensitivity policy.
- Use
/vnextfor review, audit, undo, correction, forget, and troubleshooting.
{
"agent_id": "openclaw",
"agent_type": "coding_agent",
"agent_run_id": "run-2026-05-12-001",
"task_id": "alice-public-alpha",
"project_scope": ["Alice"],
"permission_profile": "project_scoped_agent"
}Permission profiles:
read_only_agent: context lookup onlyproject_scoped_agent: project context, project outputs, explicit project-domain memory commits, and review-only proposalstrusted_local_agent: broader local assistant context, still policy-filteredmemory_proposal_agent: proposal-focused agentadmin_agent: scheduler and administrative actions
alicebot context-pack "Alice public alpha sprint context" --domain project --project Alice
alicebot vnext agents ingest-output \
--agent-id openclaw \
--agent-type coding_agent \
--agent-run-id run-2026-05-12-001 \
--project-scope Alice \
--permission-profile project_scoped_agent \
--title "OpenClaw sprint summary" \
--output-type sprint_summary \
--domain project \
--sensitivity private \
--propose-memory \
"Decision: Alice public alpha agents use scoped context packs and review-only memory proposals."
alicebot vnext memories commit \
--agent-id openclaw \
--agent-type coding_agent \
--agent-run-id run-2026-05-12-001 \
--project-scope Alice \
--permission-profile project_scoped_agent \
--title "Release gate decision" \
--text "Alice public alpha release gates require doctor, smokes, evals, and git diff checks before merge." \
--domain project \
--sensitivity private \
--confidence 0.94alicebot vnext smoke agent-integration-pack
alicebot vnext smoke agentic-memory-commitThe smokes verify scoped context, output ingestion, explicit trusted memory commits, inline confirmation, review gating, undo/correction/forget, no direct database mutation, event logging, restricted-domain policy blocking, and /vnext agent activity visibility.