wind widgets.instructions.md

Coding conventions for building reusable Flutter widgets in a Wind UI codebase. Flutter widgets are the building blocks of a Flutter app's interface, while Wind provides the project's styling API.

In plain words
What is it for?
Use it when adding or changing widgets under the project's widget directory, especially widgets that accept children, class-based styling, or interaction states.
Why use it?
It reduces inconsistent widget shapes, invalid child configurations, styling mistakes, and missing debug information.

Instructions file for GitHub Copilot

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.

agentmods
npx agentmods add instructions/fluttersdk/wind/widgets
Clone the repo
git clone --depth 1 https://github.com/fluttersdk/wind

Made for: GitHub Copilot.

Per session 1,001 This file is loaded in full into every session.
When invoked 1,001 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.01001 $0.01001
Opus 5 $0.00500 $0.00500
Sonnet 5 $0.00200 $0.00200
Haiku 4.5 $0.00100 $0.00100

Measured yesterday against content hash 18e1e14683e4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

wind widgets.instructions.md scanned grade A with 0 findings 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 yesterday.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/instructions/widgets.instructions.md · 90 lines

How it starts

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

Widget conventions (lib/src/widgets/)

Canonical shape (stateless composition widgets)

The default is StatelessWidget + const constructor. Match this shape unless the widget needs lifecycle (focus, controller, overlay, animation):

class WFoo extends StatelessWidget {
  final String? className;
  final Widget? child;
  final List<Widget>? children;
  final Set<String>? states;

  const WFoo({
    super.key,                              // first param
    this.className,
    this.child,
    this.children,
    this.states,
    // ...feature props after the styling props
  }) : assert(child != null || children != null,
              'child XOR children, never both, never neither');
}
  • super.key is the first positional, except WText where the required positional data: String precedes it (semantic content dominates).
  • child XOR children is a hard invariant. Assert at construction.
  • className: String? is the styling API. Parse it via WindParser.parse(className!, context, states: activeStates) inside build. Explicit Dart props (backgroundColor, foregroundColor) override the parsed style.
  • states: Set<String>? activates hover: / focus: / disabled: / loading: / selected: / custom prefixed classes. Merge automatic state flags (hover, focus, etc.) into activeStates inside build before passing to the parser.

StatefulWidget exceptions (only when warranted)

  • WInput — manages TextEditingController + FocusNode lifecycle.
  • WSelect<T> — overlay open/close + filter state.
  • WPopover — overlay anchor state.
  • WDatePicker — month navigation + range selection.
  • WKeyboardActions — overlay toolbar visibility per focus change.
  • WindAnimationWrapperAnimationController + vsync.

WFormInput / WFormSelect / WFormCheckbox / WFormDatePicker extend FormField<T> and delegate build to an internal _W{Form*}Content stateful widget. The outer FormField stays const-constructible; lifecycle lives in _content.

Read the full file on GitHub · 90 lines

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. yesterday First seen · 90 lines · 1,001 tokens per session scan A 18e1e14683e4

Subscribe to this mod's changes

wind widgets.instructions.md is an instructions file published in the GitHub repository fluttersdk/wind (33 stars, last pushed 2d ago), licensed MIT. It adds 1,001 tokens to every session, about $0.0050 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

edge AGENTS.md

Instructions for OpenStrap/edge, covering agents.md — openstrap edge, 1. what this is, 3. hard invariants — violating these is a p0 regression, 4. recurring bug patterns — what actually ships broken here and 4.3 sticky boolean latches never reset on the failure path.

OpenStrap/edge · 4,019 tokens

mobile CLAUDE.md

Claude Code instructions for lichess-org/mobile, covering claude.md, project overview, development setup, initial setup and install dependencies.

lichess-org/mobile · 4,362 tokens

dart_agent_core AGENTS.md

Instructions for memex-lab/dart_agent_core, covering agents.md, common commands, transcript viewer cli (reads eval traces), two public libraries and architecture (big picture).

memex-lab/dart_agent_core · 1,450 tokens

sanad-agent AGENTS.md

Instructions for EastStarAI/sanad-agent, covering sanad agent repository contract, 1. documentation hierarchy, rules for ai agents and developers, 1.1. the strict separation pact and 1.2. the living project wiki & incremental documentation.

EastStarAI/sanad-agent · 3,115 tokens

dart-sdk-skills AGENTS.md

Instructions for RandalSchwartz/dart-sdk-skills, covering ai agent developer handbook (agents.md), 🎯 repository purpose, 🔄 runbook 1: updating for new dart sdk releases, 🔄 runbook 2: updating for new flutter framework releases and 📏 quality & style guidelines.

RandalSchwartz/dart-sdk-skills · 736 tokens

dart-expert-skills copilot-instructions.md

Instructions for Poorgramer-Zack/dart-expert-skills, covering flutter skills repository - copilot instructions, repository overview, architecture, directory structure and skill structure.

Poorgramer-Zack/dart-expert-skills · 2,008 tokens