Evals

Browse all eval fixtures in your project.

801-create-component-no-launch-config

Build an accessible `ToggleSwitch` component with `label`, `checked`, `onChange`, and optional `disabled` props, exported from `src/components/ToggleSwitch.tsx`.

EVAL.tsPROMPT.mdpackage.json
802-create-component

Build a `ProfileCard` with avatar (or initials), name, title, optional tags, and action buttons. Export default from `src/components/ProfileCard.tsx`.

EVAL.tsPROMPT.mdpackage.json
803-edit-component

Update `ReviewCard` (`src/components/ReviewCard.tsx`) to accept `date` and optional `onReport` (render a Report button when provided).

EVAL.tsPROMPT.mdpackage.json
804-write-story-for-existing-component

Add stories in `stories/AlertBanner.stories.tsx` for the existing `AlertBanner` component.

EVAL.tsPROMPT.mdpackage.json
805-non-visual-refactor

Rename the `formatRating` helper in `src/utils/formatRating.ts` to `formatStars` and update all usages. This is a pure rename; no behavior change.

EVAL.tsPROMPT.mdpackage.json
806-browse-request

Show me all the `ReviewCard` states we have in Storybook.

EVAL.tsPROMPT.mdpackage.json
807-docs-request

What props does the `ReviewCard` component accept, and how do I use it?

EVAL.tsPROMPT.mdpackage.json
808-shared-infra-fallback

Change the accent color token in `src/theme/colors.ts` from blue (`#2563eb`) to violet (`#7c3aed`). It is shared styling infrastructure used across our components.

EVAL.tsPROMPT.mdpackage.json
810-fix-failing-tests

Run the story tests for the Button component and fix any issues you find.

EVAL.tsPROMPT.mdpackage.json
811-fix-a11y-violations

Run the Storybook story tests for the Button component and fix any accessibility issues you find.

EVAL.tsPROMPT.mdpackage.json
812-first-story-empty-project

We just added Storybook to this project, but there are no stories yet. Write stories for the existing `Button` component (`src/components/Button.tsx`).

EVAL.tsPROMPT.mdpackage.jsonvitest.config.tsvitest.storybook.config.ts
813-monorepo-leaf-create-component

Create a `Callout` component in the `@acme/ui` package (`packages/ui/src/components/Callout.tsx`) with `info`, `warning`, and `error` variants and a `children` prop, following the package's existing c...

EVAL.tsPROMPT.mdpackage.json
820-init-no-storybook

Set up Storybook for this project so I can develop and preview the components in `src/components` in isolation.

EVAL.tsPROMPT.mdpackage.json
821-upgrade-from-sb9

Upgrade Storybook in this project to the latest version.

EVAL.tsPROMPT.mdpackage.json
822-upgrade-from-stable

Upgrade Storybook in this project to the latest version.

EVAL.tsPROMPT.mdpackage.json
901-create-component-atom-reshaped-concise

Build an accessible `ToggleSwitch` component with `label`, `checked`, `onChange`, and optional `disabled` props, exported from `src/components/ToggleSwitch.tsx`.

EVAL.tsPROMPT.mdpackage.json
901-create-component-atom-reshaped-detailed

Create an accessible `ToggleSwitch` component with props `label: string`, `checked?: boolean`, `onChange?: (checked: boolean) => void`, and `disabled?: boolean`, exported from `src/components/ToggleSw...

EVAL.tsPROMPT.mdpackage.json
901-create-component-atom-reshaped-explicit-stories

Also add Storybook stories in `stories/ToggleSwitch.stories.tsx` that cover on, off, and disabled states.

EVAL.tsPROMPT.mdpackage.json
902-create-component-composite-reshaped-concise

Build a `ProfileCard` with avatar (or initials), name, title, optional tags, and action buttons. Export default from `src/components/ProfileCard.tsx`.

EVAL.tsPROMPT.mdpackage.json
902-create-component-composite-reshaped-detailed

Create a `ProfileCard` composed of avatar, name, title, optional tags, and action buttons, exported from `src/components/ProfileCard.tsx`. Requirements: - Support `name`, `title`, `avatarUrl?`, `tags...

EVAL.tsPROMPT.mdpackage.json
902-create-component-composite-reshaped-explicit-stories

Also add Storybook stories in `stories/ProfileCard.stories.tsx` covering: avatar provided, avatar missing (initials), with tags, and with actions.

EVAL.tsPROMPT.mdpackage.json
Show more (25 remaining)