/navigate
Search and navigate across memory palaces to find and retrieve information.
$ npx -y skills add athola/claude-night-market --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/navigate
Context preview
What this command does when you run it.
Search and navigate across memory palaces to find and retrieve information.
Command definition
navigate.mdNavigate Command
Usage
Search and navigate across memory palaces to find and retrieve information.
Search
/navigate search "<query>" [--type semantic|exact|fuzzy] [--palace <id>]
Searches for concepts across palaces.
Locate
/navigate locate "<concept>" [--palace <id>]
Finds the exact location of a specific concept.
Path
/navigate path "<from-concept>" "<to-concept>"
Shows the navigation path between two concepts.
Explore
/navigate explore <palace-id> [--depth <levels>]
Lists concepts reachable from a starting point.
What It Does
1. **Multi-Modal Search**: Finds concepts using semantic, exact, or fuzzy matching 2. **Cross-Palace Search**: Searches across all palaces simultaneously 3. **Path Finding**: Calculates routes between concepts 4. **Discovery**: Suggests related concepts for exploration 5. **Access Tracking**: Records search patterns for optimization
Search Types
| Type | Description | Best For | |------|-------------|----------| | `semantic` | Meaning-based matching (default) | General queries | | `exact` | Exact string match | Known concept names | | `fuzzy` | Partial/approximate match | Uncertain queries |
Examples
# Search for authentication concepts
/navigate search "authentication" --type semantic
# Find OAuth specifically
/navigate locate "OAuth 2.0"
# Path from one concept to another
/navigate path "OAuth" "JWT"
# Explore a palace
/navigate explore abc123 --depth 2
Output
Returns search results with:
- **Match location**: Palace, district, building, room
- **Relevance score**: How closely it matches the query
- **Connections**: Related concepts nearby
- **Last accessed**: When the concept was last retrieved
Integration
Uses the palace_manager.py search functionality:
python scripts/palace_manager.py search "<query>" --type <type>
Read more
Navigate Command
Usage
Search and navigate across memory palaces to find and retrieve information.
Search
/navigate search "<query>" [--type semantic|exact|fuzzy] [--palace <id>]
Searches for concepts across palaces.
Locate
/navigate locate "<concept>" [--palace <id>]
Finds the exact location of a specific concept.
Path
/navigate path "<from-concept>" "<to-concept>"
Shows the navigation path between two concepts.
Explore
/navigate explore <palace-id> [--depth <levels>]
Lists concepts reachable from a starting point.
What It Does
1. **Multi-Modal Search**: Finds concepts using semantic, exact, or fuzzy matching 2. **Cross-Palace Search**: Searches across all palaces simultaneously 3. **Path Finding**: Calculates routes between concepts 4. **Discovery**: Suggests related concepts for exploration 5. **Access Tracking**: Records search patterns for optimization
Search Types
| Type | Description | Best For | |------|-------------|----------| | `semantic` | Meaning-based matching (default) | General queries | | `exact` | Exact string match | Known concept names | | `fuzzy` | Partial/approximate match | Uncertain queries |
Examples
# Search for authentication concepts /navigate search "authentication" --type semantic # Find OAuth specifically /navigate locate "OAuth 2.0" # Path from one concept to another /navigate path "OAuth" "JWT" # Explore a palace /navigate explore abc123 --depth 2
Output
Returns search results with:
- **Match location**: Palace, district, building, room
- **Relevance score**: How closely it matches the query
- **Connections**: Related concepts nearby
- **Last accessed**: When the concept was last retrieved
Integration
Uses the palace_manager.py search functionality:
python scripts/palace_manager.py search "<query>" --type <type>
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.
Other commands on claude-night-market.
- /aggregate-logs
Generate LEARNINGS.md from skill execution logs.
Open command - /analyze-skill
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Open command - /bulletproof-skill
Harden skills against rationalization and bypass behaviors
Open command - /context-report
Generate context optimization report for skill directories
Open command - /create-command
Create slash commands with brainstorming and best practices
Open command - /create-hook
Create hooks with brainstorming and security-first design
Open command

