skilly. Buy ad slot
All skills
Databases / AGENT SKILL

index

Vinnish-A/AutoR
0 installs 2 GitHub stars
0

Rebuild the SQLite FTS5 evidence index to refresh search or repair missing results.
Rebuild the node-level SQLite FTS5 evidence index. Use when the user asks to rebuild search, refresh search after metadata/full-text changes, or repair missing search results.

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

# Rebuild Index

AutoR no longer builds FAISS or embedding storage. `autor index` builds:

- paper-level metadata/registry tables
- citation graph tables
- `paper_nodes`
- `paper_node_fts` for auditable evidence retrieval

## Execution Logic

**Incrementally update the evidence index:**
```bash
autor index
```

**Fully rebuild the evidence index:**
```bash
autor index --rebuild
```

Full rebuilds use a temporary SQLite database by default, then replace
`data/index.db` after a successful build. This avoids long WAL writes on
Windows-mounted WSL paths. Use `--direct` only for diagnosis.

**Check index health without rebuilding:**
```bash
autor index --status
```

**Queue a rebuild in the background:**
```bash
autor index --rebuild --background
```

**Pipeline preset:**
```bash
autor pipeline reindex
```

## Examples

User says: "Rebuild the index."
→ Run `autor index --rebuild`

User says: "Search results look stale after editing paper.md."
→ Run `autor index --rebuild`

User says: "Update the vectors."
→ Explain vector storage has been removed, then run `autor index --rebuild` if they meant search refresh.