imlazy-wordpress

imlazy-wordpress is a skill for Claude Code from hnikoloski/imlazy. It costs 39 tokens per session (10,911 once invoked), scanned A, original, MIT.

Guidance for developing WordPress themes and plugins with Advanced Custom Fields, a WordPress tool for adding structured content fields.

In plain words
What is it for?
Use it when building or reviewing themes, plugins, ACF fields or blocks, REST endpoints, scripts, styles, and WordPress queries.
Why use it?
It provides patterns for changing WordPress sites safely, including content fields, security, database queries, and custom APIs.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the imlazy plugin — 26 skills, 1 command, 1 hook shipped together

Good fit Use it when building or reviewing themes, plugins, ACF fields or blocks, REST endpoints, scripts, styles, and WordPress queries.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hnikoloski/imlazy/imlazy-wordpress
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 hnikoloski/imlazy --skill imlazy-wordpress
Clone the repo
git clone --depth 1 https://github.com/hnikoloski/imlazy

Made for: Claude Code.

Or install imlazy, the plugin that ships this one along with the rest of its 26 skills, 1 command, 1 hook.

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 imlazy-wordpress

README.md
[![agentmods](https://agentmods.dev/badge/skills/hnikoloski/imlazy/imlazy-wordpress/github.svg)](https://agentmods.dev/skills/hnikoloski/imlazy/imlazy-wordpress)
Your own site
<a href="https://agentmods.dev/skills/hnikoloski/imlazy/imlazy-wordpress"><img src="https://agentmods.dev/badge/skills/hnikoloski/imlazy/imlazy-wordpress/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for imlazy-wordpress

Your own site · 80×15
<a href="https://agentmods.dev/skills/hnikoloski/imlazy/imlazy-wordpress"><img src="https://agentmods.dev/badge/skills/hnikoloski/imlazy/imlazy-wordpress.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 10,911 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 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.00039 $0.10911
Opus 5 $0.00019 $0.05456
Sonnet 5 $0.00008 $0.02182
Haiku 4.5 $0.00004 $0.01091

Measured 10d ago against content hash 922344ffa0a5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

imlazy-wordpress 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 10d 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.

// Then: * * * * * curl https://yoursite.com/wp-cron.php?doing_wp_cron > /dev/null 2>&1
skills/imlazy-wordpress/SKILL.md · 1,503 lines

How it starts

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

WordPress + ACF Development Skill

Comprehensive guidance for WordPress theme/plugin development and ACF field management.

This skill incorporates patterns from the official WordPress Agent Skills — see their skills/ directory for deeper dives on specific topics.

Cross-reference: use Skill(imlazy-php-review) for PHP-level code review of any WordPress code encountered.

When to Activate

  • Building or modifying WordPress themes (classic or block)
  • Creating or reviewing WordPress plugins
  • Working with ACF field groups, blocks, or options pages
  • Implementing custom REST API endpoints
  • Enqueuing scripts/styles or registering blocks
  • Performing WordPress security review
  • Writing WP_Query loops or custom database queries

WordPress Core

1. Theme Development

Template Hierarchy

WordPress resolves page templates in a strict order. Understand the file that will load:

single-{post-type}-{slug}.php  →  single-{post-type}.php  →  single.php  →  singular.php  →  index.php
page-{slug}.php               →  page-{id}.php            →  page.php    →  singular.php  →  index.php
category-{slug}.php           →  category-{id}.php        →  category.php →  archive.php   →  index.php
tag-{slug}.php                →  tag-{id}.php             →  tag.php     →  archive.php   →  index.php
taxonomy-{tax}-{term}.php     →  taxonomy-{tax}.php       →  taxonomy.php →  archive.php   →  index.php
archive-{post-type}.php       →  archive.php              →  index.php

Use is_*() conditionals in index.php as a fallback, not as a replacement for the hierarchy.

Block Themes (FSE)
// theme.json — the heart of a block theme
{
  "version": 2,
  "settings": {
    "color": {
      "palette": [
        { "slug": "primary", "color": "#1d2327", "name": "Primary" },
        { "slug": "accent",  "color": "#007cba", "name": "Accent" }
      ]
    },
    "typography": {
      "fontSizes": [
        { "slug": "small", "size": "13px", "name": "Small" },
        { "slug": "medium", "size": "20px", "name": "Medium" }
      ]
    }
  },
  "templates": {
    "index": { "title": "Index", "postTypes": [ "page", "post" ] }
  }
}

Read the full file on GitHub · 1,503 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. 10d ago First seen · 1,503 lines · 39 tokens per session scan A 922344ffa0a5

Subscribe to this mod's changes

imlazy-wordpress is a skill published in the GitHub repository hnikoloski/imlazy (2 stars, last pushed 1mo ago), licensed MIT. It adds 39 tokens to every session and 10,911 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

web-design-reviewer

This skill enables visual inspection of websites running locally or remotely to identify and fix design issues. Triggers on requests like "review website design", "check the UI", "fix the layout", "find design problems". Detects issues with responsive design, accessibility, visual consistency, and layout breakage…

Galaxy-Dawn/claude-scholar · 74 tokens

supabase-nextjs

Next.js with Supabase and Drizzle ORM.

alinaqi/maggy · 14 tokens

design-patterns

Agents should invoke this skill when choosing patterns, designing traits/interfaces/components, deciding abstraction boundaries, evaluating dependency injection/callbacks, or comparing implementation approaches in Rust, TypeScript/React, or Django/Python.

waybarrios/opencode-power-pack · 46 tokens

fullstack-expert

Expert-level fullstack development guide covering multi-language (TypeScript, Python, Go, Rust), multi-framework (Next.js, FastAPI, Gin, Axum), API design, microservices, DevOps, and system design / Panduan fullstack tingkat ahli mencakup multi-bahasa (TypeScript, Python, Go, Rust), multi-framework (Next.js, FastAPI…

roedyrustam/vibes-plug · 101 tokens

spa-orchestrator

Orchestrates Single-Page Application (SPA) architecture, integrating frontend state management with API-driven backends / Mengorkestrasi arsitektur Single-Page Application (SPA), mengintegrasikan state management frontend dengan backend berbasis API.

roedyrustam/vibes-plug · 53 tokens

multiple-entry-points

Expert guide for designing and implementing Multiple Entry Points architecture in web applications / Panduan ahli untuk merancang dan mengimplementasikan arsitektur Multiple Entry Points pada aplikasi web.

roedyrustam/vibes-plug · 39 tokens