# Agentic Webdesign Zephyr

> Use Zephyr Framework for zero-JS interactive web components with built-in MCP server, A2UI catalog, and Agent API. AI agents control live UI through typed tools, not generated markup.

- **Type:** Skill
- **Install:** `agentstack add skill-s3yed-appie-kit-agentic-webdesign-zephyr`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [S3YED](https://agentstack.voostack.com/s/s3yed)
- **Installs:** 0
- **Category:** [AI & ML](https://agentstack.voostack.com/c/ai-and-ml)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [S3YED](https://github.com/S3YED)
- **Source:** https://github.com/S3YED/appie-kit/tree/master/skills/agentic/agentic-webdesign-zephyr
- **Website:** https://weblyfe.ai

## Install

```sh
agentstack add skill-s3yed-appie-kit-agentic-webdesign-zephyr
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# 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
```bash
# 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)

```json
// 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)
```javascript
// 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
```

## A2UI Integration
Zephyr publishes `zephyr-a2ui-catalog.json` — Google's Agent-to-UI protocol catalog. Any A2UI-compatible agent (Gemini, CopilotKit) discovers Zephyr components without integration code.

## Drop-in Chat Widget
```html

```
Visitors type natural language, agent controls UI. Works with Anthropic and OpenAI. Proxy mode for production.

## CSS-Only Interactions
- Modal: CSS Grid + `:has()` selector for open/close — no JS
- Tabs: View Transitions API for smooth slide animations
- Accordion: CSS `:has()` + `grid-template-rows` transition
- Carousel: CSS scroll-snap + `:has()` for prev/next
- Toast: CSS animations with auto-dismiss via `animation-delay`
- Dropdown/Combobox: `:focus-within` + keyboard nav

All GPU-accelerated, 60fps, zero main-thread overhead during interaction.

## Comparison
| | Zephyr | MCP Apps | AG-UI | Generative UI |
|---|---|---|---|---|
| Framework | None (Web Components) | React | React | React |
| Build step | No | Yes | Yes | Yes |
| Agent generates markup | No | Yes | No | Yes |
| Pre-built components | 14 + dashboard | None | None | None |
| MCP integration | Yes | Native | No | No |
| A2UI catalog | Yes | No | No | No |

## MCP Client Setup
```json
{
  "mcpServers": {
    "zephyr": {
      "command": "npx",
      "args": ["zephyr-framework-mcp"],
      "env": {
        "ZEPHYR_ROOT": "/path/to/project",
        "ZEPHYR_MCP_PORT": "3456"
      }
    }
  }
}
```

## Pitfalls
- Components require the framework JS to register custom elements (one-time, ~7KB)
- MCP server needs a running browser/page to connect to (WebSocket bridge on port 3456)
- Chat widget in production should use proxy mode (don't expose API keys in HTML)
- Dashboard add-on and runtime add-on are separate packages

## Version
MIT License. Active development. npm packages published and maintained.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [S3YED](https://github.com/S3YED)
- **Source:** [S3YED/appie-kit](https://github.com/S3YED/appie-kit)
- **License:** MIT
- **Homepage:** https://weblyfe.ai

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** yes
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-s3yed-appie-kit-agentic-webdesign-zephyr
- Seller: https://agentstack.voostack.com/s/s3yed
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
