Check GitNexus index status for current repo — freshness, symbol count, staleness. Triggers: "check index" | "gitnexus status" | "is graph stale" | "index status".
Scanned 9/23/2026
Install to Claude Code
npx -y skills add Roxabi/roxabi-plugins --skill status --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Status?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/roxabi-status)More formats (shields.io, HTML) on the badges page.
---
name: gitnexus-status
argument-hint: ''
description: Check GitNexus index status for current repo — freshness, symbol count, staleness. Triggers: "check index" | "gitnexus status" | "is graph stale" | "index status".
version: 0.1.0
allowed-tools: Bash
---
# GitNexus Status
Check if the current repository is indexed and whether the index is stale (behind HEAD).
## Entry
```
/gitnexus-status
```
## Step 1 — Run Status
```bash
gitnexus status
```
## Step 2 — Parse JSON Output
```json
{
"indexed": true,
"repo": "my-project",
"path": "/home/user/projects/my-project",
"last_commit": "abc123",
"head_commit": "def456",
"stale": true,
"stats": {
"symbols": 1234,
"relationships": 5678,
"processes": 42,
"embeddings": 0
}
}
```
## Step 3 — Present Results
| | |
|--|--|
| **Repo** | my-project |
| **Indexed** | ✅ Yes |
| **Stale** | ⚠️ Yes (3 commits behind) |
| **Symbols** | 1,234 |
| **Relationships** | 5,678 |
| **Processes** | 42 |
| **Embeddings** | No |
**Stale index detected** → recommend: `/gitnexus-analyze` to refresh.
**Not indexed** → recommend: `/gitnexus-analyze` to create index.
## Edge Cases
- `indexed: false` → repo not indexed, suggest `/gitnexus-analyze`
- `stale: true` → graph is behind HEAD, warn user
- Outside git repo → error message, suggest cd to repo
$ARGUMENTS
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!