Filesystem-based knowledge management. Triggers on "remember", "save context", "knowledge base", "document decision".
Scanned 9/2/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill memory-project-x-vietnam-landing-page --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Memory Project X Vietnam Landing Page?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-memory-project-x-vietnam-landing-page-claude-skill-registry)More formats (shields.io, HTML) on the badges page.
---
name: memory
description: Filesystem-based knowledge management. Triggers on "remember", "save context", "knowledge base", "document decision".
---
# Memory
A filesystem-based knowledge management system where source code IS the memory. Store decisions, patterns, and context in structured markdown files.
## When to Use
- Recording architectural decisions
- Documenting patterns discovered during development
- Saving context about why something was built a certain way
- Tracking known issues and workarounds
- Storing API documentation or integration notes
## When NOT to Use
- Temporary debugging notes (use comments instead)
- Task tracking (use git issues or project board)
## Core Principles
- Source code is the single source of truth
- Store knowledge close to where it's used
- Use structured markdown for consistency
- Keep files focused (one topic per file)
## Storage Locations
| Type | Location | Example |
|------|----------|---------|
| Technical docs | `docs/technical/` | Architecture decisions, patterns |
| Feature docs | `docs/features/` | Feature specifications, requirements |
| API docs | `docs/api/` | API contracts, integration notes |
## Memory Operations
### Remember (Write)
Store new knowledge:
```markdown
# [Topic Title]
## Context
[Why this exists, what problem it solves]
## Decision
[What was decided and why]
## Details
[Technical details, code examples]
## References
- [Related files or URLs]
---
*Created: [date]*
*Last updated: [date]*
```
### Recall (Read)
Retrieve knowledge:
1. Check `docs/` directory structure
2. Read relevant files
3. Search for keywords across docs
### Update
Modify existing knowledge:
1. Read the existing file
2. Update the relevant section
3. Add to evolution history if significant
## Related Skills
| Skill | When to Chain |
|-------|--------------|
| feature-dev | Store architectural decisions during development |
| planning | Document the plan for future reference |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!