plugins/memory-palace/skills/knowledge-locator/SKILL.md
Searches and navigates stored knowledge in memory palaces. Use when looking for previously stored information or cross-referencing concepts across palaces.
npx skillsauth add athola/claude-night-market knowledge-locatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 palacesresearch
Generate diverse solution candidates with category-spanning ideation methods and rotation. Use when stuck on a design or fighting repetitive LLM output.
tools
--- name: validate-pr description: Use when you need a diff-derived test plan for a PR: reads the diff, groups changes by area, runs targeted verifications, and proves revert-tests are genuine guards, not dead assertions. alwaysApply: false category: validation tags: - pr - validation - test-plan - diff - revert-test - evidence tools: [] usage_patterns: - diff-derived-test-plan - revert-test-quality-check - evidence-capture complexity: intermediate model_hint: standard estimated_tokens: 650
development
Contract for the project decision journal (tradeoffs and lessons-learned logs). Use when recording a decision, tradeoff, or lesson, or building a consumer hook.
development
Ramps implementation ambition a notch only after the prior increment is understood. Use when building a feature you must understand, not just ship.