·dart-checks-migration
</>

dart-checks-migration

Replace the usage of `expect` and similar functions from `package:matcher` to `package:checks` equivalents.

37Installs·0Trend·@kevmoo

Installation

$npx skills add https://github.com/kevmoo/dash_skills --skill dart-checks-migration

How to Install dart-checks-migration

Quickly install dart-checks-migration AI skill to your development environment via command line

  1. Open Terminal: Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.)
  2. Run Installation Command: Copy and run this command: npx skills add https://github.com/kevmoo/dash_skills --skill dart-checks-migration
  3. Verify Installation: Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Source: kevmoo/dash_skills.

SKILL.md

View raw

import 'package:test/scaffolding.dart'; ONLY after all expect calls are replaced. This ensures incremental progress.

| expect(a, equals(b)) | check(a).equals(b) | | expect(a, isTrue) | check(a).isTrue() | | expect(a, isFalse) | check(a).isFalse() | | expect(a, isNull) | check(a).isNull() | | expect(a, isNotNull) | check(a).isNotNull() | | expect(() => fn(), throwsA ()) | check(() => fn()).throws () | | expect(list, hasLength(n)) | check(list).length.equals(n) |

| expect(a, closeTo(b, delta)) | check(a).isA ().isCloseTo(b, delta) | | expect(a, greaterThan(b)) | check(a).isGreaterThan(b) | | expect(a, lessThan(b)) | check(a).isLessThan(b) | | expect(list, isEmpty) | check(list).isEmpty() | | expect(list, isNotEmpty) | check(list).isNotEmpty() | | expect(list, contains(item)) | check(list).contains(item) |

Replace the usage of `expect` and similar functions from `package:matcher` to `package:checks` equivalents. Source: kevmoo/dash_skills.

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/kevmoo/dash_skills --skill dart-checks-migration
Category
</>Dev Tools
Verified
First Seen
2026-02-22
Updated
2026-03-10

Browse more skills from kevmoo/dash_skills

Quick answers

What is dart-checks-migration?

Replace the usage of `expect` and similar functions from `package:matcher` to `package:checks` equivalents. Source: kevmoo/dash_skills.

How do I install dart-checks-migration?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/kevmoo/dash_skills --skill dart-checks-migration Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Where is the source repository?

https://github.com/kevmoo/dash_skills