write-specs-frontend

write-specs-frontend is a skill for Claude Code, Codex from Cratis/VerticalSlices. It costs 79 tokens per session (941 once invoked), scanned A, a copy of write-specs-frontend, MIT.

A testing guide for the React and TypeScript parts of a Cratis application, such as view models, helper functions, and components. React is a library for building user interfaces; TypeScript adds type checking to JavaScript.

In plain words
What is it for?
Writing Vitest specs with Sinon and Chai for view-model state, filtering, sorting, selection, wizard steps, validation, command handling, and pure helper functions.
Why use it?
It gives frontend tests a consistent structure and focuses them on visible behavior, state changes, validation, and command handling. It also keeps framework-level tests separate from application tests.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/cratis/verticalslices/write-specs-frontend
Any agent
npx skills add Cratis/VerticalSlices --skill write-specs-frontend
Clone the repo
git clone --depth 1 https://github.com/Cratis/VerticalSlices

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 write-specs-frontend

README.md
[![agentmods](https://agentmods.dev/badge/skills/cratis/verticalslices/write-specs-frontend.svg)](https://agentmods.dev/skills/cratis/verticalslices/write-specs-frontend)
Your own site
<a href="https://agentmods.dev/skills/cratis/verticalslices/write-specs-frontend"><img src="https://agentmods.dev/badge/skills/cratis/verticalslices/write-specs-frontend.svg" alt="Measured on agentmods" height="20"></a>
Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 941 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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 $0.00079 $0.00941
Opus 5 $0.00039 $0.00470
Sonnet 5 $0.00016 $0.00188
Haiku 4.5 $0.00008 $0.00094

Measured 4d ago against content hash 025c6f9cd358, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

write-specs-frontend 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 4d 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.

Origin

This is a copy

100% identical to write-specs-frontend — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.ai/skills/write-specs-frontend/SKILL.md · 94 lines

How it starts

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

Write specs for a slice's React/TypeScript surface — view models, helpers, and narrow component behavior. Full conventions live in .ai/rules/frontend-testing.md; this skill is the application frontend peer to write-specs (backend). For framework @cratis/* package specs (the given() helper), use cratis-specs-typescript instead.

Placement & naming

Specs live next to the unit, snake_case so the path reads as a sentence:

<Slice>/
  <Subject>.ts
  for_<Subject>/
    when_<context>/
      and_<extra_context>.ts

describe('when ...') names the scenario, not the class; it('should ...') uses spaces; each it asserts one observable outcome.

Stack

Vitest (describe/beforeEach/it) · SinonJS (sinon.stub() / createStubInstance) · Chai .should fluent — never expect().

What to cover

  • View models (the primary target): state transitions, computed getters, filtering/sorting/selection, wizard steps, validation state, command-value derivation.
  • Command orchestration outside CommandDialog: unauthorized / invalid / exception / success handling.
  • Pure helpers: parsing, formatting, grouping, boundary cases.
  • Component rendering only when markup, disabled state, or wrapper behavior is the point.

Don't spec: generated Cratis proxies, PrimeReact/framework internals, CSS pixel-perfection, snapshots, or trivial presentational pass-throughs.

View-model spec (default)

View models are plain classes constructible directly — no React hooks; no direct window/localStorage/timers/network (inject the abstraction); derived values are getters.

import { describe, beforeEach, it } from 'vitest';
import { CandidatesViewModel } from '../../CandidatesViewModel';

describe('when filtering by search text', () => {
    let viewModel: CandidatesViewModel;

    beforeEach(() => {
        viewModel = new CandidatesViewModel();
        viewModel.setSearch('senior');
    });

    it('should keep only matching candidates', () =>
        viewModel.filteredItems.should.have.lengthOf(1));
});

Read the full file on GitHub · 94 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. 4d ago First seen · 94 lines · 79 tokens per session scan A 025c6f9cd358

Subscribe to this mod's changes

write-specs-frontend is a skill published in the GitHub repository Cratis/VerticalSlices (2 stars, last pushed yesterday), licensed MIT. It adds 79 tokens to every session and 941 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to write-specs-frontend, differing in 6 lines, and is treated as a copy.

Related

Other skills, from other repositories

write-specs-frontend

Use this skill to write specs for the React/TypeScript surface of a Cratis APPLICATION slice — view models, helpers, and component behavior (Vitest + Mocha-style describe/it + Sinon + Chai .should). The frontend peer to write-specs (backend). For framework @cratis/ package specs use cratis-specs-typescript instead.

Cratis/AI · 79 tokens

cratis-command

Step-by-step guidance for creating a Cratis Arc command — [Command] record, Handle() method, CommandValidator, proxy generation, and React .use() hook with CommandDialog. Use when adding or creating a command, wiring up a form or button to the backend, working with IEventLog, CommandResult, CommandValidator…

Cratis/AI · 80 tokens

cratis-react-page

Step-by-step guidance for building a React page in a Cratis Arc application — DataPage lists, CommandDialog toolbar actions, confirmation and busy-indicator dialogs, row selection, details components, observable queries, and MVVM. Use when building or modifying a page that lists/displays data, adding a table, wiring…

Cratis/AI · 93 tokens

cratis-specs-csharp

Step-by-step guidance for writing C# specs in Cratis with BDD Specification by Example — the Establish/Because/should pattern, for/when/and folder hierarchy, reusable given/ contexts, NSubstitute mocking, and the in-process scenario family. Use when writing C# unit or integration specs or structuring the for/when/and…

Cratis/AI · 101 tokens

new-vertical-slice

Use this skill when asked to implement a new feature, command, query, slice, or screen in a Cratis-based project. Guides the full end-to-end workflow: C# backend → Debug+Release build → specs → React frontend → quality gates.

Cratis/AI · 57 tokens

query-paging

Add server-side paging and sorting to a Cratis read-model query — return IQueryable for one-shot paging, ISubject > for observable + paged results, and consume them from React with useWithPaging. Use when a list query can grow large enough that returning all rows is wasteful, or needs server-side sorting.

Cratis/AI · 72 tokens