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

flutter-environment-setup-windowsFlutter environment 设置 windows

Agent Skill

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

总安装

20,097

周安装

813

GitHub Stars

1,305

下载量

6,309
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/flutter/skills --skill flutter-environment-setup-windows

简介

使用特定于平台的工具链配置自动设置 Windows Flutter 开发环境。

  • 通过 Windows 桌面、Android 或这两个目标的交互式提示配置 Flutter SDK 路径、Visual Studio C++ 工具链安装以及特定于平台的设置
  • 选择 Android 时处理 Android Studio 设置、设备/模拟器配置和 USB 驱动程序安装
  • 使用 OpenSSL 生成自签名 MSIX 证书以进行本地 Windows 应用程序打包和部署
  • 包括通过 flutter doctor 进行自动验证
  • 有条件修复缺少的 SDK 工具、Visual Studio 工作负载问题和 PATH 配置问题

SKILL.md

Goal

Configures a Windows development environment for building Flutter applications targeting Windows Desktop and Android. Analyzes system requirements, modifies environment variables, installs necessary C++ toolchains, manages platform-specific configurations, and generates self-signed certificates for local Windows application deployment. Assumes the host machine is running Windows 10 or 11 with administrative privileges available for system modifications.

Instructions

  1. Configure Flutter SDK and Environment Variables Extract the Flutter SDK to a secure, user-writable directory (e.g., C:\develop\flutter). Do not place it in C:\Program Files\. Execute the following PowerShell command to append the Flutter bin directory to the user's PATH: $flutterBinPath = "C:\develop\flutter\bin" $currentUserPath = [Environment]::GetEnvironmentVariable("Path", [EnvironmentVariableTarget]::User) if ($currentUserPath -notmatch [regex]::Escape($flutterBinPath)) {[Environment]::SetEnvironmentVariable("Path", "$currentUserPath;$flutterBinPath", [EnvironmentVariableTarget]::User)}
  2. Install Windows Tooling To compile Windows desktop applications, Visual Studio (not VS Code) is strictly required. Install Visual Studio with the "Desktop development with C++" workload. If automating via command line, use the following workload ID: vs_setup.exe --add Microsoft.VisualStudio.Workload.NativeDesktop --includeRecommended
  3. Decision Logic: Target Platform Configuration STOP AND ASK THE USER: "Which target platforms are you configuring for this environment? (A) Windows Desktop, (B) Android, or (C) Both?"

- If (A) Windows Desktop: Proceed to Step 5. Disable Android and Web if unnecessary: flutter config --no-enable-android flutter config --no-enable-web flutter config --enable-windows-desktop - If (B) Android: Proceed to Step 4. Disable Windows desktop if unnecessary: flutter config --no-enable-windows-desktop - If (C) Both: Execute Steps 4 and 5. Ensure both platforms are enabled.

  1. Configure Android Tooling on Windows

- Install Android Studio and the Android SDK Command-line Tools via the SDK Manager. - For physical devices: Enable "Developer options" and "USB debugging" on the device. Install the OEM USB drivers for Windows. - For emulators: Enable hardware acceleration in the AVD Manager by selecting a "Hardware" graphics acceleration option under "Emulated Performance".

  1. Build and Package Windows Desktop Applications To compile the Windows application, execute: flutter build windows To package the application manually, gather the following files from build\windows\runner\Release\: *Optional:* To rename the generated executable, modify the BINARY_NAME in windows/CMakeLists.txt: # Change this to change the on-disk name of your application. set(BINARY_NAME "CustomAppName")

- The executable (<project_name>.exe) - All .dll files (e.g., flutter_windows.dll) - The data directory - Visual C++ redistributables (msvcp140.dll, vcruntime140.dll, vcruntime140_1.dll) placed adjacent to the .exe.

  1. Generate Self-Signed Certificates for MSIX Packaging (OpenSSL) If the user requires local testing of an MSIX package, generate a .pfx certificate. Ensure OpenSSL is in the PATH, then execute: openssl genrsa -out mykeyname.key 2048 openssl req -new -key mykeyname.key -out mycsrname.csr openssl x509 -in mycsrname.csr -out mycrtname.crt -req -signkey mykeyname.key -days 10000 openssl pkcs12 -export -out CERTIFICATE.pfx -inkey mykeyname.key -in mycrtname.crt Instruct the user to install CERTIFICATE.pfx into the local machine's Certificate Store under "Trusted Root Certification Authorities".
  2. Validate-and-Fix Feedback Loop Execute the Flutter diagnostic tool to verify the environment: flutter doctor -v

- *Condition:* If cmdline-tools component is missing is reported, instruct the user to open Android Studio -> Tools -> SDK Manager -> SDK Tools, and check "Android SDK Command-line Tools". - *Condition:* If Visual Studio toolchain issues are reported, verify the Microsoft.VisualStudio.Workload.NativeDesktop workload is fully installed. - *Condition:* If flutter is not recognized, verify the PowerShell PATH injection succeeded and restart the terminal process.

Constraints

  • Do not include external URLs or hyperlinks in any output.
  • Do not recommend placing the Flutter SDK in directories requiring elevated privileges (e.g., C:\Program Files\).
  • Do not confuse Visual Studio Code with Visual Studio; the latter is strictly required for the C++ toolchain on Windows.
  • Always assume the user is operating within a standard Windows command prompt or PowerShell environment unless otherwise specified.
  • Never skip the flutter doctor validation step; it is mandatory for confirming environment integrity.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.64%
按下载量换算2,375

Claude

27.81%
按下载量换算1,755

Cursor

18.12%
按下载量换算1,143

Gemini CLI

10.35%
按下载量换算653

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills