AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Agent Memory Skill

skill-smixs-agent-memory-skill-agent-memory-skill · by smixs

A Claude skill from smixs/agent-memory-skill.

No reviews yet
0 installs
39 views
0.0% view→install

Install

$ agentstack add skill-smixs-agent-memory-skill-agent-memory-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-smixs-agent-memory-skill-agent-memory-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Agent Memory Skill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Agent Memory Management

Memory system with automatic decay, tiered search, and creative recall. Works with any directory of markdown files.

Quick Start

1. Scan existing files

python3 memory-engine.py scan 

Reports: file count, YAML coverage, size, recommendations.

2. Bootstrap YAML frontmatter

python3 memory-engine.py init  [--dry-run]

Adds relevance, last_accessed, tier to files missing frontmatter. Infers type from directory path. Infers dates from YAML fields, git log, or file mtime.

3. Run decay

python3 memory-engine.py decay  [--dry-run]

Updates all cards: recalculates relevance scores and reassigns tiers. Schedule daily via cron for automatic forgetting.

4. Touch on read

python3 memory-engine.py touch 

Promotes card one tier up (graduated recall). Multiple reads = stronger memory.

5. Creative recall

python3 memory-engine.py creative  

Random sample from cold/archive tiers. Read these cards and look for unexpected connections.

6. Health check

python3 memory-engine.py stats 

Shows tier distribution, context budget, stale card count.

Core Concepts

Three-Layer Architecture

| Layer | What | Size Target | Loaded | |-------|------|-------------|--------| | Hot context | State file (volatile focus, blockers) |


Creates `.memory-config.json`:
```json
{
  "tiers": {"active": 7, "warm": 21, "cold": 60},
  "decay_rate": 0.015,
  "relevance_floor": 0.1,
  "skip_patterns": ["_index.md"],
  "type_inference": {"crm/": "crm", "leads/": "lead"},
  "use_git_dates": true
}

Adjust tier thresholds and decay rate to match your domain's natural rhythm. Fast-moving domains (sales): tighter thresholds (active=3, warm=10, cold=30). Slow domains (research): wider thresholds (active=14, warm=45, cold=120).

Anti-Patterns

| Don't | Do Instead | |-------|------------| | Load all contacts into state file | Keep them in vault cards, search on demand | | Create "knowledge graph" that duplicates vault | Vault IS the graph. Use index files for navigation | | Store same fact in 3 files | One card per entity, reference via links | | Delete old daily files to "save space" | Keep all dailies, let tier decay handle visibility | | Auto-load all daily files at session start | Load only today + yesterday; search older on demand | | Search all 500 cards for every question | Check index first, filter by tier, then search | | Touch every card during bulk operations | Only touch on meaningful read/update | | Build elaborate review systems | Let decay handle it — if you don't use it, it fades |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.