agentsclimarketplace

Memory manager

Skill Razaib-khan/ForgeWeave/src/forgeweave/templates/claude/.claude/skills/memory-manager

Behavioral execution framework for AI agents — define deterministic, portable skills & agents across OpenCode, Claude Code, Gemini CLI, and Qwen Code.

Install
npx -y skills add Razaib-khan/ForgeWeave --skill memory-manager

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Handles local persistence of research outputs, intermediate reasoning, and reusable knowledge chunks

SKILL.md

2.3 KB, as published. Nobody here has run it

Memory Manager

Purpose

Persist and retrieve structured data across sessions — research outputs, intermediate reasoning steps, reusable knowledge chunks, and cache entries. Prevents redundant work by reusing previously computed results when inputs match.

When to Use

  • Research results should be saved for future reference
  • Intermediate reasoning needs to be persisted for multi-step workflows
  • Previously computed results can be reused instead of recomputed
  • Debug or trace information needs to be logged

When Not to Use

  • The data is ephemeral and only needed for the current response
  • The data contains secrets or credentials (use secure storage instead)
  • The storage would exceed reasonable size limits

Inputs

InputTypeRequiredDescription
operationenumYessave, load, search, clear
keystringDependsUnique key for the data
dataobjectFor saveThe data to persist
namespacestringNo (default: general)Category for the data

Expected Outputs

OutputDescription
Operation resultSuccess with location, or loaded data, or search results

Exact Workflow Steps

  1. Determine the persistence location based on namespace and TUI
  2. For save: serialize data to disk at research/ or .<tui>/memory/
  3. For load: deserialize data from its persisted location
  4. For search: scan persisted data for matching keys or content
  5. For clear: remove caches and temporary data

Required Checks

  • Saved data is retrievable with the correct key
  • Cache entries have expiration or size limits
  • No sensitive data is persisted without warning

Failure Modes

Failure ConditionResponse
Key not found on loadReport "not found"
Storage fullSuggest clearing old entries
Serialization failsReport the unsupported type

References

ReferencePath
Cache & Store skill../cache-store/SKILL.md
research/ directory./research/

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.