claude-code-plugin-ref…
Explain plugin, skill, command, agent, and hook mechanics used here. Use when authoring or debugging plugins. Do not use for ops; use night-market-operations.
Searches and navigates stored knowledge in memory palaces. Use when looking for previously stored information or cross-referencing concepts across palaces.
$ npx -y skills add athola/claude-night-market --skill knowledge-locator --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/knowledge-locatorContext preview
The summary Claude sees to decide when to auto-load this skill.
Searches and navigates stored knowledge in memory palaces. Use when looking for previously stored information or cross-referencing concepts across palaces.
name: knowledge-locator description: Searches and navigates stored knowledge in memory palaces. Use when looking for previously stored information or cross-referencing concepts across palaces. alwaysApply: false category: navigation tags: - retrieval - search - indexing - recall - spatial-memory - pr-review dependencies: - memory-palace-architect - review-chamber scripts: - palace_manager.py usage_patterns: - search - cross-reference - discovery - review-search complexity: intermediate model_hint: standard estimated_tokens: 500
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.
palace structures - use memory-palace-architect
external resources - use knowledge-intake
palace structures - use memory-palace-architect
external resources - use knowledge-intake
| 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" |
1. **Build Index** - Create spatial index of all palaces 2. **Optimize Search** - Configure search strategies and heuristics 3. **Map Cross-References** - Identify inter-palace connections 4. **Test Retrieval** - Validate search accuracy and speed 5. **Analyze Patterns** - Track and optimize based on usage
Search 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:
within 500ms for a cold query against an indexed palace
sensory, associative, temporal) returns ranked results for a valid query against an existing palace
the queried concept is present in the indexed palace
satisfying the ≥ 80% robustness target
`memory-palace-architect` rather than returning an empty resu
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Explain plugin, skill, command, agent, and hook mechanics used here. Use when authoring or debugging plugins. Do not use for ops; use night-market-operations.
States load-bearing decisions, invariants, and weak points. Use when judging a design change. Do not use for gating; use night-market-change-control.
Rebuild the dev environment: uv, Python tiers, pins, traps. Use when onboarding or toolchain breaks. Do not use for daily commands; use night-market-operations.
Classify, gate, and review changes. Use when landing a PR, releasing, or amending rules. Do not use for failure triage; use night-market-debugging-playbook.
Search and record project memory (Discussions, journal, ADRs). Use before re-investigating anything. Do not use for settled battles; see failure-archaeology.
Bind loop 'done' to unfakeable gates. Use to harden egregore/herald loops or promote completion_integrity. Not for QA gates; use night-market-validation-and-qa.