agentic-webdesign-zephyr

agentic-webdesign-zephyr is a skill for Claude Code, Codex from S3YED/appie-kit. It costs 46 tokens per session (1,119 once invoked), scanned A, original, MIT.

A web framework with 14 interactive components, such as tabs, dialogs, date pickers, file uploads, and sortable lists, using CSS interactions and very little runtime JavaScript. Its MCP server lets AI agents control existing components through typed tools.

In plain words
What is it for?
Use it to build interactive web pages, scaffold projects, inspect component state and schemas, and connect live components to agents through the MCP server.
Why use it?
It gives agents a defined interface to operate instead of asking them to generate raw HTML for every interaction. This can keep browser behavior smaller and more predictable.

Skill for Claude CodeCodex

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

Good fit Use it to build interactive web pages, scaffold projects, inspect component state and schemas, and connect live components to agents through the MCP server.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/s3yed/appie-kit/agentic-webdesign-zephyr
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 S3YED/appie-kit --skill agentic-webdesign-zephyr
Clone the repo
git clone --depth 1 https://github.com/S3YED/appie-kit

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 agentic-webdesign-zephyr

README.md
[![agentmods](https://agentmods.dev/badge/skills/s3yed/appie-kit/agentic-webdesign-zephyr.svg)](https://agentmods.dev/skills/s3yed/appie-kit/agentic-webdesign-zephyr)
Your own site
<a href="https://agentmods.dev/skills/s3yed/appie-kit/agentic-webdesign-zephyr"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/agentic-webdesign-zephyr.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,119 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.00046 $0.01119
Opus 5 $0.00023 $0.00560
Sonnet 5 $0.00009 $0.00224
Haiku 4.5 $0.00005 $0.00112

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

Security

Grade A, and why

agentic-webdesign-zephyr 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 8d 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.

skills/agentic/agentic-webdesign-zephyr/SKILL.md · 114 lines

How it starts

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

Zephyr Framework — Zero-JS Agentic Web Components

What it is

"The first UI framework built for AI agents." 14 interactive web components (modal, tabs, accordion, toast, combobox, carousel, select, dropdown, datepicker, infinite scroll, sortable, file upload, virtual list, etc.) with pure CSS interactions. Zero runtime JavaScript after initial ~7KB page load. MCP server gives AI agents typed tools to control live components — they don't generate HTML, they interact with existing components.

Quick start

# Scaffold new project
npx create-zephyr-framework my-app
cd my-app && npm start

# Or via CDN (zero build)
# Add two script tags, use components directly

Core Packages

Package Description
zephyr-framework Core: 14 web components, CSS, agent API, A2UI catalog
zephyr-framework-mcp MCP server: bridges Claude Desktop/Cursor/Windsurf to live components
create-zephyr-framework CLI scaffolder with starter page

MCP Tools (6 typed tools)

// Agents call these on live components
zephyr_get_state()      → JSON snapshot of all component states
zephyr_get_schema()     → Schema for all 14 components
zephyr_get_prompt()     → LLM context for prompting
zephyr_act(selector, action, args?)  → Execute action: open modal, switch tab, etc.
zephyr_describe(selector) → Deep inspect one component
zephyr_render(html)     → Render HTML into page

Agent doesn't see raw HTML — it sees typed tools with structured I/O:

zephyr_act('#modal-demo', 'open') → { success: true }
zephyr_get_state() → [{ id: "modal-demo", state: "open", actions: ["close", "toggle"] }, ...]

Agent API (Browser)

// Direct browser access for JS-based agents
Zephyr.agent.getState()     // Snapshot all components
Zephyr.agent.act('#id', 'action')  // Act on component
Zephyr.agent.describe('#id')       // Deep inspect
Zephyr.agent.render(html)          // Render HTML
Zephyr.agent.compose(components)   // Compose layout
Zephyr.agent.observe(callback)     // Watch state changes
Zephyr.agent.record() / replay()   // Record/replay interactions
Zephyr.agent.headless()            // Toggle fast mode

Read the full file on GitHub · 114 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. 8d ago First seen · 114 lines · 46 tokens per session scan A 8bcd3427f280

Subscribe to this mod's changes

agentic-webdesign-zephyr is a skill published in the GitHub repository S3YED/appie-kit (7 stars, last pushed 12d ago), licensed MIT. It adds 46 tokens to every session and 1,119 once invoked, about $0.0002 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-08-31.

Related

Other skills, from other repositories