Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/claude-memory/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "claude-memory",
"version": "0.3.1",
"version": "0.3.2",
"description": "Keeps a repo's Claude Code memory layer healthy and under your control, against criteria derived from official Claude Code documentation. The audit skill checks the instruction/memory layer (CLAUDE.md, CLAUDE.local.md, .claude/rules/, auto-memory) with a deterministic script-backed spine plus judgment-tier checks. The stateless skill inspects, disables, and (confirm-gated) purges Claude-written auto memory across all settings scopes.",
"author": {
"name": "Melodic Software",
Expand Down
11 changes: 11 additions & 0 deletions plugins/claude-memory/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to the `claude-memory` plugin are documented here. Format follows
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); this plugin uses semantic versioning.

## [0.3.2]

### Added

- **`audit` skill: reciprocal scope-boundary note.** Model-era instruction-content findings
(prior-model workarounds, over-prescriptive scaffolding, bare prohibitions, reasoning-echo
directives, stale example scaffolding) now route to the `claude-config` plugin's
`audit-instructions` skill when that plugin is installed; absent it, such observations stay
in the audit report criteria-free rather than being judged against this checklist or
silently dropped. Completes the partition that skill declared toward this one.

## [0.3.1]

### Changed
Expand Down
12 changes: 12 additions & 0 deletions plugins/claude-memory/skills/audit/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ the `audit` and `automation-gaps` skills in the `claude-config` plugin).
| Auto-memory | `~/.claude/projects/<project>/memory/` | First 200 lines of MEMORY.md | Yes |
| Settings, hooks, MCP, agents, skills | Various | Various | No — use `claude-config`'s `audit` / `automation-gaps` |

## Scope boundary (route out)

This audit owns instruction-layer **health**: structure, size, placement, and index integrity of
the memory files against the codified checklist. Whether an instruction's *content* is still
needed by the current model — prior-model workarounds, over-prescriptive scaffolding, bare
prohibitions without rationale, reasoning-echo directives, stale example scaffolding — is the
model-era fit question, owned by the `claude-config` plugin's `audit-instructions` skill. When
that plugin is installed, route such findings to `/claude-config:audit-instructions` rather than
judging them against this checklist; when it is not installed, keep each as a criteria-free
observation in this audit's report (never a checklist finding, never silently dropped) so the
operator can weigh it against current official prompting guidance.

## Argument parsing

| Argument | Action |
Expand Down
Loading