Skip to content
Security
Command

/engage.memory

Cross-engagement pattern memory — recall prior techniques, record confirmed findings, housekeeping

From plugin
offensive-claude
33818 skills8 agents18 commands1 hook
Install
> /plugin marketplace add hypnguyen1209/offensive-claude
> /plugin install offensive-claude@offensive-claude-marketplace

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/engage.memory

Context preview

What this command does when you run it.

Cross-engagement pattern memory — recall prior techniques, record confirmed findings, housekeeping

Command definition

engage.memory.md
description: Cross-engagement pattern memory — recall prior techniques, record confirmed findings, housekeeping

/engage.memory

Manage the cross-engagement learning store (`skills/engagement-memory`). Patterns are ranked by impact (CVSS/severity) and recalled as an explicit top-N query.

Usage

`/engage.memory <recall|record|gc|stats> [options]`

Subcommands

recall

Pull the top prior patterns for the current target's class / tech stack and write them to `.engage/recon/prior-intel.md` so weaponization starts from what already worked.

python skills/engagement-memory/scripts/pattern_db.py match \
    --vuln-class <class> --tech-stack <a,b> --target <host> --top 10 --json

record

Persist a `[CONFIRMED]` finding (run after `/engage.report` / `validate_findings.py`). Only confirmed findings are recorded; `[POSSIBLE]`/`[REJECTED]` are not learned.

python skills/engagement-memory/scripts/pattern_db.py record --json '<finding json>'

gc

Compact the pattern DB (dedup-merge, knowledge preserved) and rotate the disposable audit log.

python skills/engagement-memory/scripts/pattern_db.py compact

stats

Show pattern counts by vulnerability class.

Notes

  • Storage: `~/.claude/engagement-memory/patterns.jsonl` (override `$ENGAGEMENT_DB`; use a per-client DB

if ROE requires client isolation).

  • Recall is generic-by-class/stack; review before reusing across clients.
  • Records hold technique + CWE/CVSS + an evidence *reference*, never raw loot.
Read more
Ships withoffensive-claude

A spec-driven offensive security framework for Claude Code — structured engagement workflows based on the Cyber Kill Chain, 31 kill-chain skills (multi-file progressive-disclosure) plus a discipline layer (a SessionStart dispatcher + 6 process/discipline

Get the whole plugin