Skip to content
SHAMPOO

Tool catalogue

list_memory_issues

Read · Advanced · Intel and knowledge tiers

list_memory_issues

  • Category: intel
  • Access: read
  • Audience: advanced (ordinary users do not normally call this directly)

Purpose

Lists persisted memory audit issues from the latest audit run. Call it after audit_memory to see what still needs attention.

Arguments

Optional: limit, status.

  • limit. Note: Defaults 100, clamped 1 to 500.
  • status. Note: Defaults open; filters by issue status.

Result

Object with count, issues array (issue_id, issue_type, severity, subject_kind, subject_ref, details, status, detected/resolved timestamps), and audit_version.

Boundaries

Reads the persisted findings of the latest audit_memory run inside the selected profile boundary. Pure read.

Lifecycle / side effects

Pure read over persisted audit findings; records nothing.

Errors

Wrong-typed arguments rejected by validation. Unknown statuses simply match nothing.

Example

{
  "status": "open"
}

Result shape:

{
  "audit_version": "memory_audit_v2",
  "count": 1,
  "issues": [
    {
      "issue_id": "<uuid>",
      "issue_type": "claim_missing_evidence",
      "status": "open"
    }
  ]
}

See also

audit_memory, replay_memory, govern_fact, doctor.

On this page