lisa-wiki-status
Render the Lisa wiki source freshness report without changing the repository.
Scope
This skill answers a narrower question than lisa-wiki-doctor or lisa-wiki-lint: whether each enabled, non-external-write ingestion connector has current source evidence and what the operator should do next.
Read these repository files as the source of truth:
wiki/lisa-wiki.config.json for enabled connectors and wiki root.
wiki/log.md for latest ingest, skip, and blocker notes.
wiki/sources/** for reader-safe source notes.
wiki/state/** for connector state cursors and source-note references.
Workflow
Resolve the wiki root from wiki/lisa-wiki.config.json, unless --wiki or --config is passed.
Run the bundled deterministic renderer:
node plugins/lisa-wiki/scripts/wiki-status.mjs $ARGUMENTS
If running from the source plugin tree before distribution, use plugins/src/wiki/scripts/wiki-status.mjs.
Report the rendered connector table. Preserve connector verdicts exactly:
fresh, stale, never_ingested, skipped, or blocked.
Include the evidence paths, last observed date, skip/blocker reason when present, and exact next action for each non-fresh connector.
Mention lisa-wiki-lint only as a separate integrity follow-up. Do not conflate freshness with broken links, stale claims, or structure linting.
Rules
- Read-only. Do not ingest, edit wiki pages, edit config, advance state, branch, commit, push, open PRs, or run repair flows.
- Do not ask for confirmation before rendering. This status command has no write side effects.
- Do not use global Codex memory or non-project memory as fresh wiki evidence. Only project-scoped source notes, state, and log entries count.
- If the wiki/config is missing, surface the renderer output or error directly and stop.
- If a connector is skipped because project-scoped memory is unavailable, preserve that reason and treat accepting the expected skip as a valid next action.
Related
lisa-wiki-ingest refreshes sources, lisa-wiki-lint checks wiki integrity, and lisa-wiki-doctor verifies setup/readiness.
1---2name: lisa-wiki-status3description: Report Lisa wiki source…4---56# lisa-wiki-status78Render the Lisa wiki source freshness report without changing the repository.910## Scope1112This skill answers a narrower question than `lisa-wiki-doctor` or `lisa-wiki-lint`: whether each enabled, non-external-write ingestion connector has current source evidence and what the operator should do next.1314Read these repository files as the source of truth:1516- `wiki/lisa-wiki.config.json` for enabled connectors and wiki root.17- `wiki/log.md` for latest ingest, skip, and blocker notes.18- `wiki/sources/**` for reader-safe source notes.19- `wiki/state/**` for connector state cursors and source-note references.2021## Workflow22231. Resolve the wiki root from `wiki/lisa-wiki.config.json`, unless `--wiki` or `--config` is passed.242. Run the bundled deterministic renderer:2526 ```bash27 node plugins/lisa-wiki/scripts/wiki-status.mjs $ARGUMENTS28 ```2930 If running from the source plugin tree before distribution, use `plugins/src/wiki/scripts/wiki-status.mjs`.313. Report the rendered connector table. Preserve connector verdicts exactly:32 `fresh`, `stale`, `never_ingested`, `skipped`, or `blocked`.334. Include the evidence paths, last observed date, skip/blocker reason when present, and exact next action for each non-fresh connector.345. Mention `lisa-wiki-lint` only as a separate integrity follow-up. Do not conflate freshness with broken links, stale claims, or structure linting.3536## Rules3738- **Read-only.** Do not ingest, edit wiki pages, edit config, advance state, branch, commit, push, open PRs, or run repair flows.39- Do **not** ask for confirmation before rendering. This status command has no write side effects.40- Do **not** use global Codex memory or non-project memory as fresh wiki evidence. Only project-scoped source notes, state, and log entries count.41- If the wiki/config is missing, surface the renderer output or error directly and stop.42- If a connector is skipped because project-scoped memory is unavailable, preserve that reason and treat accepting the expected skip as a valid next action.4344## Related4546`lisa-wiki-ingest` refreshes sources, `lisa-wiki-lint` checks wiki integrity, and `lisa-wiki-doctor` verifies setup/readiness.