skills/traces-and-audit/SKILL.md
Auditing memory traces and debugging.
npx skillsauth add tracemem/tracemem-skills traces-and-auditInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill explains the concept of the Decision Trace as an artifact. Understanding this helps you write better "evidence" into the system.
Design for Readability: When running a decision, imagine a human reading the trace 6 months later.
intent, look at the context you added, look at the policy result.Linking:
If you chain decisions (one decision triggers another workflow), reference the parent decision_id in the child's metadata or context.
Use decision_search to query your agent's previous decisions:
supersedes and superseded_by indicators -- follow the chain to find the current active decisionstatus: "committed" to find only finalized decisionsTool: decision_search
Parameters:
- query: "authentication" (free-text search)
- category: "architecture" (optional)
- tags: ["jwt", "auth"] (optional, all must match)
- status: "committed" (optional)
- limit: 10 (optional, default 20, max 100)
This is particularly valuable for:
decision_search for existing decisions on the same topic before recording a new one.testing
Instructions for writing and efficiently storing data in TraceMem.
tools
Complete workflow patterns for common TraceMem operations.
tools
Scenarios where TraceMem should not be used.
data-ai
Understanding safety constraints and handling failures.