flutter-setup

flutter-setup is a skill for Claude Code, Codex from Poorgramer-Zack/dart-expert-skills. It costs 157 tokens per session (2,978 once invoked), scanned B, original, MIT.

A setup and troubleshooting guide for installing the Flutter software development kit and connecting it to VS Code, Android Studio, or IntelliJ on Linux, macOS, or Windows.

In plain words
What is it for?
Use it to install Flutter, configure environment variables and IDE plugins, and diagnose common setup issues.
Why use it?
It helps resolve missing commands, PATH settings, dependency conflicts, and other problems that can prevent Flutter development from starting.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to install Flutter, configure environment variables and IDE plugins, and diagnose common setup issues.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/poorgramer-zack/dart-expert-skills/flutter-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Poorgramer-Zack/dart-expert-skills --skill flutter-setup
Clone the repo
git clone --depth 1 https://github.com/Poorgramer-Zack/dart-expert-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flutter-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/poorgramer-zack/dart-expert-skills/flutter-setup/github.svg)](https://agentmods.dev/skills/poorgramer-zack/dart-expert-skills/flutter-setup)
Your own site
<a href="https://agentmods.dev/skills/poorgramer-zack/dart-expert-skills/flutter-setup"><img src="https://agentmods.dev/badge/skills/poorgramer-zack/dart-expert-skills/flutter-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for flutter-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/poorgramer-zack/dart-expert-skills/flutter-setup"><img src="https://agentmods.dev/badge/skills/poorgramer-zack/dart-expert-skills/flutter-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 157 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,978 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00157 $0.02978
Opus 5 $0.00078 $0.01489
Sonnet 5 $0.00031 $0.00596
Haiku 4.5 $0.00016 $0.00298

Measured 10d ago against content hash ff70d491c042, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade B, and why

flutter-setup scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
skills/flutter-setup/SKILL.md · 391 lines

How it starts

The opening of the file, as written. The whole thing — 391 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Flutter Environment Setup & Troubleshooting Guide

Goal

Establish a reliable, optimized Flutter development environment across Linux, macOS, and Windows platforms. This guide covers initial SDK installation, PATH configuration, IDE setup, and comprehensive troubleshooting for common setup issues, dependency conflicts, and tooling misconfigurations.

Prerequisites Checklist

Before starting Flutter installation, verify:

  • Disk Space: Minimum 2.8 GB for SDK, plus additional space for IDEs and Android SDK
  • Network Access: Stable internet connection for downloading SDK and dependencies
  • Administrative Access: Ability to modify system PATH and install software
  • Git Installed: Required for Flutter SDK management and updates

🚀 Installation Process

Step 1: Download and Extract Flutter SDK

  1. Download the latest stable Flutter SDK from flutter.dev for your platform
  2. Extract to a permanent location (avoid temporary directories)
  3. Important: Choose paths without spaces or special characters

Recommended Installation Paths:

  • Linux/macOS: ~/development/flutter or /opt/flutter
  • Windows: C:\develop\flutter (NEVER use C:\Program Files\)

Step 2: Configure PATH Environment Variable

Linux/macOS PATH Configuration

Add Flutter to your shell configuration file:

For Bash (~/.bashrc or ~/.bash_profile):

export PATH="$PATH:$HOME/development/flutter/bin"
export PATH="$PATH:$HOME/development/flutter/.pub-cache/bin"

For Zsh (~/.zshrc):

export PATH="$PATH:$HOME/development/flutter/bin"
export PATH="$PATH:$HOME/development/flutter/.pub-cache/bin"

For Fish (~/.config/fish/config.fish):

set -gx PATH $PATH $HOME/development/flutter/bin
set -gx PATH $PATH $HOME/development/flutter/.pub-cache/bin

Apply changes immediately:

source ~/.bashrc  # or ~/.zshrc or ~/.bash_profile
Windows PATH Configuration

Method 1: PowerShell (Recommended)

$flutterPath = "C:\develop\flutter\bin"
$currentPath = [Environment]::GetEnvironmentVariable("Path", [EnvironmentVariableTarget]::User)
if ($currentPath -notmatch [regex]::Escape($flutterPath)) {
    [Environment]::SetEnvironmentVariable("Path", "$currentPath;$flutterPath", [EnvironmentVariableTarget]::User)
}

Read the full file on GitHub · 391 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 391 lines · 157 tokens per session scan B ff70d491c042

Subscribe to this mod's changes

flutter-setup is a skill published in the GitHub repository Poorgramer-Zack/dart-expert-skills (7 stars, last pushed 1mo ago), licensed MIT. It adds 157 tokens to every session and 2,978 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.