3.6 KiB
Operator Readiness Runbook
Updated: 2026-05-19
This runbook covers the operational path for phase-memory without requiring
credentials in the default test suite.
Modes
| Mode | Purpose | Credentials | Network |
|---|---|---|---|
| Local fixture | Default deterministic runtime and tests. | No | No |
| Live-shaped | Adapter manifests and behavior that model live services locally. | No | No |
| Credentialed live drill | Operator-provided smoke drill for real endpoints. | Yes, via env only | Optional |
Credentialed drills require:
PHASE_MEMORY_MARKITECT_URLPHASE_MEMORY_MARKITECT_TOKENPHASE_MEMORY_KONTEXTUAL_URLPHASE_MEMORY_KONTEXTUAL_TOKEN
Do not store those values in Git, workplans, progress logs, or release notes.
Service Startup
The deployable stdlib entrypoint is phase-memory-service.
Readiness check without listening:
phase-memory-service --check --store .phase-memory-local
Start the stdlib WSGI service:
phase-memory-service --host 127.0.0.1 --port 8080 --store .phase-memory-local
Routes:
GET /healthGET /readyGET /contractsPOST /operations/{operation}POST /operationswith{"operation": "...", "payload": {...}}
Readiness Checks
Before accepting traffic:
- Run
phase-memory-service --check. - Verify
/readyreportsok: true. - Verify
unsupported_operationsis empty. - Verify adapter diagnostics have no
errorseverity. - Verify the public API snapshot test passes after any operation/export change.
Migration Apply
Plan and apply local-store metadata migrations through the runtime:
from phase_memory import RuntimeConfig, runtime_from_config
config = RuntimeConfig(local_store_path=".phase-memory-local")
runtime = runtime_from_config(config)
plan = runtime.plan_store_migration(source_ref=config.local_store_path)
result = runtime.apply_store_migration(
plan["data"]["migration_plan"],
actor="operator",
source_ref=config.local_store_path,
)
Expected:
- no
errordiagnostics in the plan; result["valid"] is True;- metadata is updated atomically;
audit.querycan find thestore.migration.applyevent.
Rollback:
- stop the service;
- restore the previous local store directory from backup;
- rerun
phase-memory-service --check; - rerun
runtime.repair_diagnostics().
Audit Export And Retention
Plan retention:
plan = runtime.audit_retention_plan(retention_days=30)
Apply retention:
result = runtime.apply_audit_retention(plan["plan"])
Expected:
- eligible operation ids are pruned;
audit.retention.applyis recorded after pruning;- no retention apply happens when the sink reports unsupported behavior.
Export a trace batch:
export = runtime.export_audit_events({"operation": "package.compile"})
Use export batches for operator review, not as a credential or secret store.
Credentialed Drill
Run the credentialed smoke test only from an operator environment:
PHASE_MEMORY_MARKITECT_URL=... \
PHASE_MEMORY_MARKITECT_TOKEN=... \
PHASE_MEMORY_KONTEXTUAL_URL=... \
PHASE_MEMORY_KONTEXTUAL_TOKEN=... \
python3 -m pytest tests/test_credentialed_drills.py
The report redacts tokens and uses a credential fingerprint rather than persisting secrets.
Compatibility Release Discipline
When public exports or service operations change:
- Update
tests/fixtures/public-api-snapshot.json. - Fill in
docs/release-note-template.md. - Call out changed exports, changed service operations, migration needs, and operator action.
- Link the workplan or decision that authorized the change.