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

flutter-setting-up-on-windowsFlutter setting UP ON windows 部署

Agent Skill

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

总安装

356

周安装

15

GitHub Stars

公开资料未说明

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gsmlg-dev/code-agent --skill flutter-setting-up-on-windows

简介

该技能提供 Windows 平台 Flutter 应用的部署与环境配置。

  • 适用于 Windows 桌面端或后端服务的 Flutter 集成。
  • 支持多种宿主环境,便于跨平台项目统一管理。
  • 安装命令:npx skills add https://github.com/gsmlg-dev/code-agent --skill flutter-setting-up-on-windows。
  • 需确认 Visual Studio 与 SDK 路径正确,避免编译错误。

SKILL.md

Setting Up Flutter for Windows Development

Contents

Core Requirements

Configure the Windows environment to support both Flutter framework execution and native C/C++ compilation. Differentiate strictly between Visual Studio (required for Windows desktop C++ compilation) and VS Code (the recommended Dart/Flutter code editor).

Workflow: Installing and Configuring the SDK

Follow this sequential workflow to initialize the Flutter SDK on a Windows machine.

  • Download the latest stable Flutter SDK for Windows.
  • Extract the SDK to a directory with standard user privileges (e.g., C:\src\flutter). Do not install in protected directories like C:\Program Files\.
  • Copy the absolute path to the Flutter SDK's bin directory.
  • Open Windows Environment Variables settings and append the bin directory path to the system or user PATH variable.
  • Open a new terminal session to apply the PATH changes.
  • Feedback Loop: Run validator -> review errors -> fix.

1. Execute flutter doctor -v. 2. Review the output for missing dependencies or path issues. 3. Resolve any flagged errors before proceeding to tooling setup.

Workflow: Configuring Tooling and IDEs

  • Install Visual Studio (not VS Code).
  • Select and install the Desktop development with C++ workload during the Visual Studio installation process. This is mandatory for compiling Windows desktop applications.
  • Install your preferred code editor (VS Code, Android Studio, or IntelliJ).
  • Install the official Flutter and Dart extensions/plugins within your chosen editor.

Workflow: Configuring Target Platforms

Apply conditional logic based on the specific platform you are targeting for development.

If targeting Windows Desktop:

  • Ensure the Visual Studio C++ workload is fully updated.
  • Restart your IDE so it detects the Windows desktop device.
  • To disable platforms you do not intend to compile for, execute flutter config --no-enable-<platform> (e.g., flutter config --no-enable-windows-desktop).

If targeting Android on Windows:

  • For physical devices: Enable Developer Options and USB debugging on the device. Install the specific OEM USB drivers for Windows.
  • For emulators: Open the Android Virtual Device (AVD) manager. Under "Emulated Performance" -> "Graphics acceleration", select an option specifying "Hardware" to enable hardware acceleration.
  • Verify the device connection by running flutter devices.

Workflow: Building and Packaging for Windows

To distribute a Windows desktop application, assemble the compiled executable and its required dependencies into a single distributable archive.

  • Execute flutter build windows to compile the release build.
  • Navigate to build\windows\runner\Release\.
  • Create a new staging directory for the distribution zip.
  • Copy the following assets from the Release directory into the staging directory:

- The application executable (.exe). - All generated .dll files. - The entire data directory.

  • Copy the required Visual C++ redistributables into the staging directory alongside the executable:

- msvcp140.dll - vcruntime140.dll - vcruntime140_1.dll

  • Compress the staging directory into a .zip file for distribution.

Workflow: Generating and Installing Certificates

If you require a self-signed certificate for MSIX packaging or local testing, use OpenSSL.

  • Install OpenSSL and add its bin directory to your PATH environment variable.
  • Generate a private key: openssl genrsa -out mykeyname.key 2048
  • Generate a Certificate Signing Request (CSR): openssl req -new -key mykeyname.key -out mycsrname.csr
  • Generate the signed certificate (CRT): openssl x509 -in mycsrname.csr -out mycrtname.crt -req -signkey mykeyname.key -days 10000
  • Generate the .pfx file: openssl pkcs12 -export -out CERTIFICATE.pfx -inkey mykeyname.key -in mycrtname.crt
  • Install the .pfx certificate on the local Windows machine. Place it in the Certificate Store under Trusted Root Certification Authorities prior to installing the application.

Examples

Windows Distribution Directory Structure

When assembling your Windows build for distribution, ensure the directory structure strictly matches the following layout before zipping:

Release_Archive/
│   my_flutter_app.exe
│   flutter_windows.dll
│   msvcp140.dll
│   vcruntime140.dll
│   vcruntime140_1.dll
│
└───data/
    │   app.so
    │   icudtl.dat
    │   ...

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.11%
按下载量换算43

Claude

31.04%
按下载量换算39

Cursor

18.15%
按下载量换算23

Gemini CLI

9.54%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills