auto_fix_high AI-First · Skill + MCP

Wind UI for AI Coding Assistants

Skill teaches your agent the className grammar. MCP server lets it verify what it wrote. One marketplace command in Claude Code wires it all up.

Works with
Claude Code Claude Code Cursor OpenCode VS Code Copilot Codex CLI
paste in Claude · other editor ↓
Claude Code claude · ~/your-flutter-app
connected
verified Skills + MCP server live. Your agent is fluent in Wind.

Three pieces, one outcome.

Skill at edit time. MCP at runtime. llms.txt on demand.

menu_book

01 · Skill

19 W-prefix widgets, className grammar, dark-mode pairing rules, anti-patterns. Loaded into context before the first line.

hub

02 · MCP server

Streamable HTTP at mcp.fluttersdk.com. One search-docs tool. Public, no auth.

description

03 · llms.txt

Static markdown inventory at /wind/llms.txt. Some agents auto-fetch and cache it on first contact.

Install Wind UI for Claude Code, Cursor, and Copilot

Three paths. Pick the one closest to your editor.

Claude Code

Claude Code plugin Recommended

Marketplace install. Skills surface as /fluttersdk:wind-ui, etc.

/plugin marketplace add fluttersdk/ai
/plugin install fluttersdk@fluttersdk-marketplace
terminal

npx skills

Universal CLI. Works with 40+ AI coding agents via the Vercel Labs skills package.

npx skills add fluttersdk/ai --skill wind-ui
npx skills add fluttersdk/ai -g
install_desktop

Universal installer

Auto-detects every supported tool and registers the MCP server in one pass.

git clone https://github.com/fluttersdk/ai.git && cd ai && bash scripts/install.sh --global --with-mcp

Connect the MCP Server at mcp.fluttersdk.com

One Streamable HTTP endpoint at mcp.fluttersdk.com serves every client. Public, no auth.

Claude Code

Claude Code

claude mcp add --transport http fluttersdk https://mcp.fluttersdk.com
chevron_right stdio fallback
claude mcp add --transport stdio fluttersdk npx @@fluttersdk/mcp

Cursor

{
  "mcpServers": {
    "fluttersdk": { "url": "https://mcp.fluttersdk.com" }
  }
}

Save to .cursor/mcp.json

OpenCode

{
  "mcp": {
    "fluttersdk": {
      "type": "remote",
      "url": "https://mcp.fluttersdk.com",
      "enabled": true
    }
  }
}

Save to opencode.json

VS Code Copilot

{
  "servers": {
    "fluttersdk": { "type": "http", "url": "https://mcp.fluttersdk.com" }
  }
}

Save to .vscode/mcp.json

Codex CLI

[mcp_servers.fluttersdk]
url = "https://mcp.fluttersdk.com"

Add to ~/.codex/config.toml

chevron_right stdio fallback
[mcp_servers.fluttersdk]
command = "npx"
args = ["-y", "@@fluttersdk/mcp"]

Antigravity CLI

{
  "mcpServers": {
    "fluttersdk": {
      "url": "https://mcp.fluttersdk.com"
    }
  }
}

Save to ~/.gemini/config/mcp_config.json

Different client? Cline, Gemini CLI, Roo Code configs at fluttersdk/ai · docs/MCP.md.

description

LLM Inventory Files

Some agents auto-fetch llms.txt at the project URL and load it once into context. Complement to the skill+MCP combo.

Frequently Asked

Do I need both the skill and the MCP server? expand_more

The skill teaches your agent the className grammar at edit time. The MCP server lets it search docs at runtime to verify what it wrote. They are complementary; install both.

Which AI coding assistants are supported? expand_more

The skill works with 40+ agents via the Vercel Labs skills CLI. The MCP server speaks Streamable HTTP, supported natively by Claude Code, Cursor, OpenCode, VS Code Copilot, and Codex CLI. For stdio-only clients use the npx @fluttersdk/mcp bridge.

Is the MCP server free? expand_more

Yes. mcp.fluttersdk.com is public, no auth, MIT-licensed. The search-docs tool queries the same docs you read at fluttersdk.com.

Where do I report a hallucination? expand_more

Open an issue at github.com/fluttersdk/ai with the prompt, the agent, and the model. The skill ships with anti-pattern reminders that get tightened from real reports.