flutter-agentic-starter AGENTS.md

flutter-agentic-starter AGENTS.md is an instructions file for Codex, OpenCode from tsnAnh/flutter-agentic-starter. It costs 1,661 tokens per session, scanned A, original, MIT.

Repository instructions for a Flutter and Dart starter project built around software agents. They describe the project, agent responsibilities, workflows, and development rules.

In plain words
What is it for?
Use them when planning, implementing, delegating, or documenting work in the flutter-agentic-starter repository.
Why use it?
They give an agent the project-specific context and working rules needed to make consistent changes in that codebase.

Instructions file for CodexOpenCode

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/tsnanh/flutter-agentic-starter/agents-md
Clone the repo
git clone --depth 1 https://github.com/tsnAnh/flutter-agentic-starter

Made for: Codex, OpenCode.

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 flutter-agentic-starter AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/tsnanh/flutter-agentic-starter/agents-md.svg)](https://agentmods.dev/instructions/tsnanh/flutter-agentic-starter/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/tsnanh/flutter-agentic-starter/agents-md"><img src="https://agentmods.dev/badge/instructions/tsnanh/flutter-agentic-starter/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,661 This file is loaded in full into every session.
When invoked 1,661 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.01661 $0.01661
Opus 5 $0.00830 $0.00830
Sonnet 5 $0.00332 $0.00332
Haiku 4.5 $0.00166 $0.00166

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

Security

Grade A, and why

flutter-agentic-starter AGENTS.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 3d 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.

AGENTS.md · 117 lines

How it starts

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

AGENTS.md

This file provides guidance to OpenCode when working with code in this repository.

Project Overview

Name: flutter-agentic-starter Type: Flutter/Dart Description: Production-ready Flutter Signals starter template optimized for AI coding agents. Clean architecture, core modules, multi-flavor support. Built for vibe coding with Claude Code, Cursor, and other AI assistants.

Role & Responsibilities

Your role is to analyze user requirements, delegate tasks to appropriate sub-agents, and ensure cohesive delivery of features that meet specifications and architectural standards.

Workflows

  • Primary workflow: ./.claude/rules/primary-workflow.md
  • Development rules: ./.claude/rules/development-rules.md
  • Orchestration protocols: ./.claude/rules/orchestration-protocol.md
  • Documentation management: ./.claude/rules/documentation-management.md
  • And other workflows: ./.claude/rules/*

IMPORTANT: Analyze the skills catalog and activate the skills that are needed for the task during the process. IMPORTANT: You must follow strictly the development rules in ./.claude/rules/development-rules.md file. IMPORTANT: Before you plan or proceed any implementation, always read the ./README.md file first to get context. IMPORTANT: Sacrifice grammar for the sake of concision when writing reports. IMPORTANT: In reports, list any unresolved questions at the end, if any.

Development Principles

  • YAGNI: You Aren't Gonna Need It - avoid over-engineering
  • KISS: Keep It Simple, Stupid - prefer simple solutions
  • DRY: Don't Repeat Yourself - eliminate code duplication
  • Karpathy Guidelines: Think before coding, keep changes simple, edit surgically, and define verifiable success criteria.

Coding Agent Rules

  • Read README.md and relevant docs before implementation.
  • State assumptions when requirements are ambiguous; ask before risky guesses.
  • Hard rule: Minimal focused edits only. Touch only files and lines required for requested behavior.
  • Hard rule: Do not rewrite, reformat, reorder, regenerate, or clean up unrelated code unless required.
  • Hard rule: Never manually edit build_runner generated files, including *.g.dart, *.freezed.dart, *.config.dart, or files marked GENERATED CODE - DO NOT MODIFY BY HAND.
  • Hard rule: Avoid primitive obsession. Prefer existing SDK/package types, enums/enhanced enums, sealed classes, or small value objects over raw String, raw int, raw bool, and magic constants for finite or high-risk domain concepts. Parse wire primitives at boundaries; keep raw primitives only for open user text, raw JSON/generated/localized output, and simple IDs/keys without behavior.
  • Hard rule: Prefer maintained pub.dev packages before implementing reusable Flutter/Dart utilities, widgets, integrations, or helpers yourself.
  • Hard rule: For Flutter source icons/images, find suitable existing internet assets instead of creating them yourself. Prefer SVG for icons/simple vectors, PNG/JPG for raster/photo use cases, and record source/license when adding assets.
  • Keep ephemeral widget-only UI state local with StatefulWidget/setState; use injectable feature view models with private Signal fields and public ReadonlySignal views for shared, persisted, business-critical, or asynchronous state.
  • Use SignalWidget for signal-driven screens and focused SignalBuilder boundaries when only a subtree should rebuild. Use AsyncState<T> for loading/data/error, computed for derived state, and batch when multiple writes must publish atomically.
  • Keep navigation, dialogs, and snackbars at the widget boundary. Explicitly dispose every effect, signal subscription, stream connection, and lifecycle observer owned by a long-lived object. Do not use .watch(context) or SignalsMixin.
  • Use SafeArea; honor text scaling and accessibility-aware MediaQuery.
  • Use LayoutBuilder for parent constraints and MediaQuery.sizeOf(context) for app-window size; avoid orientation or hardware type checks for top-level layout decisions.
  • On large screens, add useful panes/content instead of stretching widgets; center and constrain forms, text, and list rows with ConstrainedBox/max widths.
  • Use lazy builders for long lists/grids. Use GridView.builder or SliverGridDelegateWithMaxCrossAxisExtent for large feeds instead of wider list rows; avoid intrinsic layout passes in large scrolling surfaces.
  • Prefer width-adaptive navigation: compact NavigationBar/bottom nav, larger NavigationRail, drawer, or split shell.
  • Prefer canonical large-screen layouts when they fit: list-detail, feed, and supporting pane. Preserve selection/pane state across resize, rotation, fold, and unfold; compact widths show one pane with back behavior, expanded widths show panes together.
  • For foldables, do not lock orientation; use MediaQuery.displayFeatures/DisplayFeatureSubScreen when content must avoid hinges/folds. Use Flutter Display API only for the strict orientation-lock letterboxing exception.
  • Preserve scroll position with PageStorageKey where list identity should survive rotation, fold, or resize.
  • Custom controls need semantics, labels, focus traversal, keyboard activation, hover, and pointer support where relevant.
  • Use isolates/compute only for measured UI jank or clearly heavy JSON, media, database, or list-processing work.
  • Add restorationScopeId/restorationId for MaterialApp.router, GoRouter, and restorable pages when navigation state should survive OS process death.
  • New production user-facing strings go through ARB/localization unless the surrounding file is intentionally demo-only.
  • Prefer simple fakes over broad mocks; add widget/accessibility guideline tests for non-trivial UI.
  • For large-screen/adaptive UI changes, verify resizing, both orientations, physical keyboard, mouse/trackpad, and fold/unfold scenarios where possible.
  • Document any pub.dev package-first exception with reason.
  • Keep repo-owned source code files under 300 lines when practical; split focused concerns when it improves readability.
  • Respect dirty worktrees. Never revert user changes unless explicitly asked.
  • Verify changes with flutter analyze and flutter test when code changes.
  • For generated code changes, edit source files only, then run dart run build_runner build --delete-conflicting-outputs.
  • Treat .env, API keys, tokens, and platform secrets as confidential.

Read the full file on GitHub · 117 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. 3d ago First seen · 117 lines · 1,661 tokens per session scan A 650eb3c6f08b

Subscribe to this mod's changes

flutter-agentic-starter AGENTS.md is an instructions file published in the GitHub repository tsnAnh/flutter-agentic-starter (7 stars, last pushed 1mo ago), licensed MIT. It adds 1,661 tokens to every session, about $0.0083 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.