npx claudepluginhub obsfx/trekker-claude-code --plugin trekkerThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Implements structured self-debugging workflow for AI agent failures: capture errors, diagnose patterns like loops or context overflow, apply contained recoveries, and generate introspection reports.
name: search description: PRIMARY tool for gathering context. Search tasks before any action.
Search is your PRIMARY tool for gathering context.
Before starting ANY work:
trekker search "<single keyword>"
This finds related past work using FTS5 full-text search.
Trekker uses FTS5 full-text search, NOT semantic/AI search. This means:
"fix authentication bug" requires ALL three words present, returning FEWER results| BAD (too many words) | GOOD (single keyword) |
|---|---|
trekker search "fix login authentication bug" | trekker search "authentication" |
trekker search "user cannot access account" | trekker search "account" |
trekker search "performance optimization slow" | trekker search "performance" |
trekker search "deployment pipeline issues" | trekker search "deployment" |
# Search with a single keyword
trekker search "authentication"
# Try multiple keywords separately for broader coverage
trekker search "login"
trekker search "password"
# Filter by type
trekker search "deployment" --type task
# Filter by status
trekker search "memory" --status todo,in_progress
# Rebuild index if needed
trekker search "caching" --rebuild-index
1. SEARCH: trekker search "<single keyword>"
2. BROADEN: Try 2-3 related keywords if first search has no results
3. REVIEW: Check if similar work exists
4. DECIDE: Update existing OR create new
5. SYNC: Mirror to TodoWrite after Trekker
Remember: Trekker is the source of truth.