frontend-squad

frontend-squad is a skill for Claude Code, Codex from ytunahankskn/oh-meine-excode. It costs 29 tokens per session (442 once invoked), scanned A, original, MIT.

A workflow for splitting frontend work across multiple coding agents when the task has independent parts.

In plain words
What is it for?
Use it for React, Next.js, or similar frontend work when several agents are wanted, with one agent handling integration and final verification.
Why use it?
It reduces file conflicts by assigning separate ownership for areas such as page structure, shared components, data wiring, and visual review.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Good fit Use it for React, Next.js, or similar frontend work when several agents are wanted, with one agent handling integration and final verification.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ytunahankskn/oh-meine-excode/frontend-squad
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 ytunahankskn/oh-meine-excode --skill frontend-squad
Clone the repo
git clone --depth 1 https://github.com/ytunahankskn/oh-meine-excode

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 frontend-squad

README.md
[![agentmods](https://agentmods.dev/badge/skills/ytunahankskn/oh-meine-excode/frontend-squad/github.svg)](https://agentmods.dev/skills/ytunahankskn/oh-meine-excode/frontend-squad)
Your own site
<a href="https://agentmods.dev/skills/ytunahankskn/oh-meine-excode/frontend-squad"><img src="https://agentmods.dev/badge/skills/ytunahankskn/oh-meine-excode/frontend-squad/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 frontend-squad

Your own site · 80×15
<a href="https://agentmods.dev/skills/ytunahankskn/oh-meine-excode/frontend-squad"><img src="https://agentmods.dev/badge/skills/ytunahankskn/oh-meine-excode/frontend-squad.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 442 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.00029 $0.00442
Opus 5 $0.00015 $0.00221
Sonnet 5 $0.00006 $0.00088
Haiku 4.5 $0.00003 $0.00044

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

Security

Grade A, and why

frontend-squad 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/oh-meine-excode/skills/frontend-squad/SKILL.md · 78 lines

How it starts

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

Frontend Squad

Use this skill for React, Next.js, or other frontend work when the user explicitly wants multi-agent collaboration.

The goal is not "more agents"; the goal is faster progress with less collision.

Frontend Split Strategy

Split along visual or structural boundaries, not arbitrary file counts.

Good splits:

  • route shell vs feature section
  • shared component updates vs page composition
  • data wiring vs visual polish
  • implementation vs verification

Bad splits:

  • two workers editing the same component tree
  • delegating the exact next blocking step away from the main agent
  • parallelizing a tiny one-file change
  1. Main agent inspects framework, styling system, and target files.
  2. Main agent decides the visual direction and integration plan.
  3. Spawn an explorer if codebase conventions are unclear.
  4. Spawn up to two worker agents with disjoint ownership when the task has independent slices.
  5. Main agent handles shared glue, final polish, and verification.

Suggested Worker Roles

Worker A: Structure

Owns:

  • route/page files
  • layout composition
  • section ordering
  • data and prop wiring

Worker B: Components

Owns:

  • reusable UI components
  • styling tokens
  • motion or micro-interactions
  • responsive refinements

Optional Explorer: Conventions

Owns:

  • identifying project patterns
  • locating design system primitives
  • tracing existing component usage

Required Checks

  • Match the existing framework and styling patterns.
  • Preserve responsive behavior.
  • Avoid generic UI choices when the task asks for strong frontend work.
  • Run the relevant build or test command when possible.
  • Report visual or behavioral risks if full verification is not possible.

Prompt Template

When applying this skill, frame delegation like this:

"I will keep the integration path local. One worker owns the page shell and wiring, another owns reusable UI pieces and polish. If conventions are unclear, an explorer will map the existing patterns first."

Read the full file on GitHub · 78 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 · 78 lines · 29 tokens per session scan A 6c348ee6369d

Subscribe to this mod's changes

frontend-squad is a skill published in the GitHub repository ytunahankskn/oh-meine-excode (2 stars, last pushed 5mo ago), licensed MIT. It adds 29 tokens to every session and 442 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-08-31.

Related

Other skills, from other repositories

build-frontend

Build or modify frontend interfaces using repository-native components while preserving accessibility, responsive behavior, state handling, and visual verification. Use for UI features, design implementation, forms, client-side defects, and frontend refactors; do not use for backend-only or infrastructure-only work.

Phelan164/codex-howto · 57 tokens

build-interactive-graphics

Guidance for building interactive graphics in existing front-end projects, including 2D canvas scenes, 3D views, animated vector characters, and timeline-based visuals.

HYEXE/codex-plugins · 203 tokens

compose-creative-ui

A workflow for combining visual interface components and effects in an existing frontend while preserving its current design system and product identity. It covers component sources such as shadcn/ui, Magic UI, Radix, React Bits, and related tools.

HYEXE/codex-plugins · 184 tokens

implement-async-ui-state

A guide for implementing and checking front-end screens that wait for server work, such as requests, streamed responses, background jobs, and batch operations. It covers states such as queued, running, waiting for input, partly complete, failed, cancelled, retrying, and reconnecting.

HYEXE/codex-plugins · 183 tokens

implement-ui-interaction

A guide for implementing and testing frontend controls such as dialogs, menus, popovers, carousels, drag-and-drop, swiping, pinching, and other pointer, touch, keyboard, or focus interactions.

HYEXE/codex-plugins · 180 tokens

implement-ui-motion

A workflow for implementing motion and micro-interactions in an existing frontend. It covers CSS, the Web Animations API, View Transition API, Anime.js, Motion, and GSAP, including reduced-motion support.

HYEXE/codex-plugins · 203 tokens