semantic-html

semantic-html is a skill for Claude Code from ncaq/konoka. It costs 26 tokens per session (744 once invoked), scanned A, original, Apache-2.0.

A guide to using HTML elements that describe their purpose, such as main, header, section, and article, instead of generic containers.

In plain words
What is it for?
It helps write or review JSX and HTML in React or web components, choosing suitable elements for page content and forms.
Why use it?
Meaningful markup is easier for people and accessibility tools to understand and reduces unclear page structure.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the web-tasuke plugin — 17 skills shipped together

Good fit It helps write or review JSX and HTML in React or web components, choosing suitable elements for page content and forms.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ncaq/konoka/semantic-html
View source ↗ ncaq/konoka
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 ncaq/konoka --skill semantic-html
Clone the repo
git clone --depth 1 https://github.com/ncaq/konoka

Made for: Claude Code.

Or install web-tasuke, the plugin that ships this one along with the rest of its 17 skills.

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 semantic-html

README.md
[![agentmods](https://agentmods.dev/badge/skills/ncaq/konoka/semantic-html/github.svg)](https://agentmods.dev/skills/ncaq/konoka/semantic-html)
Your own site
<a href="https://agentmods.dev/skills/ncaq/konoka/semantic-html"><img src="https://agentmods.dev/badge/skills/ncaq/konoka/semantic-html/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 semantic-html

Your own site · 80×15
<a href="https://agentmods.dev/skills/ncaq/konoka/semantic-html"><img src="https://agentmods.dev/badge/skills/ncaq/konoka/semantic-html.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 744 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00026 $0.00744
Opus 5 $0.00013 $0.00372
Sonnet 5 $0.00005 $0.00149
Haiku 4.5 $0.00003 $0.00074

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

Security

Grade A, and why

semantic-html scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/web-tasuke/skills/semantic-html/SKILL.md · 118 lines

What it actually says

セマンティックHTML

原則

意味のある構造には<div>ではなく、なるべくセマンティックHTML要素を使ってください。 <div>にコメントで意味を補足するぐらいなら、適切な要素を選ぶべきです。 セマンティック要素はアクセシビリティツール、LLM、人間のいずれにとっても読みやすくなります。

<div>はスタイリング目的のグルーピングなど、意味を持たないコンテナとしてのみ使います。

要素の使い分け

<main>

ページの主要コンテンツです。 1ページにつき1つだけ使います。

<main>
  <h1>ページタイトル</h1>
  <section>...</section>
  <section>...</section>
</main>

<article>

独立して意味をなすコンテンツです。 ブログ記事、コメント、カードなどが該当します。

<article>
  <h3>記事タイトル</h3>
  <p>{content}</p>
</article>

<section>

見出し(<h1>-<h6>)を伴うコンテンツのまとまりに使います。 ページ内の各セクション、フォームのグループなどが該当します。

// Good
<section>
  <h3>承認セクション</h3>
  <textarea />
  <button>承認</button>
</section>

// Bad
<div>
  <h3>承認セクション</h3>
  <textarea />
  <button>承認</button>
</div>

<header>

セクションやページの導入部分です。 タイトル、ロゴ、ナビゲーションなどを含みます。

<header>
  <h1>ページタイトル</h1>
  <StatusBadge status={status} />
</header>

<footer>

セクションやページの末尾です。 関連リンク、アクションボタン群などを含みます。

<footer>
  <button>キャンセル</button>
  <button>保存</button>
</footer>

<nav>

主要なナビゲーションリンクのまとまりです。 サイドバーメニュー、パンくずリスト、ページ内リンクなどが該当します。

<nav>
  <a href="/dashboard">ダッシュボード</a>
  <a href="/settings">設定</a>
</nav>

<aside>

メインコンテンツに対する補足情報です。 サイドバー、注釈、関連リンクなどが該当します。

<aside>
  <h4>関連情報</h4>
  <ul>...</ul>
</aside>

<div>を使ってよい場合

  • Flexbox/Gridなどレイアウト目的のラッパー
  • スタイリングのためだけのグルーピング
  • 上記のどのセマンティック要素にも該当しないコンテナ
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. 4d ago First seen · 118 lines · 26 tokens per session scan A b9af8e3fefa7

Subscribe to this mod's changes

semantic-html is a skill published in the GitHub repository ncaq/konoka (3 stars, last pushed yesterday), licensed Apache-2.0. It adds 26 tokens to every session and 744 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories