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 skills add hnikoloski/imlazy --skill imlazy-wordpressgit clone --depth 1 https://github.com/hnikoloski/imlazyWrote 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/hnikoloski/imlazy/imlazy-wordpress)<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.
<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>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.1 | $0.00039 | $0.10911 |
| Opus 5 | $0.00019 | $0.05456 |
| Sonnet 5 | $0.00008 | $0.02182 |
| Haiku 4.5 | $0.00004 | $0.01091 |
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 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" ] }
}
}
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.
- 10d ago First seen · 1,503 lines · 39 tokens per session scan A 922344ffa0a5
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.
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…
supabase-nextjs
Next.js with Supabase and Drizzle ORM.
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.
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…
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.
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.