一键导入
update-examples-dependencies
Update all the `./examples` dependencies to the latest repository/third-party versions and fix any compiler or analysis issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Update all the `./examples` dependencies to the latest repository/third-party versions and fix any compiler or analysis issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Highly optimized Flutter UI bindings and GPU rendering for reactive signals.
Comprehensive hook utility functions integrating reactive signals seamlessly with flutter_hooks.
Comprehensive reactive state hooks for integration with flutter_hooks.
Standardized compiler diagnostics, static analysis lints, and automated IDE quick-fixes.
Use when you need to convert / rewrite existing HTML (from a file or url) into Jaspr code.
Use when working in a Jaspr project, on Jaspr components, or other Jaspr-related tasks. Contains fundamentals of writing Jaspr components and using HTML components.
| name | update-examples-dependencies |
| description | Update all the `./examples` dependencies to the latest repository/third-party versions and fix any compiler or analysis issues. |
This skill provides a systematic and automated workflow to update dependencies in all Dart/Flutter examples located in the ./examples directory and fix any code compilation, deprecation, or linter warnings that arise.
Ensure all ./examples packages are upgraded to target the latest core package versions (e.g. signals) of the repository, run a full pub upgrade on third-party dependencies to prevent stale locks, and repair any broken code or deprecation warnings under analysis.
Locate the helper script at scripts/update_dependencies.dart or within this skill's scripts directory:
dart run .agents/skills/update-examples-dependencies/scripts/update_dependencies.dart
This script will:
packages/signals/pubspec.yaml to detect the current package version of signals.pubspec.yaml files inside ./examples/.signals dependency version constraint with the exact latest version constraint (e.g., ^6.3.1).flutter pub upgrade or dart pub upgrade on each example package.After upgrading individual package pubspecs, link the workspace packages and ensure they resolve successfully by running:
melos bootstrap
With all packages upgraded, run static analysis to check for breaking changes or new warnings:
melos run analyze
For any deprecations (such as v6 to v7 API transitions or external package changes):
migration-6-to-7 if migrating to v7).melos run analyze succeeds cleanly.