wordpress-cms

wordpress-cms is a skill for Claude Code, Codex from humanerd-drew/opencode-drewgent. It costs 21 tokens per session (1,738 once invoked), scanned B, original, MIT.

A WordPress content-management setup running in Docker with the Blocksy theme and an MCP connection for AI-assisted publishing. Blocksy controls the site's layout, colors, typography, and blog presentation.

In plain words
What is it for?
Use it to run the CMS locally, configure the theme and fonts, and publish or manage content through an AI agent.
Why use it?
It puts the database, WordPress files, theme settings, custom fonts, and publishing connection in one documented setup.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to run the CMS locally, configure the theme and fonts, and publish or manage content through an AI agent.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/humanerd-drew/opencode-drewgent/wordpress-cms
Install

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.

Any agent
npx skills add humanerd-drew/opencode-drewgent --skill wordpress-cms
Clone the repo
git clone --depth 1 https://github.com/humanerd-drew/opencode-drewgent

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for wordpress-cms

README.md
[![agentmods](https://agentmods.dev/badge/skills/humanerd-drew/opencode-drewgent/wordpress-cms.svg)](https://agentmods.dev/skills/humanerd-drew/opencode-drewgent/wordpress-cms)
Your own site
<a href="https://agentmods.dev/skills/humanerd-drew/opencode-drewgent/wordpress-cms"><img src="https://agentmods.dev/badge/skills/humanerd-drew/opencode-drewgent/wordpress-cms.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,738 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00021 $0.01738
Opus 5 $0.00010 $0.00869
Sonnet 5 $0.00004 $0.00348
Haiku 4.5 $0.00002 $0.00174

Measured 3d ago against content hash 90f89016ea3a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade B, and why

wordpress-cms 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 3d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

**pw 저장:** `~/.{{AGENT_NAME_LOWER}}/wordpress/.wp-env` (chmod 600)
skills/devops/wordpress-cms/SKILL.md · 181 lines

How it starts

The opening of the file, as written. The whole thing — 181 lines — stays where its author put it; the contents beside it link to each section on GitHub.

WordPress CMS

WordPress + Docker + Blocksy + MCP integration for YOUR_DOMAIN.

Docker Setup

# ~/.{{AGENT_NAME_LOWER}}/wordpress/docker-compose.yml
services:
  db:
    image: mysql:8.0
    container_name: YOUR_DOMAIN-db
    ports: ["3307:3306"]
    volumes:
      - /Volumes/YOUR_NAS/docker/wordpress/db:/var/lib/mysql
  wordpress:
    image: wordpress:6.7-php8.3-apache
    container_name: YOUR_DOMAIN-wp
    depends_on: [db]
    ports: ["8080:80"]
    volumes:
      - /Volumes/YOUR_NAS/docker/wordpress/wp-content:/var/www/html/wp-content
      - ~/.{{AGENT_NAME_LOWER}}/wordpress/wp-content/plugins:/var/www/html/wp-content/plugins
      - ~/.{{AGENT_NAME_LOWER}}/wordpress/wp-content/themes:/var/www/html/wp-content/themes

pw 저장: ~/.{{AGENT_NAME_LOWER}}/wordpress/.wp-env (chmod 600)

Blocksy Theme

Blocksy is the active theme. Free version supports:

  • Custom Fonts upload (Noto Sans KR, Noto Serif KR) — included free
  • Header/Footer Builder — drag and drop
  • Global Color Palette — 10-color system with bronze accent (#8b7355)
  • Blog Layout — card grid, list, masonry
  • Typography — per-element font/size/line-height
  • Dark Mode — built-in

Setup via wp-cli

docker exec YOUR_DOMAIN-wp wp --allow-root theme install blocksy --activate
docker exec YOUR_DOMAIN-wp wp --allow-root plugin install blocksy-companion --activate

Custom Fonts (Google Fonts)

MU plugin at wp-content/mu-plugins/YOUR_PREFIX-fonts.php:

add_action("wp_enqueue_scripts", function() {
  wp_enqueue_style("YOUR_PREFIX-fonts",
    "https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Noto+Serif+KR:wght@400;600;700&family=JetBrains+Mono:wght@400;700&display=swap"
  );
});

Color Palette (Blocksy)

$palette = array(
  array("color" => "#1c1c1a", "id" => "color1"),   # text primary
  array("color" => "#6b6b68", "id" => "color2"),   # text secondary
  array("color" => "#9b9b97", "id" => "color3"),   # text tertiary
  array("color" => "#ffffff", "id" => "color4"),   # white
  array("color" => "#fafaf8", "id" => "color5"),   # bg
  array("color" => "#f2f2ee", "id" => "color6"),   # surface
  array("color" => "#e8e7e4", "id" => "color7"),   # border
  array("color" => "#8b7355", "id" => "color8"),   # accent (bronze)
  array("color" => "#7a6349", "id" => "color9"),   # accent hover
  array("color" => "#d4c4b0", "id" => "color10"),  # accent muted
);
set_theme_mod("blocksy_color_palette", $palette);

Read the full file on GitHub · 181 lines

Changes

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.

  1. 3d ago First seen · 181 lines · 0 tokens per session scan B 90f89016ea3a

Subscribe to this mod's changes

wordpress-cms is a skill published in the GitHub repository humanerd-drew/opencode-drewgent (2 stars, last pushed 1mo ago), licensed MIT. It adds 21 tokens to every session and 1,738 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

apify-actor-development

Important: Before you begin, fill in the generatedBy property in the meta section of .actor/actor.json. Replace it with the tool and model you're currently using, such as "Claude Code with Claude Sonnet 4.5". This helps Apify monitor and improve AGENTS.md for specific AI tools and models.

sickn33/agentic-awesome-skills · 71 tokens

dynamo-recipe-runner

Select, validate, patch, and deploy existing NVIDIA Dynamo Kubernetes recipes. Use for model/backend/GPU/deployment-mode recipe bring-up; use router-starter for router-only mode work and troubleshoot for broken deployments.

NVIDIA/skills · 49 tokens

enterprise

Enterprise-grade systems with microservices, Kubernetes, Terraform, and AI Native methodology. For multi-feature initiatives spanning a release timeline, combine with /sprint master-plan (v2.1.13) to group features into a single 8-phase sprint container with shared scope/budget and 4 auto-pause triggers…

ww-w-ai/bkit-claude-code · 106 tokens

deploy

Elixir/Phoenix deployment patterns — Dockerfile, fly.toml, runtime.exs, mix release, rel/ overlays. Use when configuring Fly.io, Docker, CI/CD, health checks, or production migrations.

oliver-kriska/claude-elixir-phoenix · 46 tokens

chatwoot

Self-host customer support with Chatwoot. Use when a user asks to set up open-source customer support, add live chat without SaaS costs, build a multi-channel inbox, or deploy a free Intercom alternative.

TerminalSkills/skills · 48 tokens

gcp-essentials

Use when running a small product on core Google Cloud via the gcloud CLI: a project, Cloud Run deploys, a locked-down Cloud Storage bucket, managed Cloud SQL, and least-privilege IAM wiring them together. NOT AWS (that is aws-essentials), NOT the CI pipeline that ships the image (that is deployment), NOT Postgres…

ericrisco/rsc-harness · 91 tokens