From flutter-slipstream
Looks up exact Dart/Flutter pub package APIs from the local cache, showing up-to-date signatures for unfamiliar packages or version mismatches.
How this skill is triggered — by the user, by Claude, or both
Slash command
/flutter-slipstream:slipstream-packagesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Training-data summaries for pub packages are often subtly out-of-date: incorrect
Training-data summaries for pub packages are often subtly out-of-date: incorrect
parameter names, missing required/optional distinctions, wrong constructor
shapes, renamed or removed APIs. The packages tools read directly from the
local pub cache — exact signatures, always matches pubspec.lock, no network
required.
package_summary(project_directory, package) — always start here. Returns
version, entry-point import, library list, and exported name groups. Often
enough to confirm the right import path and top-level names.library_stub(project_directory, package, library_uri) — full public API for
one library as Dart signatures (no bodies, no private members). Use when you
need exact constructor shapes, named parameter names, or return types.class_stub(project_directory, package, library_uri, class) — single class
stub including inherited and mixin-contributed members. Use when you know
exactly which class you need.project_directory is the absolute path to the Dart/Flutter project (the
directory containing pubspec.yaml). Run dart pub get first if
.dart_tool/package_config.json is missing.
Constants values are not shown in stubs.
npx claudepluginhub devoncarew/slipstream --plugin flutter-slipstreamGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.