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 skills add sonature-lab/timsquad --skill tsq-fluttergit clone --depth 1 https://github.com/sonature-lab/timsquadWrote 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/skills/sonature-lab/timsquad/tsq-flutter)<a href="https://agentmods.dev/skills/sonature-lab/timsquad/tsq-flutter"><img src="https://agentmods.dev/badge/skills/sonature-lab/timsquad/tsq-flutter.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.1 | $0.00076 | $0.01119 |
| Opus 5 | $0.00038 | $0.00560 |
| Sonnet 5 | $0.00015 | $0.00224 |
| Haiku 4.5 | $0.00008 | $0.00112 |
Grade A, and why
tsq-flutter 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 7d 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 — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Flutter Development Guidelines
Flutter 3.x 기반 크로스플랫폼 앱 개발 가이드라인.
Flutter 공식 아키텍처 가이드 + VGV + Riverpod 커뮤니티 베스트 프랙티스 종합.
기본 스택: Riverpod, go_router, freezed. 프로젝트 설정(memory/conventions.md)으로 재정의 가능.
Philosophy
- 위젯은 합성 — 상속보다 조합, 작게 분리
- 상태는 구조화 — Riverpod로 선언적 의존성
- Feature-first — 기능 단위로 코드 구성
- const 는 습관 — 불필요한 리빌드 원천 차단
Resources
8개 규칙 + 2개 참조. 카테고리별 배치.
| Priority | Type | Resource | Description |
|---|---|---|---|
| CRITICAL | rule | widget-conventions | 위젯 합성, const, Key 사용, 크기 제한 |
| CRITICAL | rule | state-management | Riverpod Provider/Notifier 패턴 |
| CRITICAL | rule | architecture | Feature-first + MVVM + Data/Domain/UI 레이어 |
| HIGH | rule | navigation-routing | go_router 선언적 라우팅, 딥링크 |
| HIGH | rule | performance | 리빌드 최적화, ListView.builder, Impeller |
| HIGH | rule | testing | Widget/Golden/Integration 테스트, mocktail |
| MEDIUM | rule | platform-adaptive | 적응형 UI, 반응형 레이아웃, 플랫폼 분기 |
| MEDIUM | rule | animations | 암시적/명시적 애니메이션, Hero, 모션 가이드라인 |
| — | ref | project-structure | Feature-first + melos 모노레포 구조 |
| — | ref | freezed-patterns | freezed + json_serializable 불변 모델 |
Quick Rules
위젯
const생성자 적극 사용 (리빌드 스킵)- 위젯 200줄 이하 — 초과 시 추출
- build() 안에서 로직 금지 — ViewModel/Notifier로 분리
GlobalKey남용 금지 —ValueKey/ObjectKey사용
상태 관리 (Riverpod)
- UI 상태:
NotifierProvider+Notifier - 서버 데이터:
FutureProvider/StreamProvider - 파생 상태:
Provider(computed) ref.watch(build),ref.listen(side effect),ref.read(이벤트 핸들러)
아키텍처
- Feature-first 구조 (
lib/features/{name}/) - 각 feature:
data/+domain/+presentation/ - Repository 패턴으로 데이터 소스 추상화
- DTO ↔ Domain Model 변환 레이어
네비게이션
- go_router 선언적 라우팅
- 딥링크/유니버설 링크 지원
- 중첩 네비게이션 (ShellRoute)
What ships with it
58 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- ci-cd/references/ci-cd-pipeline.md 8.8 KB
- ci-cd/rules/code-signing.md 2.9 KB
- ci-cd/rules/codemagic-setup.md 3.4 KB
- ci-cd/rules/fastlane-setup.md 2.9 KB
- ci-cd/rules/github-actions.md 3.5 KB
- ci-cd/rules/store-deployment.md 3.1 KB
- ci-cd/rules/versioning.md 2.8 KB
- ci-cd/SKILL.md 4.0 KB
- i18n/references/i18n-architecture.md 8.0 KB
- i18n/rules/arb-files.md 5.2 KB
- i18n/rules/locale-switching.md 6.5 KB
- i18n/rules/localization-setup.md 4.1 KB
- i18n/rules/plural-gender.md 5.0 KB
- i18n/rules/text-direction.md 5.2 KB
- i18n/SKILL.md 3.6 KB
- monitoring/references/monitoring-architecture.md 14 KB
- monitoring/rules/analytics.md 6.0 KB
- monitoring/rules/crashlytics-setup.md 5.4 KB
- monitoring/rules/logging.md 7.2 KB
- monitoring/rules/performance-monitoring.md 6.7 KB
- monitoring/rules/sentry-integration.md 7.6 KB
- monitoring/SKILL.md 3.8 KB
- networking/references/api-client-architecture.md 9.8 KB
- networking/rules/caching.md 6.1 KB
- networking/rules/connectivity.md 5.7 KB
- networking/rules/dio-setup.md 4.2 KB
- networking/rules/error-handling.md 6.0 KB
- networking/rules/interceptors.md 6.5 KB
- networking/rules/retrofit-patterns.md 4.9 KB
- networking/SKILL.md 3.9 KB
- push-notifications/references/notification-architecture.md 11 KB
- push-notifications/references/platform-setup.md 9.1 KB
- push-notifications/rules/background-processing.md 9.3 KB
- push-notifications/rules/deep-linking.md 6.6 KB
- push-notifications/rules/fcm-setup.md 4.8 KB
- push-notifications/rules/local-notifications.md 7.7 KB
- push-notifications/rules/notification-handling.md 8.2 KB
- push-notifications/rules/notification-permissions.md 7.8 KB
- push-notifications/rules/rich-notifications.md 8.8 KB
- push-notifications/SKILL.md 4.6 KB
- references/freezed-patterns.md 4.2 KB
- references/project-structure.md 5.7 KB
- rules/animations.md 2.9 KB
- rules/architecture.md 4.0 KB
- rules/navigation-routing.md 3.1 KB
- rules/performance.md 2.7 KB
- rules/platform-adaptive.md 3.1 KB
- rules/state-management.md 3.1 KB
- rules/testing.md 3.6 KB
- rules/widget-conventions.md 2.8 KB
- security/references/mobile-security-checklist.md 5.8 KB
- security/rules/api-key-protection.md 5.6 KB
- security/rules/authentication.md 7.4 KB
- security/rules/data-protection.md 7.8 KB
- security/rules/obfuscation.md 5.8 KB
- security/rules/secure-storage.md 5.0 KB
- security/rules/ssl-pinning.md 6.1 KB
- security/SKILL.md 4.0 KB
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.
- 7d ago First seen · 93 lines · 76 tokens per session scan A 36b1101bc9ab
tsq-flutter is a skill published in the GitHub repository sonature-lab/timsquad (11 stars, last pushed 7d ago), licensed MIT. It adds 76 tokens to every session and 1,119 once invoked, about $0.0004 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 skills, from other repositories
flutter
Operational skill for Flutter: widgets, state management choices, async UI, platform channels awareness, and release build hygiene.
mobile-engineer
You are the Mobile Engineer Specialist — a cross-platform mobile development expert who builds performant, production-ready mobile applications. You specialize in React Native (Expo) and Flutter, with deep expertise in native integrations, offline-first architectures, and app store deployment.
flutter-developer
Build beautiful, performant Flutter applications for iOS, Android, and web. Covers state management, navigation, animations, platform channels, and deployment.
flutter-use-column-row-first
Use when building any Flutter screen or component to choose responsive Row, Column, Expanded, Flexible, and Spacer layouts before fixed-size or coordinate-based alternatives.
signals-flutter
Highly optimized Flutter UI bindings and GPU rendering for reactive signals.
flutter-mcp-toolkit-maintain-web
Maintains fluttertestapp and intentcall web targets (Chrome, web codegen, WebMCP bootstrap, web-showcase, webmcp verify). Use when editing web/index.html, agentmanifest.json, intentcallwebmcp.generated.js, web platform sync, Chrome dogfood, or WebMCP modelContext.