Files
settled-reach/whatsinagame/templates/.claude/skills/docs-search/SKILL.md
T
jpmschweitzerandClaude Opus 4.6 7158ae9cf5 feat(meta): add whatsinagame multi-agent team starter kit
Claude-native starter kit that bootstraps multi-agent team
infrastructure for any project. Clone once, install as a global
skill, run /kit-install in any project directory.

Includes:
- 3-tier profile system (minimal/standard/full: 3-12 agents)
- 16 agent archetype templates with personality spectrum
- 18 skill templates using domain-action naming convention
- Stakeholder persona panel for workshops and PR reviews
- SQLite ticketing DB with CLI tools (config-based DB paths)
- Decision tracking, sprint lifecycle, workshop orchestration
- Multi-git-host support (GitHub, Gitea, GitLab)
- /kit-update skill for syncing with source repo evolution
- Naming theme support for agent identity/flavor
- Smoke tests for all three profile tiers

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 02:22:30 +01:00

1.9 KiB

name, description, user-invocable, allowed-tools
name description user-invocable allowed-tools
docs-search Search project documents using semantic search (Qdrant + ollama) or grep fallback. Use when the user asks "did we discuss X?", "find references to Y", "search docs", or invokes /docs-search. true Bash, Read, Grep, Glob

Search Docs Skill

Semantic search across project documents. Basic commands (qdrant-search, qdrant-index, qdrant-health, qdrant-count) and endpoints are documented in CLAUDE.md. This skill covers advanced operations and workflows.

Commands

db/connectors/qdrant-search "search query"

Index a file

db/connectors/qdrant-index <file-path>

Index a single chunk

For precise indexing of specific content:

python3 db/connectors/qdrant_connector.py index "unique-id" "Text content to index" --metadata source=manual heading="Custom heading"

Create collection

Initialize the Qdrant collection (run once during setup):

python3 db/connectors/qdrant_connector.py create-collection

Health check

db/connectors/qdrant-health

Count documents

db/connectors/qdrant-count

Bulk Indexing

Index all project documents at once:

for f in decisions/*.md docs/discussions/*.md docs/briefings/*.md docs/*.md; do
  db/connectors/qdrant-index "$f"
done

Adjust the glob patterns to match your project's document locations.

Fallback

If Qdrant or ollama is unreachable, fall back to grep-based search:

grep -r -i "search term" decisions/ docs/ --include="*.md"

Workflow

  1. Documenter/Librarian is the primary user of this skill
  2. After each discussion round, index the archived round file
  3. After briefing updates, re-index affected briefings
  4. After decision changes, re-index the relevant decisions/*.md domain files
  5. Use search to answer "did we discuss this?" questions with citations