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.
npx agentmods add instructions/fluttersdk/wind/widgetsgit clone --depth 1 https://github.com/fluttersdk/windWhat 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.
| Model | Per session | Once 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 |
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.
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.keyis the first positional, exceptWTextwhere the required positionaldata: Stringprecedes it (semantic content dominates).childXORchildrenis a hard invariant. Assert at construction.className: String?is the styling API. Parse it viaWindParser.parse(className!, context, states: activeStates)insidebuild. Explicit Dart props (backgroundColor,foregroundColor) override the parsed style.states: Set<String>?activateshover:/focus:/disabled:/loading:/selected:/ custom prefixed classes. Merge automatic state flags (hover,focus, etc.) intoactiveStatesinsidebuildbefore passing to the parser.
StatefulWidget exceptions (only when warranted)
WInput— managesTextEditingController+FocusNodelifecycle.WSelect<T>— overlay open/close + filter state.WPopover— overlay anchor state.WDatePicker— month navigation + range selection.WKeyboardActions— overlay toolbar visibility per focus change.WindAnimationWrapper—AnimationController+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.
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.
- yesterday First seen · 90 lines · 1,001 tokens per session scan A 18e1e14683e4
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.
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.
mobile CLAUDE.md
Claude Code instructions for lichess-org/mobile, covering claude.md, project overview, development setup, initial setup and install dependencies.
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).
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.
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.
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.