Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

dart-language-syntax飞镖语言语法

Agent Skill

dart-language-syntax 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,717

周安装

73

GitHub Stars

61

下载量

602
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dart-language-syntax(飞镖语言语法)
来源仓库:https://github.com/dart-lang/skills
仓库路径:skills/dart-language-syntax
安装命令:
npx skills add https://github.com/dart-lang/skills --skill dart-language-syntax
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dart-lang/skills --skill dart-language-syntax

简介

dart-language-syntax 指导如何编写符合 Dart 语言规范的变量声明、函数定义与泛型用法。

  • 适用于重构遗留代码、启用严格类型检查或学习现代 Dart 语法的开发者。
  • 推荐使用 final 和 const 增强不可变性,并通过 var 配合明确类型推断提升简洁性。
  • 使用前请确认 analysis_options.yaml 中启用了 strict-casts 等严格规则。
  • 涉及泛型时应避免 dynamic,改用 Object? 或具体类型以提升编译期安全性。

SKILL.md

Writing Idiomatic Dart

Contents

Variables and State Management

Manage state and variable declarations using strict mutability and type inference rules.

  • Prefer var: Use var for local variables when the assigned type is obvious (e.g., var name = 'Bob';). Use explicit types when the type is not immediately clear from the initializer.
  • Enforce Immutability: Use final for variables that should not be reassigned after initialization. Use const for compile-time constants and to create canonicalized, immutable object instances.
  • Leverage late: Use the late modifier to defer initialization of non-nullable variables until their first use, especially for expensive computations or when initialization requires access to this.
  • Implement Wildcards: Use the wildcard variable _ (requires Dart 3.7+) to discard unused values in local declarations, closures, or pattern matching without triggering unused variable warnings.

Functions and Closures

Structure functions for maximum composability and minimal boilerplate.

  • Use Arrow Syntax: Condense single-expression functions using the => operator.
  • Prefer Tear-offs: Pass function references directly (tear-offs) instead of wrapping them in redundant anonymous closures (e.g., use list.forEach(print) instead of list.forEach((e) => print(e))).
  • Implement Generators: Use sync* to lazily generate Iterable sequences and async* to generate Stream sequences. Yield values using yield or delegate to other generators using yield*.
  • Define Named Parameters: Use named parameters ({required Type name}) for functions with boolean flags or multiple arguments to improve call-site readability.

Records and Pattern Matching

Eliminate boilerplate data classes and complex conditional logic using records and patterns.

  • Return Multiple Values: Use records (Type, Type) to return multiple values from a function without defining a dedicated class.
  • Destructure Assignments: Master pattern matching to destructure records, lists, and objects directly into local variables.
  • Use Switch Expressions: Replace complex if-else chains with switch expressions. Leverage logical-or patterns (||) and guard clauses (when) to share logic across cases.
  • Validate JSON Declaratively: Use map and list patterns to simultaneously validate structure, check types, and extract data from dynamic JSON payloads.

Generics and Type Safety

Ensure type safety and reusability across collections and custom components.

  • Implement Generics: Use <T> to parameterize classes, methods, and collections.
  • Restrict Type Parameters: Use extends to bound generic types (e.g., <T extends Object> to enforce non-nullability, or <T extends BaseWidget>).
  • Use F-Bounds: Implement self-referential type constraints when a class must interact with instances of its own exact type (e.g., class Node<T extends Node<T>>).
  • Extend Functionality: Use extension methods and extension types to add utility functions to existing generic or concrete classes without subclassing.

Workflow: Refactoring to Idiomatic Dart

Use this checklist to upgrade legacy Dart code to modern, idiomatic Dart 3+ standards.

  • Task Progress: Variable Modernization

- Replace explicit types with var for obvious local assignments. - Convert mutable var declarations to final if they are never reassigned. - Replace __ or ___ unused parameters with the standard _ wildcard.

  • Task Progress: Control Flow & Returns

- Replace custom "Tuple" or "Pair" classes with native Records (T1, T2). - Refactor redundant closures into function/method tear-offs. - Convert single-statement function bodies to arrow => syntax.

  • Task Progress: Pattern Matching Integration

- If extracting multiple fields from an object, use object destructuring: var User(:name,:age) = user;. - If validating nested JSON, replace is checks and manual casting with map/list patterns. - If switching over an algebraic data type (sealed class), convert switch statements to exhaustive switch expressions.

  • Run Validator -> Review Errors -> Fix: Run dart analyze and dart format. Resolve any linting errors related to type promotion or exhaustiveness.

Examples

Destructuring Multiple Returns (Records)

Input (Legacy):

class UserInfo {
  final String name;
  final int age;
  UserInfo(this.name, this.age);
}

UserInfo fetchUser() => UserInfo('Dash', 10);
final info = fetchUser();
print(info.name);

Output (Idiomatic):

(String, int) fetchUser() => ('Dash', 10);

// Destructure directly into final variables
final (name, age) = fetchUser();
print(name);

Declarative JSON Validation (Patterns)

Input (Legacy):

if (json is Map<String, Object?> && json.containsKey('user')) {
  var user = json['user'];
  if (user is List<Object> && user.length == 2 && user[0] is String && user[1] is int) {
    var name = user[0] as String;
    var age = user[1] as int;
    print('User $name is $age');
  }
}

Output (Idiomatic):

if (json case {'user': [String name, int age]}) {
  print('User $name is $age');
}

Switch Expressions and Guard Clauses

Implementation:

sealed class Shape {}
class Square implements Shape { final double length; Square(this.length); }
class Circle implements Shape { final double radius; Circle(this.radius); }

double calculateArea(Shape shape) => switch (shape) {
  Square(length: var l) when l > 0 => l * l,
  Circle(:var radius) when radius > 0 => 3.14159 * radius * radius,
  _ => 0.0, // Fallback for invalid dimensions
};

Extension Methods with Generics

Implementation:

extension IterableExtensions<T> on Iterable<T> {
  /// Returns the first element matching the predicate, or null.
  T? firstWhereOrNull(bool Function(T) test) {
    for (final element in this) {
      if (test(element)) return element;
    }
    return null;
  }
}

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.05%
按下载量换算217

Claude

30.02%
按下载量换算181

Cursor

20.09%
按下载量换算121

Gemini CLI

10.19%
按下载量换算61

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills