Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计通过

dart-idiomatic-usage飞镖惯用用法

Agent Skill

dart-idiomatic-usage 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,616

周安装

66

GitHub Stars

63

下载量

517
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dart-lang/skills --skill dart-idiomatic-usage

简介

dart-idiomatic-usage 帮助开发者写出符合 Dart 语言习惯的代码,提升可读性与性能表现。

  • 适用于字符串拼接、集合初始化、类型转换等常见操作的重构优化场景。
  • 提供基于官方 Effective Dart 规范的模板,推荐使用相邻字符串拼接和 $ 插值而非 + 运算符。
  • 使用前请确认目标 Dart 版本(建议 2.17+),旧版本可能不支持某些现代语法糖。
  • 涉及复杂表达式时应优先保证清晰性,避免过度压缩导致调试困难。

SKILL.md

Writing Idiomatic Dart Collections and Strings

Contents

String Composition

Follow these practices to compose strings efficiently and readably.

  • Use adjacent strings for concatenation: Do not use the + operator to concatenate string literals. Place them next to each other to form a single string.
  • Prefer string interpolation: Use $variable or ${expression} to compose strings and values instead of concatenation (+).
  • Omit unnecessary curly braces: Use $identifier instead of ${identifier} when interpolating a simple identifier that is not immediately followed by alphanumeric text.

Examples

Good:

// Adjacent strings
raiseAlarm(
  'ERROR: Parts of the spaceship are on fire. Other '
  'parts are overrun by martians. Unclear which are which.',
);

// Interpolation without unnecessary braces
var greeting = 'Hi, $name! I love your ${decade}s costume.';

Bad:

// Do not use + for literals or variables
raiseAlarm(
  'ERROR: Parts of the spaceship are on fire. Other ' +
  'parts are overrun by martians. Unclear which are which.',
);

var greeting = 'Hi, ' + name + '! I love your ' + decade.toString() + 's costume.';
var badBraces = 'Hi, ${name}!';

Collection Initialization

Leverage Dart's built-in syntax for creating and structuring collections.

  • Use collection literals: Instantiate lists, maps, and sets using [], {}, and <Type>{} instead of their unnamed constructors (e.g., Map(), Set()).
  • Use spread and control flow operators: Build dynamic collections using the spread operator (..., ...?) and collection if/for rather than imperative add() or addAll() calls.

Examples

Good:

var points = <Point>[];
var addresses = <String, Address>{};

var arguments = [
  ...options,
  command,
  ...?modeFlags,
  for (var path in filePaths)
    if (path.endsWith('.dart')) path.replaceAll('.dart', '.js'),
];

Bad:

var addresses = Map<String, Address>();

var arguments = <String>[];
arguments.addAll(options);
arguments.add(command);
if (modeFlags != null) arguments.addAll(modeFlags);

Collection Operations

Optimize collection querying and iteration.

  • Use .isEmpty and .isNotEmpty: Never check if a collection's .length is 0 or > 0. The Iterable contract does not guarantee constant-time length calculations.
  • Avoid Iterable.forEach() with function literals: Use standard for-in loops when iterating over sequences. Reserve forEach() for passing existing function tear-offs (e.g., people.forEach(print)).
  • Use whereType<T>(): Filter collections by type using the built-in whereType<T>() method rather than where((e) => e is T).

Examples

Good:

if (lunchBox.isEmpty) return 'so hungry...';

for (final person in people) {
  process(person);
}

var ints = objects.whereType<int>();

Bad:

if (lunchBox.length == 0) return 'so hungry...';

people.forEach((person) {
  process(person);
});

var ints = objects.where((e) => e is int).cast<int>();

Type Casting in Collections

Minimize the use of .cast<T>(), as it creates a lazy collection that checks the element type on *every operation*, degrading performance.

  • Create with the correct type: Define the collection with the correct generic type at instantiation.
  • Eagerly cast using List.from(): If you must convert a collection and will access most of its elements, use List<T>.from(iterable) or Map<K, V>.from(map) to eagerly cast the elements once.
  • Preserve types with .toList(): Use .toList() when you want to copy an iterable while preserving its original type. Use List.from() only when intentionally changing the type.

Examples

Good:

// Eager cast
var stuff = <dynamic>[1, 2];
var ints = List<int>.from(stuff);

// Map with explicit type
var reciprocals = stuff.map<double>((n) => n * 2);

Bad:

// Lazy cast (performance hit on every access)
var stuff = <dynamic>[1, 2];
var ints = stuff.toList().cast<int>();

var reciprocals = stuff.map((n) => n * 2).cast<double>();

Workflow: Refactoring Legacy Collections

When updating legacy Dart code to modern standards, follow this sequential checklist.

Task Progress

  • Step 1: Replace Constructors. Scan for Map(), Set(), and List() (if applicable). Replace with <K, V>{}, <T>{}, and <T>[].
  • Step 2: Eliminate .length checks. Regex search for .length == 0, .length > 0, .length!= 0. Replace with .isEmpty or .isNotEmpty.
  • Step 3: Flatten imperative builds. Identify sequential .add() and .addAll() calls on a newly instantiated collection. Rewrite using ..., if, and for inside the collection literal.
  • Step 4: Remove .cast<T>(). Search for .cast<.

- If applied after .toList(), replace with List<T>.from(). - If applied after .where(), replace with .whereType<T>(). - If applied after .map(), add the generic type to the map call: .map<T>(...).

  • Step 5: Run validator -> review errors -> fix. Run dart analyze to ensure no type promotion or syntax errors were introduced during refactoring.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.63%
按下载量换算205

Claude

29.86%
按下载量换算154

Cursor

17.73%
按下载量换算92

Gemini CLI

10.13%
按下载量换算52

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills