npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

claude-skill-html2wp

v1.0.2

Published

Claude Code skill: port HTML/CSS/JS layouts onto a custom WordPress theme

Readme

html2wp — HTML to WordPress Skill

A Claude Code skill for porting static HTML/CSS layouts onto a custom WordPress theme — no ACF, no page builders, no unnecessary plugins.


What it does

  • Asks intake questions: how many pages, which sections repeat, what content is dynamic
  • Scaffolds a complete custom theme from scratch
  • Breaks HTML into the right WordPress concepts: header/footer, reusable blocks, page templates, custom post types
  • Generates native meta boxes (no ACF) for custom fields
  • Enforces BEM, proper escaping, nonces, and WP best practices throughout

Install

Option 1 — npx

npx claude-skill-html2wp

Option 2 — Manual

git clone https://github.com/FrankyJo/ai_skills ~/ai_skills && cp -r ~/ai_skills/html2wp ~/.claude/skills/

To update:

npx claude-skill-html2wp

How to use

Describe what you want to port to WordPress. Any of these phrases activate the skill:

  • "port HTML to WordPress"
  • "apply HTML layout to WordPress"
  • "create WordPress theme from mockup"
  • "convert HTML layout to WordPress theme"
  • "WordPress theme from scratch"
  • "scan WordPress theme"
  • "analyze existing WordPress theme"

Claude will ask 6 intake questions, then scaffold the full theme.


Architecture decisions

| Question | Answer | |---|---| | Custom fields | Native meta boxes (no ACF) | | Page builders | Never | | CSS | Plain CSS, one file per page | | JS | Vanilla JS or lightweight libs, jQuery deregistered | | Repeating content | Custom Post Types | | Section reuse | get_template_part('blocks/name') | | Menus | register_nav_menus + wp_nav_menu |


Theme structure

{theme-slug}/
├── style.css / functions.php / index.php
├── header.php / footer.php / page.php / 404.php
├── pages/         ← page templates (Template Name: ...)
├── blocks/        ← reusable sections (get_template_part)
├── app/
│   ├── core/      ← postTypes, taxonomies, customField
│   └── front/     ← addStyles, addScripts, menuCreator
└── public/        ← CSS / JS / images


html2wp — Навичка HTML до WordPress

Навичка Claude Code для натягування статичної HTML/CSS верстки на кастомну WordPress тему — без ACF, без конструкторів сторінок, без зайвих плагінів.


Що вона робить

  • Ставить вхідні запитання: кількість сторінок, які секції повторюються, який контент динамічний
  • Скаффолдить повну кастомну тему з нуля
  • Розбиває HTML на правильні концепції WordPress: header/footer, блоки що повторюються, шаблони сторінок, кастомні типи постів
  • Генерує нативні мета-поля (без ACF) для кастомних полів
  • Дотримується BEM, правильного екранування, nonces та найкращих практик WP

Встановлення

Варіант 1 — npx

npx claude-skill-html2wp

Варіант 2 — Вручну

git clone https://github.com/FrankyJo/ai_skills ~/ai_skills && cp -r ~/ai_skills/html2wp ~/.claude/skills/

Оновлення:

npx claude-skill-html2wp

Як користуватись

Опиши що хочеш перенести на WordPress. Будь-яка з цих фраз активує навичку:

  • "натягнути верстку на WordPress"
  • "зробити посадку HTML на WP"
  • "створити WordPress тему з макету"
  • "port HTML to WordPress"
  • "конвертувати HTML верстку в WordPress тему"
  • "WordPress тема з нуля"
  • "проаналізувати WordPress тему"

Claude поставить 6 вхідних запитань, потім скаффолдить повну тему.


Архітектурні рішення

| Питання | Відповідь | |---|---| | Кастомні поля | Нативні мета-поля (без ACF) | | Конструктори сторінок | Ніколи | | CSS | Чистий CSS, один файл на сторінку | | JS | Vanilla JS або легкі бібліотеки, jQuery відключений | | Контент що повторюється | Кастомні типи постів | | Повторне використання секцій | get_template_part('blocks/name') | | Меню | register_nav_menus + wp_nav_menu |


Структура теми

{theme-slug}/
├── style.css / functions.php / index.php
├── header.php / footer.php / page.php / 404.php
├── pages/         ← шаблони сторінок (Template Name: ...)
├── blocks/        ← секції що повторюються (get_template_part)
├── app/
│   ├── core/      ← postTypes, taxonomies, customField
│   └── front/     ← addStyles, addScripts, menuCreator
└── public/        ← CSS / JS / зображення