Persistent memory manager
Skill marktantongco/opencodelinux/skills/persistent-memory-manager
Merged opencode config + agents + accomplishments showcase — 217 skills, 17 agent profiles, 6 MCP servers, 78-server registry
npx -y skills add marktantongco/opencodelinux --skill persistent-memory-managerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 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
Initializes and maintains the structured memory system for agent context continuity.
SKILL.md
1.7 KB, 371 tokens by cl100k_base, as published. Nobody here has run it
Persistent Memory Manager
Context
Use this skill to ensure the AI agent retains context across crashes, pauses, and long-running sessions. The memory system relies on JARVIS_MEMORY.md to track active state, and .antigravityignore to keep token counts optimized.
Instructions
- Initialize: Check if
JARVIS_MEMORY.mdand.antigravityignoreexist in the workspace root. If missing, create them using standard scaffolding. - Restore: At the beginning of a session, read
JARVIS_MEMORY.md. Acknowledge the last task and crash marker. - Log Progress: After completing a major task, update the
[ ]checkboxes to[x]inJARVIS_MEMORY.md. - Update Timestamp: Update the
Last Timestampfield to the current time. - Extract Permanent Knowledge: If a task reveals a new structural rule or codebase pattern, append it to
NOTES_TECHNIQUES.mdand remove it fromJARVIS_MEMORY.mdto avoid bloat.
Constraints
- NEVER store raw logs or large code snippets in
JARVIS_MEMORY.md. - NEVER index directories listed in
.antigravityignoreunless explicitly overridden by the user. - NEVER let
JARVIS_MEMORY.mdexceed 100 lines. Refactor old tasks out if it grows too large.
Examples
Ideal JARVIS_MEMORY.md Update
# Active Session
- Last Timestamp: 2026-05-05T21:30:00+08:00
- Crash Marker: Clean exit
# Current Focus
- [x] Implement login component
- [ ] Connect login to auth API