searchlisted
Install: claude install-skill iansmith/slopstop
# /slopstop:search
Semantic search over the project's ticket corpus and code graph, using the local RAG service.
Five modes: semantic ticket search (default), `--callers`, `--implementors`, `--blast-radius`, and `--ticket-code`. The RAG service must be running locally — if it is not, the skill prints a clear error and stops.
## Arguments
`$ARGUMENTS` — the full argument string passed to this command.
If `$ARGUMENTS` is empty, or if `$ARGUMENTS` starts with `--` and does not match any known flag below (e.g. bare `--callers`, `--callers=foo`, unrecognised flag): print usage and stop. For the unrecognised-flag case, prepend `"Unknown flag or missing argument."` before the usage block.
```
Usage:
/slopstop:search "<query>" semantic ticket search
/slopstop:search --callers <moniker> who calls this symbol?
/slopstop:search --implementors <moniker> what implements this interface?
/slopstop:search --blast-radius <moniker> what breaks if I change this?
/slopstop:search --ticket-code <ticket-id> what code did this ticket touch?
```
Parse mode from `$ARGUMENTS`:
- Starts with `--callers` followed by whitespace → `$MODE = "callers"`, `$MONIKER` = remainder (strip leading/trailing whitespace and quotes).
- Starts with `--implementors` followed by whitespace → `$MODE = "implementors"`, `$MONIKER` = remainder.
- Starts with `--blast-radius` followed by whitespace → `$MODE = "blast-radius"`, `$MONIKER` = remainder.
- Star