From llm-wiki
Checks llm-wiki version, detects newer releases, and suggests or runs the correct update command for Claude Code, Codex, or Pi. Also inspects local wiki configuration and automation surfaces.
How this skill is triggered — by the user, by Claude, or both
Slash command
/llm-wiki:statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check whether `llm-wiki` is current and report the exact update command for the current agent environment.
Check whether llm-wiki is current and report the exact update command for the current agent environment.
Also inspect project-local wiki configuration when available:
.llm-wiki/config.jsonAGENTS.mdCLAUDE.md.pi/settings.json.claude/settings.json.llm-wiki/refresh-wiki.sh.llm-wiki/post-commit-refresh.shsort -V when available; otherwise parse major/minor/patch numerically. Do not compare version strings lexicographically..llm-wiki/config.json exists, report headless_agent, context_agents, and main_wiki_path.<!-- BEGIN LLM WIKI --> and <!-- END LLM WIKI --> marker pair.AGENTS.md and CLAUDE.md context as managed present, unmanaged wiki section only, missing, or unknown.AGENTS.md; do not require .pi/SYSTEM.md or .pi/APPEND_SYSTEM.md..claude/settings.json exists.codex, claude, pi, mixed, missing, mismatch, or unknown.codex means codex exec is present and claude -p, pi -p, and pi --print are absent.claude means claude -p is present and codex exec, pi -p, and pi --print are absent.pi means pi -p or pi --print is present and codex exec and claude -p are absent.mixed means more than one owner command is present.mismatch means exactly one owner command is present but it is not the configured headless_agent.llm-wiki hook or scheduler entries when possible; report duplicates as mixed or mismatch rather than clean.Useful commands:
claude plugin marketplace update aikuznetsov-marketplace
claude plugin update llm-wiki
claude plugin list --json --available
Status workflow:
claude plugin list --json --available when available.llm-wiki by name, id, or plugin fields.claude plugin marketplace update aikuznetsov-marketplace
claude plugin update llm-wiki
Tell the user that Claude Code must be restarted for the updated plugin to load.
Codex currently exposes marketplace refresh, not a first-class plugin list or plugin update <plugin> command.
Useful command:
codex plugin marketplace upgrade aikuznetsov-marketplace
Local version paths:
find ~/.codex/plugins/cache/aikuznetsov-marketplace/llm-wiki -mindepth 1 -maxdepth 1 -type d -exec basename {} \; | sort -V | tail -n1
jq -r '.version' ~/.codex/.tmp/marketplaces/aikuznetsov-marketplace/plugins/llm-wiki/.codex-plugin/plugin.json
Remote marketplace check:
curl -fsSL https://raw.githubusercontent.com/ivankuznetsov/agent-plugins/main/.claude-plugin/marketplace.json \
| jq -r '.plugins[] | select(.name == "llm-wiki") | .version'
Status workflow:
~/.codex/plugins/cache/aikuznetsov-marketplace/llm-wiki/.~/.codex/.tmp/marketplaces/aikuznetsov-marketplace/plugins/llm-wiki/.codex-plugin/plugin.json when it exists.curl when the user wants to know whether a new release is out.codex plugin marketplace upgrade aikuznetsov-marketplace
Tell the user that Codex must be restarted for the updated plugin to load.
Pi uses Pi packages instead of the Claude/Codex plugin marketplace. The Pi package exposes prefixed skill names to avoid global /skill:name collisions:
/skill:wiki-bootstrap
/skill:wiki-research
/skill:wiki-plan
/skill:wiki-status
Useful commands:
pi --version
pi list
pi update git:github.com/ivankuznetsov/llm-wiki
pi update --extensions
Remote package version check:
curl -fsSL https://raw.githubusercontent.com/ivankuznetsov/llm-wiki/main/package.json \
| jq -r '.version'
Status workflow:
pi --version when available.pi list when available and look for an installed llm-wiki package or source.package.json when running from the llm-wiki checkout.package.json when the user wants to know whether a new release is out.pi update git:github.com/ivankuznetsov/llm-wiki
If Pi reports the package under a different installed source, use that exact source with pi update <source>. Tell the user to restart Pi after updating package skills.
Return:
**llm-wiki Plugin Status**
- Current cached/installed version: ...
- Latest marketplace/package version: ...
- Status: current | update available | unknown
- Update command: ...
- Restart required: yes | no
- Headless agent: claude | codex | pi | unknown
- Context agents: ...
- AGENTS.md wiki context: managed present | unmanaged wiki section only | missing | unknown
- CLAUDE.md wiki context: managed present | unmanaged wiki section only | missing | unknown
- Pi wiki context: AGENTS.md managed present | missing | unknown
- Claude SessionStart context: present | missing | not checked
- Scheduled refresh owner: claude | codex | pi | mixed | missing | mismatch | unknown
- Post-commit refresh owner: claude | codex | pi | mixed | missing | mismatch | unknown
Mention whether the result came from local cache only or from a remote marketplace/package check.
npx claudepluginhub ivankuznetsov/llm-wikiGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.