explore-repo

Installation
SKILL.md

Analyze this repo. Use parallel tool calls aggressively. Argument (subsystem focus if given): $ARGUMENTS

Step 0: Detect mode from $ARGUMENTS

  • If args start with f , flow , or equal f/flow → set FLOW_MODE=true, strip the prefix before processing
  • Otherwise FLOW_MODE=false

Step 0.5: Detect graph backend (priority order)

[PRIORITY 1] .graph-agent local SQLite index Check if .graph-agent/index.db exists in the repo root (run: test -f .graph-agent/index.db && echo EXISTS):

  • If EXISTS → use sqlite3 .graph-agent/index.db for all dep tracing. Schema:
    • files(id, path, language, checksum) — all indexed source files
    • symbols(id, file_id, name, kind, line_start, line_end, parent) — kind: function|method|struct|class|interface
    • edges(id, kind, src_file_id, src_symbol, dst_file_path, dst_symbol, line) — kind: CALLS|IMPORTS
    • meta(key, value) — e.g. repo_root key
Installs
1
First Seen
Jun 21, 2026
explore-repo — rheinmir/skills-kit