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 skills/eugenepyvovarov/codeagentsmobile/wordpress-managernpx skills add eugenepyvovarov/CodeAgentsMobile --skill wordpress-managergit clone --depth 1 https://github.com/eugenepyvovarov/CodeAgentsMobileWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/eugenepyvovarov/codeagentsmobile/wordpress-manager)<a href="https://agentmods.dev/skills/eugenepyvovarov/codeagentsmobile/wordpress-manager"><img src="https://agentmods.dev/badge/skills/eugenepyvovarov/codeagentsmobile/wordpress-manager.svg" alt="Measured on agentmods" height="20"></a>What 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.00076 | $0.02416 |
| Opus 5 | $0.00038 | $0.01208 |
| Sonnet 5 | $0.00015 | $0.00483 |
| Haiku 4.5 | $0.00008 | $0.00242 |
Grade A, and why
wordpress-manager scanned grade A 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 4d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -o .skills-data/wordpress-manager/bin/wp-cli.phar https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar How it starts
The opening of the file, as written. The whole thing — 162 lines — stays where its author put it; the contents beside it link to each section on GitHub.
WordPress Manager
This repository (CodeAgents Mobile)
See also .agents/skills/skills.md for when agents must use this skill.
- Site key:
selfhosted-ninja-prodonly in the committed template (sites.selfhosted.yaml). - Project pages (parent Projects 196): CodeAgents Mobile 203 — https://selfhosted.ninja/projects/codeagents-mobile/ ; MCP Bundler 224 — https://selfhosted.ninja/projects/mcp-bundler/ (links out to https://mcp-bundler.com/ — never 302 the product domain here).
- Blog: posts page 225 — https://selfhosted.ninja/blog/ ; categories
videos,codeagents-mobile,mcp-bundler,projects. Prefer short posts withcore/embed(YouTube) + project category for updates/videos so the blog is used often; project pages only link to categories. - Config:
.skills-data/wordpress-manager/sites.yaml(copy fromsites.selfhosted.yamlin this skill folder if missing). - When product info changes (features, App Store / TestFlight / GitHub links, screenshots, FAQ, iOS requirements, README highlights): update page 203 (and the Projects index blurb on 196 if needed) before considering the task done. Prefer core blocks (see
references/wp-7-block-themes.md); usecore/galleryfor screenshots. - Legacy
codeagentsmobile.maketry.xyzis a 302 to the project page — do not maintain that static site as the source of truth.
Quick start
- Install wp-cli locally (see "wp-cli installation").
- Ensure wp-cli is installed and on PATH for the remote SSH user (see "wp-cli installation (remote)").
- Initialize or copy the site registry to
.skills-data/wordpress-manager/sites.yaml(this repo: start fromsites.selfhosted.yamlin this skill directory). - Pick the target site key (
selfhosted-ninja-prodhere), load its config, and build a basewpcommand. - Run a read-only command first to validate connectivity.
- Apply the task-specific workflow below.
wp-cli installation (local)
Requirements:
- Unix-like environment (macOS, Linux, FreeBSD, Cygwin).
- PHP 5.6 or later available on PATH.
- Remote WordPress 3.7 or later (older versions may have degraded functionality).
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .mcp-bundler/manifest.json 289 B
- assets/plugin-template.php 283 B
- references/site-config.md 2.2 KB
- references/wp-7-block-themes.md 16 KB
- references/wp-cli-usage.md 2.0 KB
- scripts/ensure_remote_wp_cli.py 15 KB runs code
- scripts/init_sites_config.py 3.3 KB runs code
- scripts/install_wp_cli.sh 2.1 KB runs code
- sites.selfhosted.yaml 2.2 KB
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.
- 4d ago First seen · 162 lines · 76 tokens per session scan A f791a006c465
wordpress-manager is a skill published in the GitHub repository eugenepyvovarov/CodeAgentsMobile (150 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 76 tokens to every session and 2,416 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
django-safe-migration
Write, review, and rewrite Django migrations for PostgreSQL with zero-downtime guarantees. Use this skill whenever the user mentions migrations, Django schema changes, or deployment safety — even if they don't say "zero downtime" explicitly. Trigger on: "review this migration", "is this migration safe?", "write a…
django-expert
Expert Django backend development guidance. Use when creating Django models, views, serializers, or APIs; debugging ORM queries or migrations; optimizing database performance; implementing authentication; writing tests; or working with Django REST Framework. Follows Django best practices and modern patterns.
django-reviewer
Review Django and Python changes for clarity, consistency, maintainability, ORM or DRF anti-patterns, and project conventions while preserving behavior. Use after Django code changes or when the user explicitly requests review. Report findings by default; apply refinements only when the user expresses explicit edit…
django-celery-expert
Expert Django Celery guidance for asynchronous task processing. Use when designing background tasks, configuring Celery workers, handling task retries and errors, optimizing Celery performance, implementing periodic tasks with Celery Beat, or setting up production monitoring for Celery. Do not use for general Django…
cdrf-expert
Expert guidance for Django REST Framework class-based views using Classy DRF (https://www.cdrf.co). Use when selecting or debugging APIView, GenericAPIView, concrete generic views, mixin combinations, or ViewSet/GenericViewSet/ModelViewSet behavior; tracing method resolution order (MRO); understanding which method to…
llm-council
Run a decision through 5 independent AI advisors (Contrarian, First Principles, Expansionist, Outsider, Executor) that peer-review anonymously and synthesize a verdict. Trigger on 'council this', 'pressure-test this', 'war room this', or any high-stakes either/or choice. Skip for factual lookups, summaries, or simple…