zuar-portal-mcp: Agent for Claude Code

.claude/agents/portal-responsive-specialist.md

portal-responsive-specialist is an agent for Claude Code from patrickdeanfox/zuar-portal-mcp. It costs 123 tokens per session (1,854 once invoked), scanned A, original, MIT.

A specialist for making existing Zuar Portal blocks adapt to different screen sizes, including phones and tablets, while keeping their data and behavior intact.

In plain words
What is it for?
Use it to add responsive layouts, stack charts, enable horizontal scrolling for tables, and preserve usable touch targets.
Why use it?
It fixes cramped layouts, clipped content, and controls that are difficult to use on touch screens.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter.

This is patrickdeanfox/zuar-portal-mcp's own configuration. It tells Claude Code how to work on zuar-portal-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything zuar-portal-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to patrickdeanfox/zuar-portal-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/patrickdeanfox/zuar-portal-mcp/main/.claude/agents/portal-responsive-specialist.md
Clone the repo
git clone --depth 1 https://github.com/patrickdeanfox/zuar-portal-mcp

Made for: Claude Code.

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 portal-responsive-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/patrickdeanfox/zuar-portal-mcp/portal-responsive-specialist/github.svg)](https://agentmods.dev/agents/patrickdeanfox/zuar-portal-mcp/portal-responsive-specialist)
Your own site
<a href="https://agentmods.dev/agents/patrickdeanfox/zuar-portal-mcp/portal-responsive-specialist"><img src="https://agentmods.dev/badge/agents/patrickdeanfox/zuar-portal-mcp/portal-responsive-specialist/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 portal-responsive-specialist

Your own site · 80×15
<a href="https://agentmods.dev/agents/patrickdeanfox/zuar-portal-mcp/portal-responsive-specialist"><img src="https://agentmods.dev/badge/agents/patrickdeanfox/zuar-portal-mcp/portal-responsive-specialist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 123 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,854 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.00123 $0.01854
Opus 5 $0.00062 $0.00927
Sonnet 5 $0.00025 $0.00371
Haiku 4.5 $0.00012 $0.00185

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

Security

Grade A, and why

portal-responsive-specialist 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 11d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/agents/portal-responsive-specialist.md · 52 lines

How it starts

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

You are the Responsive Specialist — a front-end engineer who makes blocks behave at every width without breaking the data or the design. You are the mobile stage of the build → style → responsive → debug → adversary → advisor pipeline, running after the stylist. You add and repair responsive CSS and the minimum layout markup it needs; you do not rewrite the block's logic or its data binding. A block that came in working and styled must leave working, styled, and fluid.

Ground yourself first (every time)

Before touching anything, read the canonical references in this repo — they are the source of truth, do not work from memory:

  • assets/design.md — the collapse recipes are spec, not suggestion: KPI cards on a 6-up grid that collapses 3-up ≤1100px then 2-up ≤640px; two chart cards share a row and stack on small screens; data tables get horizontal scroll rather than crushing columns; clickables/inputs stay tappable. Match these exactly.
  • assets/conventions.md — the rules that still bind while you add breakpoints (CSS in the css field, every selector scoped under .wrapper, theme tokens via var(--token, fallback), no loading states, binding preserved on every update_block).

The grid reality (why width-first, not viewport-first)

Blocks live inside the portal layout grid, which has its own breakpoints (lg / md / sm). A block is sized to its own container's width, which is often far narrower than the viewport (a KPI block in a 4-column grid cell is ~25% of the page). So:

  • Prefer width-based rules scoped under .wrapper — and CSS container queries (@container) where the block's own width is what matters — over @media (max-width: …) viewport units that misbehave inside the grid (the viewport can be wide while the block is narrow, so a viewport media query fires at the wrong time).
  • When you do use a @media query as a fallback, treat its breakpoint as "the block is probably this wide," not "the screen is." The design.md numbers (1100px, 640px) are the block-content widths to collapse at.
  • To use container queries, the block's outer .wrapper (or an inner shell) needs container-type: inline-size; declare it, then size children with cqi/@container rules. Keep everything under .wrapper so it can't leak to sibling blocks.

Read the full file on GitHub · 52 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. 11d ago First seen · 52 lines · 123 tokens per session scan A 4718551acd14

Subscribe to this mod's changes

portal-responsive-specialist is an agent published in the GitHub repository patrickdeanfox/zuar-portal-mcp (1 stars, last pushed 1mo ago), licensed MIT. It adds 123 tokens to every session and 1,854 once invoked, about $0.0006 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 agents, from other repositories

a11y-auditor

Accessibility audit of UI — keyboard navigation, focus-visible, APCA contrast, ARIA roles and labels, touch targets, and reduced-motion. Use to audit a diff, file, or surface for accessibility issues.

educlopez/ui-craft · 49 tokens

ui-developer

Use this agent when you need to implement or fix UI components based on design references or designer feedback. This agent is a senior UI/UX developer specializing in pixel-perfect implementation with React, TypeScript, and Tailwind CSS. Trigger this agent in these scenarios:\n\n \nContext: Designer has reviewed…

MadAppGang/claude-code · 338 tokens

gem-designer

UI/UX design specialist — layouts, themes, color schemes, design systems, accessibility.

KIMISKI33/awesome-copilot · 22 tokens

design-performance-critic

Evaluates design performance including CSS efficiency, asset optimization, loading strategies, and runtime performance. Use this agent to ensure generated designs are fast and efficient. Implements autonomous quality refinement through an internal Ralph Wiggum Loop.

Claude-Code-Community-Ireland/claude-code-resources · 48 tokens

html-build

Build agent — generates lecturevN.html from slidedeck.md and designspec.md, integrates images. Use when: designspec.md is locked (Gate 3 approved) and HTML slide file needs to be produced.

5throck/ai-workspace-standards · 47 tokens

ui-color-reviewer

Color-system review — OKLCH usage, tinted neutrals, contrast, palette construction, theme selection (dark/light), status colors, accessibility. Called by ui-reviewer when color changes need deep attention, or directly when the user asks specifically about palette / theme / contrast / accessibility. Dispatch when: a…

RaNDoM6913/claude-code-superkit · 154 tokens