awesome-ai-setup widgets.instructions.md

awesome-ai-setup widgets.instructions.md is an instructions file for GitHub Copilot from shuchitajain/awesome-ai-setup. It costs 1,263 tokens per session, scanned A, original, MIT.

A set of coding rules for Flutter widgets in the awesome-ai-setup project. Flutter is a framework for building app interfaces, and widgets are its reusable interface components.

In plain words
What is it for?
Use it when creating or modifying Flutter widgets in lib/, especially when choosing widget base classes, managing local state, and following the project’s layout and theming rules.
Why use it?
It keeps widgets consistent by defining which base classes, hooks, local-state patterns, spacing, layout, and theme conventions to use. This reduces conflicting implementation styles across the project.

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/shuchitajain/awesome-ai-setup/widgets
Clone the repo
git clone --depth 1 https://github.com/shuchitajain/awesome-ai-setup

Made for: GitHub Copilot.

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 awesome-ai-setup widgets.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/shuchitajain/awesome-ai-setup/widgets.svg)](https://agentmods.dev/instructions/shuchitajain/awesome-ai-setup/widgets)
Your own site
<a href="https://agentmods.dev/instructions/shuchitajain/awesome-ai-setup/widgets"><img src="https://agentmods.dev/badge/instructions/shuchitajain/awesome-ai-setup/widgets.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,263 This file is loaded in full into every session.
When invoked 1,263 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.01263 $0.01263
Opus 5 $0.00632 $0.00632
Sonnet 5 $0.00253 $0.00253
Haiku 4.5 $0.00126 $0.00126

Measured 4d ago against content hash 910d1a4b233c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

awesome-ai-setup 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 4d 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.

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.

examples/flutter/.github/instructions/widgets.instructions.md · 231 lines

How it starts

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

Widget Conventions

These conventions apply to all Flutter widget code in lib/.


Base Class

Use HookConsumerWidget as the default base class.

// Standard widget - use this by default
class TaskCard extends HookConsumerWidget {
  const TaskCard({super.key, required this.task});

  final Task task;

  @override
  Widget build(BuildContext context, WidgetRef ref) {
    return ...;
  }
}

// Pure display widget - use this when there is no state or provider usage
class StatusBadge extends StatelessWidget {
  const StatusBadge({super.key, required this.status});

  final TaskStatus status;

  @override
  Widget build(BuildContext context) {
    return ...;
  }
}

Do not use StatefulWidget, ConsumerWidget, ConsumerStatefulWidget, or HookWidget.


Local State

Local widget state uses useState and useAnimationController hooks - not setState.

// Correct
final isExpanded = useState(false);
final tabController = useTabController(initialLength: 3);
final textController = useTextEditingController();
final scrollController = useScrollController();

// Wrong - do not use
// setState(() { _isExpanded = true; });

Hooks are called at the top of build() before any conditional returns. Never call hooks inside conditionals or loops.


Spacing and Layout

Use spacing constants from AppSpacing - do not hardcode pixel values.

// Correct
Padding(
  padding: EdgeInsets.all(AppSpacing.md),
)
SizedBox(height: AppSpacing.sm)
SizedBox(width: AppSpacing.xs)

// Wrong
Padding(padding: EdgeInsets.all(16))
SizedBox(height: 8)

Spacing scale:

  • AppSpacing.xs = 4
  • AppSpacing.sm = 8
  • AppSpacing.md = 16
  • AppSpacing.lg = 24
  • AppSpacing.xl = 32
  • AppSpacing.xxl = 48

Theming

Access colors and text styles through Theme.of(context) or the AppColors / AppTextStyles constants. Do not hardcode colors.

// Correct
color: Theme.of(context).colorScheme.primary
color: AppColors.taskOverdue
style: AppTextStyles.bodyMedium

// Wrong
color: Color(0xFF2563EB)
style: TextStyle(fontSize: 14, fontWeight: FontWeight.w500)

Read the full file on GitHub · 231 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. 4d ago First seen · 231 lines · 1,263 tokens per session scan A 910d1a4b233c

Subscribe to this mod's changes

awesome-ai-setup widgets.instructions.md is an instructions file published in the GitHub repository shuchitajain/awesome-ai-setup (5 stars, last pushed 3mo ago), licensed MIT. It adds 1,263 tokens to every session, about $0.0063 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-31.