Find failing checks on a Flutter PR and locate the corresponding LUCI log URLs.
npx skills add https://github.com/flutter/flutter --skill flutter-pr-checks-finder
gh (GitHub CLI) must be installed and authenticated. If not in your PATH, check common locations like /opt/homebrew/bin/gh on macOS or C:\Program Files\GitHub CLI\gh.exe on Windows.curl or similar tool to fetch raw logs from LUCI.You can use the gh CLI if it's installed and authenticated, or use direct HTTP requests to the GitHub API as a fallback.
gh CLI (Preferred)Run the following command to list checks:
gh pr checks <PR_NUMBER>
If gh is not available, you can use read_url_content or a similar method to interact with the public GitHub API:
Make an HTTP request to: https://api.github.com/repos/flutter/flutter/pulls/<PR_NUMBER>
Extract the head.sha field.
Make an HTTP request to: https://api.github.com/repos/flutter/flutter/commits/<PR_SHA>/check-runs
Parse the JSON response. CRITICAL: You must handle pagination to avoid missing failures! Check the total_count field. If it is greater than the number of items in the check_runs array (typically capped at 100 or what you set with per_page), make additional HTTP requests by appending ?per_page=100&page=<N> to the URL for each subsequent page until all check runs are fetched. Identify all checks that have failed (i.e., where conclusion is failure).
Identify all checks that have failed.
For each failing check:
flutter-dashboard link typically appears as "View more details on flutter-dashboard" at the bottom of the check view on GitHub.Example LUCI URL structure: https://ci.chromium.org/ui/p/flutter/builders/try/<Builder Name>/<Build Number>/overview
?format=raw to the log URL or by following the pattern: https://logs.chromium.org/logs/flutter/buildbucket/cr-buildbucket/<Build ID>/+/u/<Step Name>/stdout?format=rawcurl or similar tool to fetch the content of the raw log URL.> [!NOTE]
> Step names can be very specific and hard to guess. This section documents patterns to help find them.
flutter_drone Recipeanalyze, test_general) as specified in [.ci.yaml (root)][ci-yaml-root].run test.dart for <shard> shard and subshard <subshard>subshard is not specified, it defaults to None.Linux analyze (shard: analyze, no subshard), the URL step name is run_test.dart_for_analyze_shard_and_subshard_None.builder.py & Related Recipesflutter/engine repository (or recipes repository) and used to execute builds and tests according to target JSON configurations in the [builders folder][builders-folder] directory.test: .test: in the JSON file, the recipe might still add the prefix again (e.g., test:_test:_Check_formatting).tester.pyRun <shard> tests or Run <shard> <subshard> tests.If guessing fails, find the exact test and task names in the engine configuration:
config_name property.tests array and the specific tasks listed within them.If read_url_content fails with 404 on guessed step names, you may need to find the step name from the LUCI overview page or other sources.
[cocoon]: https://github.com/flutter/cocoon
[recipes]: https://github.com/flutter/recipes
[ci-yaml-root]: ../../../.ci.yaml
[ci-yaml-engine]: ../../../engine/src/flutter/.ci.yaml
[builders-folder]: ../../../engine/src/flutter/ci/builders/
Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take flutter/flutter-pr-checks-finder from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
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.