Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

dart-compilation-deploymentdart compilation 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

1,411

周安装

60

GitHub Stars

61

下载量

494
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于辅助云资源、部署、容器、基础设施和运维自动化任务。

  • 适合检查配置、整理部署步骤、分析资源状态或生成排障思路。
  • 使用时需明确目标环境、账号权限、区域和资源组,区分本地与生产操作。
  • 涉及删除资源、重启服务或修改网络配置时应先确认影响范围。
  • dart-compilation-deployment 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Compiling Dart Applications

Contents

Compilation Targets & Conditional Logic

Select the appropriate dart compile subcommand based on the deployment target and constraints:

  • If deploying self-contained native binaries on Windows/macOS/Linux: Use exe. This bundles the machine code and a minimal Dart runtime.
  • If deploying to resource-constrained environments or distributing multiple command-line apps: Use aot-snapshot. This produces an architecture-specific module without the runtime. Execute it using dartaotruntime.
  • If deploying to web targets: Use js or wasm. (See related skill: dart-web-development).
  • If optimizing for fast startup using training data: Use jit-snapshot.
  • If requiring a portable module across all OS/CPU architectures: Use kernel. Note that startup time is slower than AOT formats.

*Note: The exe and aot-snapshot commands do not support dart:mirrors or dart:developer. They also do not run build hooks; use dart build if hooks are present.*

Workflow: Compiling Native Executables

Follow this workflow to generate standalone executables.

Task Progress Checklist:

  • Verify the application does not rely on dart:mirrors or dart:developer.
  • Determine the target OS and architecture.
  • Execute the dart compile exe command with appropriate flags.
  • Run validator -> execute the binary in the target environment -> review errors -> fix.

Implementation Steps:

  1. Compile the source file and specify the output path using -o: dart compile exe bin/myapp.dart -o bin/myapp
  2. Cross-compilation (Linux targets only): If compiling for a different architecture on a 64-bit host, specify --target-os and --target-arch (arm, arm64, riscv64, x64): dart compile exe --target-os=linux --target-arch=arm64 bin/myapp.dart -o bin/myapp_arm64

Workflow: Compiling AOT Snapshots

Use AOT snapshots to optimize performance and reduce disk space when the target environment already has the Dart runtime installed.

Task Progress Checklist:

  • Compile the Dart code to an AOT snapshot.
  • Deploy the .aot file to the target environment.
  • Ensure dartaotruntime is available in the target environment's PATH.
  • Execute the snapshot using dartaotruntime.

Implementation Steps:

  1. Generate the AOT snapshot: dart compile aot-snapshot bin/myapp.dart -o bin/myapp.aot
  2. Run the snapshot using the standalone AOT runtime: dartaotruntime bin/myapp.aot

Workflow: Compiling for the Web

Compile Dart code to deployable JavaScript or WebAssembly.

Task Progress Checklist:

  • Select the target format (js or wasm).
  • Select the optimization level (-O1 through -O4).
  • Compile the application.
  • Run validator -> test edge cases in user input -> review runtime type errors -> downgrade optimization level if necessary -> fix.

Implementation Steps:

  1. Compile to JavaScript using the -O2 optimization level (safe default): dart compile js -O2 -o build/main.js web/main.dart
  2. Optimization Levels:

- -O1: Default optimizations. - -O2: Adds safe minification. (Recommended baseline). - -O3: Omits implicit type checks. *Warning: Test thoroughly with -O2 first to ensure no TypeError exceptions are thrown.* - -O4: Aggressive optimizations. *Warning: Susceptible to variations in input data. Test edge cases rigorously.*

  1. Environment Declarations: Pass environment variables using -D<flag>=<value>: dart compile js -DAPI_URL=https://api.example.com -O2 -o build/main.js web/main.dart

Examples

Example 1: Cross-Compiling a Native Executable for Linux ARM64

# Input
dart compile exe --target-os=linux --target-arch=arm64 bin/server.dart -o build/server_linux_arm64

# Output
# Generates a standalone binary at build/server_linux_arm64 containing the compiled machine code and Dart runtime.

Example 2: Generating and Running an AOT Snapshot

# Input: Compilation
dart compile aot-snapshot bin/cli.dart -o build/cli.aot

# Input: Execution
dartaotruntime build/cli.aot

# Output
# Executes the pre-compiled AOT snapshot without the overhead of the full Dart SDK.

Example 3: Compiling for Web with Strict Optimizations

# Input
dart compile js -O3 --no-source-maps -DENVIRONMENT=production -o deploy/app.js web/app.dart

# Output
# Generates a highly optimized, minified JavaScript file (deploy/app.js) with type checks omitted and no source maps.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.15%
按下载量换算169

Claude

31.12%
按下载量换算154

Cursor

20%
按下载量换算99

Gemini CLI

10.68%
按下载量换算53

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills