Install
$ agentstack add skill-lawzava-megapowers-project-memory ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Project Memory
Project memory is durable knowledge that outlives any single run. It lives in the repo as plain markdown, so it travels with the project and any runtime can read it.
Store layout: .megapowers/memory/ holds INDEX.md, one line per memory, plus one fact per file at .md with frontmatter fields name, title, hook, and type (one of decision, constraint, preference, gotcha, reference) and the fact as the body. Link related memories with [[slug]].
What earns a memory
Save what is durable and not otherwise recoverable: a non-obvious decision and its rationale, a constraint invisible in the code, a stated user preference, a hard-won gotcha, a pointer to an external resource. Don't save or duplicate what code, git history, the README, canonical CONTEXT.md (or the repository-named equivalent), or accepted ADRs already record, or anything true only for the current task; if asked to remember something derivable, save the non-obvious part instead.
Hygiene: one fact per file; update the existing file rather than duplicate; delete a memory that turns out to be wrong; convert relative dates to absolute.
Helpers
scripts/mem-add --title T --hook H [--type decision|constraint|preference|gotcha|reference] [--update]
# body read from stdin; writes .megapowers/memory/.md and regenerates
# the index. refuses to overwrite an existing slug unless --update.
scripts/mem-index # rebuild INDEX.md (a file missing its closing '---'
# is skipped with a warning)
scripts/mem-recall # print memories matching the query
Recall
Read INDEX.md at the start of a session and pull a memory's full file only when its hook matches the work at hand; mem-recall does this executably. A recalled memory was true when written: if it names a file, flag, or command, verify that still exists before acting on it. On every recall, check for contradictions with current canonical sources and observed behavior; surface conflicts for resolution and never silently resolve them. Independently verify drift-prone actionable details before relying on them.
Scope
This is project memory, not a Claude-native store. Claude Code's auto memory and subagent memory overlap it, but this store's differentiator is its shape: repo-committed markdown every harness can read, not Claude-only and not machine-local. Keep one home per fact and cross-reference rather than copy a fact into stores that then drift.
The default location .megapowers/memory/ is gitignored (personal notes). To share memory with a team, point MEGAPOWERS_MEMORY_DIR at a committed location (e.g. docs/memory/) or add a gitignore negation for the shared subpath; never git add -f into an ignored path.
Origin: Derived from Superpowers (MIT, (c) 2025 Jesse Vincent), https://github.com/obra/superpowers.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: lawzava
- Source: lawzava/megapowers
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.