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/pluginslab/wp-agentic-kit/readmegit clone --depth 1 https://github.com/pluginslab/wp-agentic-kitWhat 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.00000 | $0.00470 |
| Opus 5 | $0.00000 | $0.00235 |
| Sonnet 5 | $0.00000 | $0.00094 |
| Haiku 4.5 | $0.00000 | $0.00047 |
Grade A, and why
README scanned grade A with 0 findings 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 yesterday.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 44 lines — stays where its author put it; the contents beside it link to each section on GitHub.
.claude/commands/
Project-scoped slash commands. Type /<name> in a Claude Code session and the command's body becomes the agent's marching orders for that turn.
Shipped commands
| Command | What it does |
|---|---|
/plan-freeze [slug] |
Commits the active feature's spec.md + plan.md, pushes a plan/ branch, opens a PR. Wraps scripts/open-plan-pr.sh. |
/audit-plan [slug] |
Dispatches the plan-reviewer sub-agent against the active feature's plan. Read-only audit. |
/ship-feature [slug] |
After the feature PR merges: marks progress.md complete and moves the dir to .claude/plans/archive/. |
Each command auto-detects the active feature when called without an argument (most recently modified progress.md whose status isn't a completion synonym).
Why slash commands, not skills
Skills are interview-driven workflows (multi-phase, branching). Commands are one-step shortcuts. Use a command when the work is "always do exactly this sequence."
The three above wrap three different primitives:
plan-freeze→ a shell script (open-plan-pr.sh)audit-plan→ a sub-agent (plan-reviewer)ship-feature→ file-system + git operations
Without the commands you'd type the script invocation, the sub-agent dispatch, or the archive sequence from memory each time. The commands move that into muscle memory — /plan-freeze is shorter than ./scripts/open-plan-pr.sh 003-order-status-block.
Frontmatter
---
description: One sentence shown in the slash command picker.
argument-hint: "[feature-slug]"
---
Both fields are optional but recommended. $ARGUMENTS in the body substitutes whatever the user typed after the command name.
Adding a command
- Drop a
<name>.mdin this directory. - Add the frontmatter.
- Write the body as instructions to the agent — verbs in second person, one step per line.
- If the command needs new tools or scripts, register them in
.claude/settings.jsonso the agent doesn't ask permission every time.
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.
- yesterday First seen · 44 lines · 0 tokens per session scan A 5a939447b1ac
README is a command published in the GitHub repository pluginslab/wp-agentic-kit (18 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 470 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
respond-to-issue
Respond to an issue triggered by @elixpoo mention or the ELIXPO label.
commit-push-pr
Commit, push, and open a PR. Branch rules prevent accidents on main or duplicate PRs.
fill-pr-description
Generate a PR description from the diff. Triggered when a whitelisted author puts @elixpoo fill in the PR body.
review
Command "review" from elixpo/claudeOps.elixpo, covering what to look at, don't, output format, issues and suggestions.
dispatcher
Pick the next-best repo to work on across the portfolio — rank free repos, recommend one, claim its lease atomically, and route to the entry command.
standup
Show a daily standup summary with completed, in-progress, and blocked tasks across all active epics.