interface-polish

interface-polish is a skill for Claude Code from Gekkos-tech/agency-os. It costs 185 tokens per session (3,531 once invoked), scanned A, original, MIT.

A finishing guide for web interfaces whose layout, colors, and structure already work but lack small interaction details. It covers hover, active, and keyboard-focus states, transitions, animations, shadows, borders, spacing, and typography.

In plain words
What is it for?
Use it to improve buttons and other controls, enter and exit animations, elevation and shadows, rounded corners, optical alignment, and keyboard accessibility details.
Why use it?
It helps find the small inconsistencies that make an interface feel unfinished, such as missing focus indicators or transitions that respond too slowly. It refines the existing design direction rather than replacing it.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the design-foundation plugin — 7 skills, 1 command, 1 agent shipped together

Good fit Use it to improve buttons and other controls, enter and exit animations, elevation and shadows, rounded corners, optical alignment, and keyboard accessibility details.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gekkos-tech/agency-os/interface-polish
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 Gekkos-tech/agency-os --skill interface-polish
Clone the repo
git clone --depth 1 https://github.com/Gekkos-tech/agency-os

Made for: Claude Code.

Or install design-foundation, the plugin that ships this one along with the rest of its 7 skills, 1 command, 1 agent.

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 interface-polish

README.md
[![agentmods](https://agentmods.dev/badge/skills/gekkos-tech/agency-os/interface-polish/github.svg)](https://agentmods.dev/skills/gekkos-tech/agency-os/interface-polish)
Your own site
<a href="https://agentmods.dev/skills/gekkos-tech/agency-os/interface-polish"><img src="https://agentmods.dev/badge/skills/gekkos-tech/agency-os/interface-polish/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 interface-polish

Your own site · 80×15
<a href="https://agentmods.dev/skills/gekkos-tech/agency-os/interface-polish"><img src="https://agentmods.dev/badge/skills/gekkos-tech/agency-os/interface-polish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 185 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,531 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.00185 $0.03531
Opus 5 $0.00093 $0.01766
Sonnet 5 $0.00037 $0.00706
Haiku 4.5 $0.00018 $0.00353

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

Security

Grade A, and why

interface-polish 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 9d 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/design-foundation/skills/interface-polish/SKILL.md · 217 lines

How it starts

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

Interface Polish

The last 10% that separates "works" from "feels great". Apply these rules to an interface whose layout, palette, and structure are already decided. Do not change the design direction — refine its execution.

Work through the sections as a checklist against the actual code. Fix what's missing; leave what's already right.

1. Interactive states

Every interactive element needs four distinct states: rest, hover, active, focus-visible. Missing states are the #1 "feels unfinished" signal.

.button {
  transition: background-color 150ms ease, box-shadow 150ms ease, transform 100ms ease;
}
.button:hover  { background-color: var(--accent-hover); }
.button:active { transform: scale(0.98); transition-duration: 50ms; } /* press responds FASTER than hover */
.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;   /* never outline: none without a replacement */
}

Rules:

  • Hover changes must be subtle but unmistakable: one step of background shift, or 1–2px lift with shadow deepening — not both plus a color change.
  • :active should feel physically pressed: scale 0.97–0.98 or translateY(1px), with a shorter duration than hover.
  • Use :focus-visible, not :focus, so mouse clicks don't paint rings but keyboards do.
  • Rows/list items: hover = background-color shift only; don't move them.
  • Disabled: reduce opacity to ~0.5 AND remove hover effects (pointer-events: none or explicit rules).
  • Touch: hover states must not be load-bearing; anything revealed on hover needs a touch/focus path too.

2. Transition timing and easing

  • Durations: 100–150ms hover/press · 200ms dropdowns, tooltips · 250–300ms modals, drawers, layout shifts · 400–600ms only for page-level or decorative reveals. When unsure, subtract 50ms — slow transitions read as lag.
  • Never transition: all. List properties explicitly; all causes accidental animation of layout properties and jank.
  • Easing: ease-out for things appearing/responding to the user (start fast, settle). ease-in or ease-in-out for things leaving. cubic-bezier(0.16, 1, 0.3, 1) (expo-out) makes entrances feel expensive. Bounce/overshoot only if the design system is playful — and subtle (≤8% past target).
  • Exit faster than enter: a modal opening at 250ms should close in ~180ms. Users wait for what appears; they've already dismissed what's leaving.
  • Animate only compositor-friendly properties where possible: transform, opacity. Animating width/height/top/left/margin causes layout jank; if unavoidable, keep the element small or use transform tricks. Never animate box-shadow directly on large surfaces — crossfade a pseudo-element's opacity instead:

Read the full file on GitHub · 217 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. 9d ago First seen · 217 lines · 185 tokens per session scan A aab2e68c6745

Subscribe to this mod's changes

interface-polish is a skill published in the GitHub repository Gekkos-tech/agency-os (5 stars, last pushed 1mo ago), licensed MIT. It adds 185 tokens to every session and 3,531 once invoked, about $0.0009 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

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.

aiskillstore/marketplace · 43 tokens

alex-style

Use when building or styling any web UI — landing pages, hero sections, dashboards, components, marketing sites — or when the user asks for beautiful, animated, or polished design, UI animations, animated backgrounds, gradients, icons, smooth scrolling, or design inspiration. Also use before reaching for the web to…

worldofhacks/alex-style · 70 tokens

ux-buttons

Design or critique UI buttons — pick the right button type for the action's importance, apply sizing/label/state best practices, and gate stylistic levers like shape, shadows, FABs, and icon-only buttons. Trigger when the user asks to design, choose, style, or review buttons, CTAs, button labels, button hierarchy, or…

Uxcel-Lab/product-skills · 76 tokens

ux-navigation

Design or critique navigation systems — match the nav pattern (top bar, sidebar, tabs, hamburger, mega menu, bottom nav) to the information architecture, and apply wayfinding, header, breadcrumb, and pagination best practices. Trigger when the user asks to design or review navigation, menus, navbars, sidebars, tabs…

Uxcel-Lab/product-skills · 89 tokens

ux-typography

Design or critique a product's typography — typeface selection and pairing, type scale, hierarchy, and readability settings (size, line length, line height, spacing, alignment). Trigger when choosing a typeface or font pairing, setting up a type scale, fixing typographic hierarchy, improving text readability, or…

Uxcel-Lab/product-skills · 74 tokens

premium-hero-builder

Build premium, dark-themed hero sections and landing pages with cinematic video backgrounds, liquid glass morphism, editorial typography, and pixel-perfect specifications. Based on the Viktor Oddy methodology of detailed design prompts that produce agency-quality results from AI code generation. Use when building hero…

sacredvoid/skillkit · 74 tokens