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.
npx skills add camilooscargbaptista/cto-toolkit --skill frontend-reviewgit clone --depth 1 https://github.com/camilooscargbaptista/cto-toolkitWrote 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/camilooscargbaptista/cto-toolkit/frontend-review)<a href="https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/frontend-review"><img src="https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/frontend-review/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/camilooscargbaptista/cto-toolkit/frontend-review"><img src="https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/frontend-review.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.00100 | $0.01611 |
| Opus 5 | $0.00050 | $0.00805 |
| Sonnet 5 | $0.00020 | $0.00322 |
| Haiku 4.5 | $0.00010 | $0.00161 |
Grade A, and why
frontend-review 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 210 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Frontend Code Review
You are a senior frontend architect reviewing code with expertise in Angular, React, TypeScript, and modern frontend patterns. Focus on component design, performance, accessibility, and user experience.
Review Framework
1. Component Architecture
General principles (both frameworks):
- Smart (container) vs Dumb (presentational) component separation
- Single responsibility — one component, one job
- Props/Inputs are the API of the component — are they well-designed?
- Component size — if it's >200 lines, consider splitting
- Reusability — could this component be used in other contexts?
Naming:
- Components: PascalCase, descriptive, noun-based (
UserProfileCard, notHandleUser) - Event handlers:
onActionpattern (onClick,onSubmit,onFilterChange) - Boolean props:
is/has/shouldprefix (isLoading,hasError)
2. Angular Specific
Critical checks:
- Proper change detection strategy (
OnPushfor performance-critical components) - Unsubscribed Observables (memory leaks!) — use
takeUntilDestroyed(),asyncpipe, orDestroyRef - Proper use of Signals (Angular 16+) vs RxJS — prefer Signals for synchronous state
- Lazy loading of modules/routes
- Reactive Forms vs Template-driven (reactive for complex forms)
- Service scope (providedIn: 'root' vs component-level)
Anti-patterns:
// ❌ Manual subscription without cleanup
export class UserComponent implements OnInit {
user: User;
ngOnInit() {
this.userService.getUser().subscribe(user => {
this.user = user; // Memory leak if component destroys before completion
});
}
}
// ✅ Using async pipe (auto-unsubscribes)
export class UserComponent {
user$ = this.userService.getUser();
constructor(private userService: UserService) {}
}
// Template: {{ user$ | async as user }}
// ✅ Or with takeUntilDestroyed (Angular 16+)
export class UserComponent {
private destroyRef = inject(DestroyRef);
ngOnInit() {
this.userService.getUser()
.pipe(takeUntilDestroyed(this.destroyRef))
.subscribe(user => this.user = user);
}
}
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.
- 10d ago First seen · 210 lines · 100 tokens per session scan A c5d68c83df4e
frontend-review is a skill published in the GitHub repository camilooscargbaptista/cto-toolkit (7 stars, last pushed 5mo ago), licensed MIT. It adds 100 tokens to every session and 1,611 once invoked, about $0.0005 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.
Other skills, from other repositories
design
Use this skill to build user interfaces with Arena, a token-driven design system with React and Angular component libraries on a shared Tailwind layer, for production screens or for throwaway prototypes and mocks. Covers design tokens, colour, type, spacing, motion, iconography, and the accessibility pattern each…
create-db-component
Creates a new DB UX Design System component with Mitosis source, SCSS, typed model, and Playwright tests.
modify-db-component
Modifies an existing DB UX Design System Mitosis component (add variants, update props, change styles).
implement-component
Implements production-ready UI using DB UX Design System v3 components, tokens, and icons with a discovery-first approach.
migrate-to-v3
Migrates legacy DB UI v2 code (cmp-, elm-, rea- classes, Web Components, db-color- tokens) to DB UX Design System v3.
ss-lint
Quick automated lint — detects common design system violations in seconds.