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 the code knowledge graph by function, class, or type using FTS5 full-text search. Use when locating code entities by name or qualified path.
$ npx -y skills add athola/claude-night-market --skill graph-search --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/graph-searchContext preview
The summary Claude sees to decide when to auto-load this skill.
Searches the code knowledge graph by function, class, or type using FTS5 full-text search. Use when locating code entities by name or qualified path.
name: graph-search description: Searches the code knowledge graph by function, class, or type using FTS5 full-text search. Use when locating code entities by name or qualified path. model_hint: standard
Search `.gauntlet/graph.db` for code entities by name.
1. **Accept query**: Get the search term from the user.
2. **Run the query script**:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/graph_query.py \
--action search --query "<term>" --limit 20Optional filters:
3. **Display results**: Show qualified name, file path, line numbers, and relevance score for each match.
4. **Offer to read**: Ask if the user wants to read the top result's source file.
The search engine detects query patterns:
and Type results
results
qualified name matches
The graph must be built first. If `.gauntlet/graph.db` does not exist, suggest running the `graph-build` skill.
the missing-prerequisite error and suggests `gauntlet:graph-build` rather than failing silently
relevance score for each match (up to `--limit` results)
Class/Type results, snake_case boosts Function results, dotted path boosts qualified name matches
results are shown
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.