Help us improve
Share bugs, ideas, or general feedback.
From memory-palace
Searches and navigates knowledge in memory palaces using spatial, semantic, sensory, associative, and temporal queries. Use for cross-referencing, context retrieval, and PR review.
npx claudepluginhub athola/claude-night-market --plugin memory-palaceHow this skill is triggered — by the user, by Claude, or both
Slash command
/memory-palace:knowledge-locatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [What It Is](#what-it-is)
Designs virtual memory palaces with spatial layouts for domain knowledge organization and recall. Use Python palace_manager.py for complex topics, skill acquisition, and documentation structuring.
Retrieves project memory for user queries via three-step fallback: ROOT.md topics triage, frontmatter manifest LLM selection from weekly/monthly notes, qmd search. Use when past knowledge may apply.
Checks memory before code exploration when answering questions about code, architecture, or patterns. Saves time by recalling past knowledge.
Share bugs, ideas, or general feedback.
A spatial indexing and retrieval system for finding information within and across memory palaces. Enables multi-modal search using spatial, semantic, sensory, and associative queries.
The Knowledge Locator provides efficient information retrieval across your memory palace network by:
python scripts/palace_manager.py search "authentication" --type semantic
Verification: Run python --version to verify Python environment.
python scripts/palace_manager.py list
Verification: Run python --version to verify Python environment.
| Mode | Description | Best For |
|---|---|---|
| Spatial | Query by location path | "Find concepts in the Workshop" |
| Semantic | Search by meaning/keywords | "Find authentication-related items" |
| Sensory | Locate by sensory attributes | "Blue-colored concepts" |
| Associative | Follow connection chains | "Related to OAuth" |
| Temporal | Find by creation/access date | "Recently accessed" |
modules/index-structure.mdmodules/search-strategies.mdmodules/index-structure.mdSearch the review chamber within project palaces for past decisions and patterns.
# Search review chamber by query
python scripts/palace_manager.py search "authentication" \
--palace <project_id> \
--room review-chamber
# List entries in specific room
python scripts/palace_manager.py list-reviews \
--palace <project_id> \
--room decisions
# Find by tags
python scripts/palace_manager.py search-reviews \
--tags security,api \
--since 2025-01-01
Verification: Run python --version to verify Python environment.
| Room | Content | Example Query |
|---|---|---|
decisions/ | Architectural choices | "JWT vs sessions" |
patterns/ | Recurring solutions | "error handling pattern" |
standards/ | Quality conventions | "API error format" |
lessons/ | Post-mortems | "outage learnings" |
When starting work in a code area, surface relevant review knowledge:
# When in auth/ directory
python scripts/palace_manager.py context-search auth/
# Returns:
# - Past decisions about authentication
# - Known patterns in this area
# - Relevant standards to follow
Verification: Run python --version to verify Python environment.
Works with:
memory-palace-architect - Indexes palaces created by architectsession-palace-builder - Searches session-specific palacesdigital-garden-cultivator - Finds garden content and linksreview-chamber - Searches PR review knowledge in project palacesCommand not found Ensure all dependencies are installed and in PATH
Permission errors Check file permissions and run with appropriate privileges
Unexpected behavior
Enable verbose logging with --verbose flag