frontend-architect

frontend-architect is a skill for Claude Code from curiositech/some_claude_skills. It costs 35 tokens per session (2,147 once invoked), scanned A, original, MIT.

A guide to choosing and structuring modern frontend applications, especially React projects, Cloudflare deployments, component libraries, and private internal tools.

In plain words
What is it for?
Use it to choose a frontend stack, plan Cloudflare Pages or Workers deployments, select UI components, build internal dashboards, and connect design tokens to components.
Why use it?
It helps developers compare technology choices against team size, timeline, deployment platform, performance needs, and existing code.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the frontend-architect plugin — 1 skill shipped together

Good fit Use it to choose a frontend stack, plan Cloudflare Pages or Workers deployments, select UI components, build internal dashboards, and connect design tokens to components.

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

Made for: Claude Code.

Or install frontend-architect, the plugin that ships this one along with the rest of its 1 skill.

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-architect

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/curiositech/some_claude_skills/frontend-architect"><img src="https://agentmods.dev/badge/skills/curiositech/some_claude_skills/frontend-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,147 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 137
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00035 $0.02147
Opus 5 $0.00017 $0.01073
Sonnet 5 $0.00007 $0.00429
Haiku 4.5 $0.00003 $0.00215

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

Security

Grade A, and why

frontend-architect 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 6d 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.

.claude/skills/frontend-architect/SKILL.md · 301 lines

How it starts

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

Frontend Architect

You are a senior frontend architect specializing in modern React stacks, Cloudflare deployment, and internal tools development. You guide technology decisions, deployment strategies, and design system integration.

When to Invoke

  • Stack selection: "What framework should I use for X?"
  • Cloudflare deployment: "How do I deploy to Pages/Workers?"
  • Component library decisions: "Should I use shadcn, Radix, or build custom?"
  • Internal tools: "I need a private admin dashboard"
  • Design system bridge: "How do I connect design tokens to components?"

Core Competencies

1. Stack Selection

When recommending a stack, always consider:

Factor Questions to Ask
Team Size Solo dev → simpler stack; Team → tooling/types matter
Timeline MVP → batteries-included; Long-term → flexibility
Deployment Cloudflare → Next.js 14+, SvelteKit; Vercel → wider options
Performance SSG where possible; SSR for dynamic; SPA for apps
Existing Code Migration cost vs. rewrite; incremental adoption paths
Recommended Stacks by Use Case
const stackRecommendations = {
  // Marketing sites
  marketingSite: {
    framework: "Next.js 14+ (App Router)",
    styling: "Tailwind CSS",
    components: "shadcn/ui",
    deployment: "Cloudflare Pages",
    rationale: "SSG for speed, great DX, edge deployment"
  },

  // Internal tools
  internalTools: {
    framework: "Next.js 14+ (App Router)",
    styling: "Tailwind CSS",
    components: "shadcn/ui + react-hook-form + zod",
    auth: "Cloudflare Access",
    deployment: "Cloudflare Pages (with Access protection)",
    rationale: "Fast iteration, zero-config auth, preview URLs"
  },

  // Interactive gallery/portfolio
  gallery: {
    framework: "Next.js 14+ (App Router)",
    styling: "Tailwind CSS + Framer Motion",
    components: "shadcn/ui + custom",
    images: "next/image + Pexels/Unsplash API",
    deployment: "Cloudflare Pages",
    rationale: "Optimized images, smooth animations, edge CDN"
  },

  // E-commerce
  ecommerce: {
    framework: "Next.js 14+ (App Router)",
    styling: "Tailwind CSS",
    components: "shadcn/ui + Stripe Elements",
    payments: "Stripe",
    deployment: "Vercel (better Next.js support) or Cloudflare",
    rationale: "SSR for SEO, edge caching, Stripe integration"
  }
};

Read the full file on GitHub · 301 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 301 lines · 35 tokens per session scan A ba51fe4dc061

Subscribe to this mod's changes

frontend-architect is a skill published in the GitHub repository curiositech/some_claude_skills (218 stars, last pushed 4d ago), licensed MIT. It adds 35 tokens to every session and 2,147 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-09-03.

Related

Other skills, from other repositories

nextjs-on-cloudflare

Build, migrate, and deploy Next.js apps on Cloudflare Workers with vinext. Use when starting a Next.js project on Cloudflare, moving an existing app to Workers, choosing between vinext and OpenNext, or setting up vinext for Workers. For setup, migration, or deployment, install vinext's upstream skills with npx skills…

cloudflare/skills · 96 tokens

cloudflare-nextjs

Deploy Next.js to Cloudflare Workers via the OpenNext adapter (@opennextjs/cloudflare). Use for SSR/ISR/SSG/App or Pages Router, getCloudflareContext, bindings (D1/R2/KV/AI/Hyperdrive), caching tiers, skew protection, multi-worker, custom worker, env vars, or worker…

secondsky/claude-skills · 89 tokens

website-builder

Build an approved Vite/React/Tailwind plan, collect assets, verify static output, deploy to GitHub Pages, and emit metadata. Use for implementing tasks.md. Don't use for design review, planning, backend services, or unapproved specs.

luongnv89/skills · 54 tokens

deploy-to-vercel

Deploy a Next.js application to Vercel. Covers project linking, environment variables, preview deployments, custom domains, and production deployment configuration. Use when deploying a Next.js app for the first time, setting up preview deployments for pull requests, configuring custom domains, or managing environment…

pjt222/agent-almanac · 69 tokens

cloudflare-static-assets

Configure and use Cloudflare Static Assets with React Router, ensuring compatibility across development and production environments with automatic fallback handling. Use when deploying React Router applications to Cloudflare Workers that need to access files from the public directory.

atman-33/workhub · 48 tokens

Cursor rules for Next

Cursor rules for Next.js development with Vercel and TypeScript integration.

AmariahAK/atlarix-skills · 4 tokens