# 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.

- Skill: `flutter/check-readiness` (Agent Skill, multi-file: 7 files)
- Install (CLI): `npx skillmds@latest add flutter/check-readiness`
- Raw SKILL.md: https://api.skillmd.com/api/skills/flutter/check-readiness/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: flutter (https://skillmd.com/u/flutter)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/flutter/check-readiness

---

# 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](tool/check.dart)) to perform the automated environment checks:
```bash
dart run .agents/skills/check-readiness/tool/check.dart
```

### Handling the Results
1. **If the script succeeds:** Inform the user that the environment is clean, dependencies are resolved, and it is ready for new work.
2. **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.

