Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/ricneves-ai/flowgrammers-skillsnpx agentmods add skills/ricneves-ai/flowgrammers-skills/senior-frontendWrote 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.
[](https://agentmods.dev/skills/ricneves-ai/flowgrammers-skills/senior-frontend)<a href="https://agentmods.dev/skills/ricneves-ai/flowgrammers-skills/senior-frontend"><img src="https://agentmods.dev/badge/skills/ricneves-ai/flowgrammers-skills/senior-frontend/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.
<a href="https://agentmods.dev/skills/ricneves-ai/flowgrammers-skills/senior-frontend"><img src="https://agentmods.dev/badge/skills/ricneves-ai/flowgrammers-skills/senior-frontend.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00059 | $0.02989 |
| Opus 5 | $0.00030 | $0.01494 |
| Sonnet 5 | $0.00012 | $0.00598 |
| Haiku 4.5 | $0.00006 | $0.00299 |
Grade A, and why
senior-frontend scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
fetch(url).then(r => r.json()).then(setData).finally(() => setLoading(false)); How it starts
The opening of the file, as written. The whole thing — 476 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Desenvolvedor Frontend Sênior
Padrões de desenvolvimento frontend, otimização de performance e ferramentas de automação para aplicações React/Next.js.
Sumário
- Scaffolding de Projeto
- Geração de Componentes
- Análise de Bundle
- Padrões React
- Otimização Next.js
- Acessibilidade e Testes
Scaffolding de Projeto
Gere um novo projeto Next.js ou React com TypeScript, Tailwind CSS e configurações de melhores práticas.
Workflow: Criar Novo Projeto Frontend
-
Execute o scaffolder com o nome e template do projeto:
python scripts/frontend_scaffolder.py my-app --template nextjs -
Adicione funcionalidades opcionais (auth, api, forms, testing, storybook):
python scripts/frontend_scaffolder.py dashboard --template nextjs --features auth,api -
Navegue até o projeto e instale as dependências:
cd my-app && npm install -
Inicie o servidor de desenvolvimento:
npm run dev
Opções do Scaffolder
| Opção | Descrição |
|---|---|
--template nextjs |
Next.js 14+ com App Router e Server Components |
--template react |
React + Vite com TypeScript |
--features auth |
Adicionar autenticação NextAuth.js |
--features api |
Adicionar React Query + cliente de API |
--features forms |
Adicionar React Hook Form + validação Zod |
--features testing |
Adicionar Vitest + Testing Library |
--dry-run |
Pré-visualizar arquivos sem criá-los |
Estrutura Gerada (Next.js)
my-app/
├── app/
│ ├── layout.tsx # Layout raiz com fontes
│ ├── page.tsx # Página inicial
│ ├── globals.css # Tailwind + variáveis CSS
│ └── api/health/route.ts
├── components/
│ ├── ui/ # Button, Input, Card
│ └── layout/ # Header, Footer, Sidebar
├── hooks/ # useDebounce, useLocalStorage
├── lib/ # utils (cn), constants
├── types/ # interfaces TypeScript
├── tailwind.config.ts
├── next.config.js
└── package.json
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.
- 9d ago First seen · 476 lines · 59 tokens per session scan A fcec63ccdccf
senior-frontend is a skill published in the GitHub repository ricneves-ai/flowgrammers-skills (112 stars, last pushed 3mo ago), licensed MIT. It adds 59 tokens to every session and 2,989 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
custom-features
Author a TanStack Table v9 feature plugin across every FeatureMap and API installation surface: state, options, column definitions, table, column, row, cell, header, row-model functions/caches, defaults, prototypes, and table/row/column instance data lifecycles. Load for initTableInstanceData, resetTableInstanceData…
frontend-conventions
Coding conventions, architecture patterns, and testing rules for the SkillHub React frontend. Ensures agents follow Feature-Sliced Design and use the generated OpenAPI types.
fast-typescript-check
Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…
typescript-react
Apply, review, and explain React conventions from the TypeScript Style Guide. Use automatically for TypeScript and TSX tasks involving prop-derived state, prop typing, component responsibilities, data flow, compound components, or client and server state.
typescript-rules
React/TypeScript frontend development rules including type safety, component design, state management, and error handling. Use when implementing React components, TypeScript code, or frontend features.
coding-standards
A set of general coding standards and practical patterns for TypeScript, JavaScript, React, and Node.js. It covers readable naming, simple designs, avoiding repetition, and delaying unnecessary features.