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/shuchitajain/awesome-ai-setup/widgetsgit clone --depth 1 https://github.com/shuchitajain/awesome-ai-setupWrote 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.
[](https://agentmods.dev/instructions/shuchitajain/awesome-ai-setup/widgets)<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>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.
| Model | Per session | Once 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 |
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.
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= 4AppSpacing.sm= 8AppSpacing.md= 16AppSpacing.lg= 24AppSpacing.xl= 32AppSpacing.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)
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.
- 4d ago First seen · 231 lines · 1,263 tokens per session scan A 910d1a4b233c
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.
Other instructions, from other repositories
apm tests.instructions.md
Test conventions: URL assertions must use urllib.parse, never substring.
apm cli.instructions.md
CLI Design Guidelines for visual output, styling, and user experience standards.
apm integrators.instructions.md
Architecture rules for file-level integrators (BaseIntegrator pattern).
apm copilot-instructions.md
Copilot instructions for microsoft/apm, covering linting (canonical contract), ci-mirror commands, local workflow, common surprises and lifecycle binding.
apm architecture.instructions.md
Single canonical owner discipline: one authority per durable decision, guarded by a regression test + a static boundary check.
apm cicd.instructions.md
CI/CD Pipeline configuration for PyInstaller binary packaging and release workflow.