Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

dart-documentation飞镖文档

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

1,552

周安装

66

GitHub Stars

63

下载量

544
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于辅助文档、README、Markdown 和内容稿件的整理与改写。

  • 适合提炼结构、补齐章节、统一术语或检查链接。
  • 使用时应保留项目已有事实、命令和路径,不写未确认信息。
  • 涉及对外文案时需控制语气,避免过度营销或夸大能力。
  • dart-documentation 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Documenting Dart Code

Contents

Core Principles

  • Use /// exclusively: Document members and types using ///. Never use /**... */ block comments for documentation.
  • Use // for internal comments: Use standard // comments for implementation details that should not appear in generated public documentation.
  • Format as sentences: Capitalize the first word (unless it is a case-sensitive identifier) and end with a period.
  • Prefer brevity: Be clear, precise, and terse. Avoid redundant information that can be inferred from the method signature or class name.
  • Use Markdown: Utilize standard Markdown for formatting. Prefer backtick fences (```) for code blocks over indentation. Avoid HTML tags.

Formatting Doc Comments

  • Start with a summary: Begin the first sentence with a brief, third-person singular summary.
  • Isolate the summary: Place the summary on its own line, followed by a blank line, to ensure optimal readability in IDE tooltips and generated summaries.
  • Use square brackets for references: Link to types, methods, or variables in scope using [identifier].

- Use [ClassName.memberName] for specific members. - Use [ClassName.new] for unnamed constructors.

  • Use prose for parameters and returns: Integrate parameter, return value, and exception descriptions into the prose rather than using verbose tags (e.g., @param). Highlight parameters using square brackets.
  • Place docs before metadata: Always position doc comments before metadata annotations (e.g., @override).

Documenting Specific Constructs

Methods and Functions

  • Side effects: If the primary purpose is a side effect, start the summary with a third-person verb (e.g., "Connects to the server...").
  • Return values: If the primary purpose is returning a value, start with a noun phrase (e.g., "The [index]th element...").

Variables and Properties

  • Non-booleans: Start with a noun phrase describing what the property *is* (e.g., "The current day of the week...").
  • Booleans: Start with "Whether" followed by a noun or gerund phrase (e.g., "Whether the modal is currently displayed...").
  • Getters/Setters: If a property has both a getter and a setter, document *only* the getter.

Classes and Libraries

  • Classes: Start with a noun phrase describing an *instance* of the type.
  • Libraries: Place a /// comment before the library directive. Include a single-sentence summary, terminology explanations, and code samples.

Workflow: Generating and Validating Docs

Follow this sequential workflow when writing and verifying documentation for a Dart package.

Task Progress

  • 1. Write doc comments using /// and Markdown.
  • 2. Resolve dependencies: Run dart pub get.
  • 3. Ensure code is error-free: Run dart analyze.
  • 4. Generate and validate docs: Run dart doc --validate-links.
  • 5. Review output for missing references or formatting warnings.
  • 6. (Optional) Serve locally to verify UI rendering.

Feedback Loop: Validation

When generating documentation, you must validate that all [references] resolve correctly.

  1. Run validator: Execute dart doc --validate-links.
  2. Review errors: Check the console output for broken links or unresolved symbols.
  3. Fix: Correct typos in [brackets], ensure referenced members are in scope, or adjust imports. Repeat until the command succeeds without warnings.

Conditional Logic: Viewing Docs Locally

  • If you need to preview the generated HTML:

1. Activate the local server: dart pub global activate dhttpd 2. Serve the doc/api directory: dart pub global run dhttpd --path doc/api 3. Open the provided localhost URL in a browser.

Examples

High-Quality Method Documentation

/// Deletes the file at [path].
///
/// Throws an [IOError] if the file could not be found. Throws a
/// [PermissionError] if the file is present but could not be deleted.
void delete(String path) {
  // Implementation details...
}

High-Quality Property Documentation

/// The pH level of the water in the pool.
///
/// Ranges from 0-14, representing acidic to basic, with 7 being neutral.
int get phLevel => _phLevel;
set phLevel(int level) => _phLevel = level;

High-Quality Boolean Documentation

/// Whether the modal should confirm the user's intent on navigation.
bool get shouldConfirm => _shouldConfirm;

High-Quality Class Documentation with Code Sample

/// The lesser of two numbers.
///
/// ```dart
/// min(5, 3) == 3
/// ```
num min(num a, num b) => (a < b) ? a : b;

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.24%
按下载量换算208

Claude

27.62%
按下载量换算150

Cursor

18.28%
按下载量换算99

Gemini CLI

9.88%
按下载量换算54

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills