Skill AI pour Dart
Pack skill complet téléchargement immédiatai-skill-for-dart.txt
Choose how to get it
Start All-Access, from $8.25/mo$99 a year, or $19 a month. 14-day refund on the first charge.
// all-access
You do not download skills. Your AI fetches them.
The KissMySkills connector is a small server your AI chat talks to. Add it once to Claude, ChatGPT, Claude Code or Cursor. From then on, any of our 1,000+ skills is one sentence away.
- 01Add the connector. Settings, Connectors, paste one link. A minute.
- 02Sign in once. The email from your subscription. Nothing installs.
- 03Ask for a skill. "Load Skill AI pour Dart." It arrives in the conversation and your AI answers as that specialist.
Every skill, prompt pack and agent, new releases included. Single files can still be bought and kept. Cancel any time from your account. Compare plans
Secure checkout by Shopify
Add it once. Your AI works like a specialist.
Ajoutez-le à Claude, ChatGPT ou Gemini : votre AI agit comme un spécialiste dans ce domaine.
Téléchargement instantané · Garantie de remboursement sous 30 jours. Payez une seule fois, gardez-le pour toujours — sans abonnement. Rédigé et testé par nos soins, jamais récupéré sur GitHub. Politique de remboursement
Ask it something hard.
Des questions avant d’acheter ?
Écrivez-nous et une personne vous répond, généralement le jour même. Pas un robot, pas une file de tickets.
hello@kissmyskills.comTrademarks of their respective owners. KissMySkills is not affiliated with or endorsed by them.
Vous ne le lisez pas. Votre AI s’en charge.
Ajoutez le fichier de compétences à Claude, ChatGPT ou Gemini une seule fois. Ensuite, il fonctionne comme un spécialiste dans ce domaine, dès le message suivant.
Achetez une seule fois et le fichier vous appartient pour toujours. Ou abonnez-vous à All-Access et laissez le connecteur KissMySkills le charger, ainsi que toutes les autres compétences, dans votre chat sur demande.
// what's inside
Que contient cette compétence ?
- Idiomatic null-safe Dart with records, patterns and sealed classes
- Analyzer and runtime errors explained with the fix and prevention
- Code reviews ordered by impact against Effective Dart
- Package, CLI and test scaffolds with pubspec and analysis_options
Flutter and Dart developers writing apps, CLIs or servers who want a second pair of eyes on every file.
What you're actually buying
Cette compétence Claude/ChatGPT vous fournit un pair programmeur AI en Dart pour votre travail quotidien dans ce langage : elle écrit du Dart idiomatique et compatible avec la null safety, avec des commentaires de documentation, des modèles de données dotés de fromJson et toJson, du code asynchrone avec des Futures, des Streams et des isolates, des suites de tests package:test avec mocktail, ainsi qu’un pubspec.yaml et un analysis_options.yaml prêts à l’emploi pour un nouveau package ou une CLI. Collez une erreur de l’analyseur et vous obtenez sa cause en une ligne, ainsi que la correction.
Elle connaît les records, les patterns, les classes sealed, les modificateurs de classe et les types d’extension de Dart 3, le style Effective Dart, la CLI dart (analyze, format, fix, test, compile), pub et les packages couramment utilisés dans le code Flutter et serveur. Elle n’exécute et ne compile rien sur votre machine ; elle écrit et relit le code, puis vous lancez dart analyze et dart test pour confirmer.
Elle fonctionne de la même manière dans Claude, ChatGPT et Gemini. Un seul achat, téléchargez le fichier, installez-le en moins de 2 minutes, puis collez votre code Dart ou décrivez la fonction dont vous avez besoin. S’associe à Zane, développeur Flutter, la compétence persona ; celle-ci est l’assistant intégré à Dart.
# AI Skill for Dart KissMySkills.com | Install: paste this whole file into Claude Projects (Project instructions), a custom GPT (Instructions), a Gemini Gem, or your AI's system prompt. Then just ask questions the way you normally would. ## Who you are You are a senior Dart developer acting as the user's pair programmer. You know Dart idioms, the core libraries, the pub ecosystem, the analyzer, and how Dart behaves in Flutter apps, command-line tools and server code. You optimise for code that is null-safe, readable, idiomatic and easy to test. You are a helper inside the language, not a job-role persona: you write, review, explain and debug Dart alongside the user. Tone: direct, practical, code first, one-line reason when a choice matters. ## What you know about Dart - Sound null safety: `?`, `!` (use sparingly), `late`, `required` named parameters, `??`, `?.`, `??=`, and promotion rules (locals promote, instance fields do not). - Types: `final` versus `const`, `var` inference, `dynamic` versus `Object?`, generics with bounds, `typedef`, records `(int, String)` with named fields, `switch` expressions, destructuring, `sealed` classes with exhaustive switches, `if-case`. - Class modifiers: `abstract`, `sealed`, `base`, `interface`, `final`, `mixin`, `mixin class`; extension methods and extension types; enhanced enums. - Async: `Future`, `async`/`await`, `Stream`, `async*`, `yield`, `await for`, `Completer`, `StreamController`, `Isolate.run` for CPU-bound work, and why `await` does not block the event loop. - Collections: `List`, `Set`, `Map`, lazy `Iterable`, collection `if`/`for`, spread `...?`, `where`, `map`, `fold`, `expand`, `firstWhere` with `orElse`, `package:collection`. - Tooling: `dart create`, `dart run`, `dart compile exe|js|aot-snapshot`, `dart analyze`, `dart format`, `dart fix --apply`, `dart test`, `dart pub get|add|upgrade|outdated|publish`, `dart doc`. - Layout: `pubspec.yaml` with `environment: sdk:`, `pubspec.lock`, `lib/` versus `lib/src/`, `bin/`, `test/`, `analysis_options.yaml` with `package:lints` or `package:flutter_lints`. - Common packages: `http`, `dio`, `args`, `json_serializable`, `freezed`, `equatable`, `test`, `mocktail`, `shelf`, `riverpod`, `bloc`. - Style: Effective Dart, `///` doc comments, `lowerCamelCase` members, `UpperCamelCase` types, `snake_case` files. - Gotchas: `const` canonicalisation, `==`/`hashCode` pairs, `List.filled` sharing references, integer behaviour on web, `late` errors at runtime, `dynamic` silently disabling analysis. ## Before you answer - Ask for the SDK version (`dart --version`) when the answer depends on records, patterns, sealed classes, extension types or class modifiers. - Ask whether the target is Flutter, CLI, web or server, since platform libraries differ. - Ask for the exact analyzer or runtime error and surrounding code when debugging. - Ask at most 3 questions at a time; if the request is clear, do not ask, just deliver. ## Working scenarios **Write a function, class or data model** You produce idiomatic null-safe Dart with doc comments, `fromJson`/`toJson` for models, `==`/`hashCode` or a `freezed`/`equatable` note, and a short usage example. **Review my code** Numbered review ordered by impact: correctness bugs, null-safety issues, misuse of `!` or `late`, async mistakes (unawaited futures, `await` outside `try`), then Effective Dart style, with a corrected version. **Fix an analyzer or runtime error** "The argument type 'String?' can't be assigned", `LateInitializationError`, a failed promotion. Cause in one line, the fix, how to prevent it. **Async and streams** Concurrent fetches, debouncing, cancellation, stream transforms with `Future.wait`, `StreamController`, `async*` or `Isolate.run`, with a note on where errors surface. **Migrate or modernise** Convert to null safety, replace hand-written classes with records or sealed classes and patterns, list the `dart fix` lints that automate part of it. **Set up a package or CLI** `pubspec.yaml`, folder layout, `analysis_options.yaml`, an `args`-based `bin/main.dart`, and the `dart test` skeleton. **Write tests** `package:test` with `group`, `test`, `setUp`, matchers, and `mocktail` mocks; edge cases called out.
Exemple du fichier réel que vous téléchargerez.
Quatre étapes. N’importe quel chat AI.
- 01Télécharger le fichier
Après le paiement, le lien de téléchargement arrive dans votre boîte de réception. Enregistrez le fichier où vous voulez sur votre appareil.
- 02Ouvrez votre conversation AI
Claude, ChatGPT, Gemini, Grok ou Copilot — celui que vous utilisez déjà.
- 03Collez le contenu du fichier
Insérez-le dans le prompt système, les instructions du projet ou le champ des instructions personnalisées.
- 04Commencez à travailler
Votre AI est maintenant configurée comme spécialiste. Posez-lui n’importe quelle question relevant de son domaine.
Aucune connaissance technique requise. Aucun abonnement. Payez une seule fois, gardez-le pour toujours.
Fonctionne avec tous les principaux chats AI.
Déposez le fichier dans le prompt système de votre AI, les instructions du projet ou les instructions personnalisées. Aucune configuration. Aucun code. Aucune dépendance à un fournisseur.
Questions concernant ce produit
What does the AI Skill for Dart do?+
It makes Claude or ChatGPT act as a Dart AI pair programmer. It writes functions, classes and data models in idiomatic null-safe Dart, explains analyzer and runtime errors, reviews your code against Effective Dart, writes tests with package:test, sets up packages and CLIs, and migrates older Dart to records, patterns and sealed classes.
Does it run or compile Dart for me?+
No. The skill does not execute dart run, dart test or dart compile. It writes and reviews the Dart code and tells you exactly which commands to run, then you confirm with dart analyze and dart test on your machine.
Is this for Flutter or for plain Dart?+
Both. The skill covers the Dart language and core libraries used everywhere, and it asks whether your target is Flutter, a CLI, web or a server so it picks the right platform libraries and packages. For widget and UI questions a Flutter-specific skill is a better fit; for the language itself this is the one.
Which Dart version does it assume?+
It asks for your SDK version whenever a feature depends on it, such as Dart 3 records, pattern matching, sealed classes, class modifiers or extension types, and it marks the version it assumes in each answer. It never invents Dart APIs or lint names.
Which AI tools does this skill work with?+
Works with Claude (recommended), Claude Code, ChatGPT, Gemini and Copilot, and any AI chat that accepts system prompts. Claude Projects gives the best results because it remembers your Dart project layout, packages and coding conventions between chats.
Do I have to read it myself?+
No. The file is written for your AI to read, not for you. Upload it or paste it in once and the AI takes on the role. After that you just ask it questions the way you normally would. You're welcome to open it and read it, but nothing here depends on you doing that.
Is this a physical book?+
No, it's digital. You download it the moment the order goes through and it's yours permanently. The cover is styled like a book because each edition is written and edited as one self-contained piece of work. The reading part is your AI's job, not yours.
Prêt à spécialiser votre AI ?
Un seul fichier à intégrer. Payez une fois, gardez-le pour toujours — fonctionne avec Claude et ChatGPT.
Plus de compétences dans ce domaine
Hana - Skill AI de développeur WordPress
Hana - Skill AI de développeur WordPress
Pack Programmation - les 5 Agents AI Programmation
Pack Programmation - les 5 Agents AI Programmation
Albert - Agent AI de revue de code
Albert - Agent AI de revue de code
Max - Skill AI de développeur full stack
Max - Skill AI de développeur full stack