mcpbeat

Check Readiness

flutter/check-readiness

Run this skill to check if the repository is ready for new work. Use this skill whenever the user asks to "check readiness", "see if we are ready to start work", or when starting a new task in the camera_android_camerax package.

4k tokens
context cost
the whole folder, loaded on every use
7
files
instructions only
0
copies elsewhere
how many repositories repackaged it
5266
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/flutter/packages --skill check-readiness

What comes with it

13 787 bytes besides the instruction
dart_test.yaml
evals/evals.json
lib/check_readiness.dart
pubspec.yaml
test/check_test.dart
tool/check.dart

The instruction itself

3 sections, as written by the author

Check Readiness

This skill verifies that the local environment is properly configured and clean before starting new work in the camera_android_camerax package.

Instructions

Run the bundled verification script (tool/check.dart) to perform the automated environment checks:

dart run .agents/skills/check-readiness/tool/check.dart

Handling the Results

  • If the script succeeds: Inform the user that the environment is clean, dependencies are resolved, and it is ready for new work.
  • If the script fails: Explain exactly which check failed (e.g., git is not clean, a symlink is broken, Flutter is missing from PATH) and offer to help resolve it.

How to use it

Copy the folder

Take flutter/check-readiness from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.