aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Search and navigate across memory palaces to find and retrieve stored information.
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/navigateContext preview
What this command does when you run it.
Search and navigate across memory palaces to find and retrieve stored information.
name: navigate description: Search and navigate across memory palaces to find and retrieve stored information.
Search and navigate across memory palaces to find and retrieve information.
/navigate search "<query>" [--type semantic|exact|fuzzy] [--palace <id>]
Searches for concepts across palaces.
/navigate locate "<concept>" [--palace <id>]
Finds the exact location of a specific concept.
/navigate path "<from-concept>" "<to-concept>"
Shows the navigation path between two concepts.
/navigate explore <palace-id> [--depth <levels>]
Lists concepts reachable from a starting point.
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
| Type | Description | Best For | |------|-------------|----------| | `semantic` | Meaning-based matching (default) | General queries | | `exact` | Exact string match | Known concept names | | `fuzzy` | Partial/approximate match | Uncertain queries |
# 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
Returns search results with:
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.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.