wiki-stalenesslisted
Install: claude install-skill draakaap/lorewerk
# Wiki Staleness — Overdue page report
## On activation
1. Check if `wiki/staleness-report.md` exists and is less than 7 days old
2. If missing or older than 7 days, regenerate:
- Scan all wiki pages for `last_verified` and `staleness_days` in frontmatter
- Compute days_since = (today - last_verified)
- Flag pages where days_since > staleness_days
- Sort by: time_sensitive pages first, then by days overdue (descending)
- Write results to `wiki/staleness-report.md`
3. Read and report the staleness report to the user
## Priority ordering
1. **CRITICAL**: time_sensitive: true AND days_since > staleness_days × 2
2. **HIGH**: time_sensitive: true AND days_since > staleness_days
3. **MEDIUM**: time_sensitive: false AND days_since > staleness_days × 2
4. **LOW**: time_sensitive: false AND days_since > staleness_days
## Output format
```
## Stale Wiki Pages — N overdue
| Priority | Page | Last Verified | Days Overdue | Action |
|----------|------|--------------|--------------|--------|
| CRITICAL | ... | ... | ... | Re-verify prices and versions |
| HIGH | ... | ... | ... | Check for updated statistics |
### Recommended actions
1. Re-verify [[Page A]] — contains pricing data last checked N days ago
2. ...
```
Also update `wiki/gaps.md` > Outdated Sections with any newly stale pages.
## Composes with
- `wiki-health` — wraps this skill (plus `wiki-lint` + `wiki-gaps`). Use
`wiki-health` for the combined dashboard; run this standalone only for
staleness alo