$21
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionflutter-riverpod-expertExecute the skills CLI command in your project's root directory to begin installation:
Fetches flutter-riverpod-expert from juparave/dotfiles and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate flutter-riverpod-expert. Access via /flutter-riverpod-expert in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
11
total installs
11
this week
0
upvotes
Run in your terminal
11
installs
11
this week
—
stars
You have expert knowledge in Flutter Riverpod state management following 2025 best practices. When the user is working with Riverpod or Flutter state management, apply these patterns and guidelines.
Activate this expertise when the user mentions:
@riverpod annotations and riverpod_generatorselect() to optimize rebuildsImmutable/Computed Values - Use Provider:
String apiKey(Ref ref) => 'YOUR_API_KEY';
int totalPrice(Ref ref) {
final cart = ref.watch(cartProvider);
return cart.items.fold(0, (sum, item) => sum + item.price);
}
Simple Synchronous State - Use NotifierProvider:
class Counter extends _$Counter {
int build() => 0;
void increment() => state++;
void decrement() => state = max(0, state - 1);
}
Async Data with Mutations (PREFERRED 2025) - Use AsyncNotifierProvider:
class TodoList extends _$TodoList {
Future<List<Todo>> build() async {
final repo = ref.watch(todoRepositoryProvider);
return repo.fetchTodos();
}
Future<void> addTodo(String title) async {
state = const AsyncLoading();
state = await AsyncValue.guard(() async {
final repo = ref.read(todoRepositoryProvider);
await repo.createTodo(title);
return repo.fetchTodos();
});
}
Future<void> deleteTodo(String id) async {
// Optimistic update
state = AsyncData(state.value!.where((t) => t.id != id).toList());
try {
await ref.read(todoRepositoryProvider).deleteTodo(id);
} catch (e) {
ref.invalidateSelf(); // Rollback on error
}
}
}
Real-time Streams Only - Use StreamProvider:
Stream<User?> authState(Ref ref) {
return FirebaseAuth.instance.authStateChanges();
}
Key Rule: Prefer AsyncNotifierProvider over FutureProvider/StreamProvider for better consistency and mutation support.
dependencies:
flutter_riverpod: ^2.5.0
riverpod_annotation: ^2.3.0
dev_dependencies:
build_runner: ^2.4.0
riverpod_generator: ^2.4.0
custom_lint: ^0.6.0
riverpod_lint: ^2.3.0
Every provider file needs:
import 'package:riverpod_annotation/riverpod_annotation.dart';
part 'filename.g.dart'; // REQUIRED
class MyProvider extends _$MyProvider {
Future<Data> build() async => fetchData();
}
# Watch mode (RECOMMENDED during development)
dart run build_runner watch -d
# One-time generation
dart run build_runner build --delete-conflicting-outputs
// ❌ BAD: Rebuilds on ANY product change
final product = ref.watch(productProvider);
return Text('\$${product.price}');
// ✅ GOOD: Only rebuilds when price changes
final price = ref.watch(productProvider.select((p) => p.price));
return Text('\$$price');
ref.watch() - Subscribe to changes (use in build):
Widget build(BuildContext context, WidgetRef ref) {
final todos = ref.watch(todoListProvider);
return ListView(...);
}
ref.select() - Subscribe to specific property (optimize rebuilds):
final count = ref.watch(todoListProvider.select((todos) => todos.length));
final isAdult = ref.watch(personProvider.select((p) => p.age >= 18));
ref.read() - One-time read with NO subscription (event handlers only):
onPressed: () {
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
erichowens/some_claude_skills
sickn33/antigravity-awesome-skills
erichowens/some_claude_skills
ajianaz/skills-collection
mattpocock/skills
parcadei/continuous-claude-v3
Registry listing for flutter-riverpod-expert matched our evaluation — installs cleanly and behaves as described in the markdown.
We added flutter-riverpod-expert from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
I recommend flutter-riverpod-expert for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
flutter-riverpod-expert reduced setup friction for our internal harness; good balance of opinion and flexibility.
flutter-riverpod-expert has been reliable in day-to-day use. Documentation quality is above average for community skills.
flutter-riverpod-expert fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Useful defaults in flutter-riverpod-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
flutter-riverpod-expert has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in flutter-riverpod-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
flutter-riverpod-expert is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 39