Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/kernalix7/aips/aips-upgradegit clone --depth 1 https://github.com/kernalix7/AIPSWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00015 | $0.01565 |
| Opus 5 | $0.00008 | $0.00783 |
| Sonnet 5 | $0.00003 | $0.00313 |
| Haiku 4.5 | $0.00002 | $0.00156 |
Grade B, and why
aips-upgrade scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
UPGRADE_SH="$(find ~/.claude/plugins/cache/AIPS/AIPS/lib -name upgrade.sh 2>/dev/null | head -1)" How it starts
The opening of the file, as written. The whole thing — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/aips:upgrade
Refresh everything global: plugin marketplace metadata, the AIPS plugin, and every dependency plugin AIPS relies on. Per-project state is not touched — run /aips:update afterward to sync the local project.
What it does
- Marketplace refresh:
claude --print "/plugin marketplace update" - AIPS plugin upgrade:
Capture pre/post versions fromclaude --print "/plugin update AIPS@AIPS"~/.claude/plugins/AIPS/.claude-plugin/plugin.json. - Dependency plugins — for each of
agentmemory,caveman,rtk,codex-plugin-cc(when present):
Capture pre/post versions from each plugin'sclaude --print "/plugin update <name>@<marketplace>"plugin.json. - Restart agentmemory service if its version changed (Linux):
macOS:systemctl --user restart agentmemorylaunchctl kickstart -k gui/$(id -u)/agentmemory(if loaded). Other platforms: WARN and skip.
Output
One line per plugin showing the version delta:
[upgrade] marketplace refreshed
[upgrade] AIPS v6.0.0 → v6.1.0
[upgrade] agentmemory v0.3.2 → v0.3.3
[upgrade] caveman v1.1.0 (no change)
[upgrade] rtk v2.0.1 → v2.0.2
[upgrade] codex-plugin-cc not installed
[upgrade] agentmemory svc restarted (version changed)
note: run /aips:update inside each project to sync per-project files.
Rules
- Globals only. Never touch
.priv-storage/, root symlinks, project source. - If marketplace refresh fails, abort before running any plugin update.
- Surface any plugin update failure individually; do not abort the whole batch on one failure.
Optional arg: --to v7.0 (hybrid migration)
When invoked as /aips:upgrade --to v7.0 (or /aips:upgrade --to v7.0 $ARGUMENTS), perform the v6.0 → v7.0 hybrid migration for the current project instead of (or in addition to) the global plugin refresh.
Detection
- Read
.priv-storage/.aips-versionin the project root.- If missing and
.priv-storage/CLAUDE.mdis present with the v6.0 section layout (Sections 1–7, 11) → treat as v6.0. - If file reads
7.0→ abort withalready on v7.0 (no-op). - If file reads anything else (e.g.
5.x) → abort withunsupported source version: <ver>; run /aips:migrate-from-md first.
- If missing and
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 130 lines · 15 tokens per session scan B 7c5754e9367f
aips-upgrade is a command published in the GitHub repository kernalix7/AIPS (5 stars, last pushed 3mo ago), licensed MIT. It adds 15 tokens to every session and 1,565 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
git
Git operations with intelligent commit messages and workflow optimization.
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.