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 skills/launch52-ai/flutter-template/corenpx skills add launch52-ai/flutter-template --skill coregit clone --depth 1 https://github.com/launch52-ai/flutter-templateWhat 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.00052 | $0.01378 |
| Opus 5 | $0.00026 | $0.00689 |
| Sonnet 5 | $0.00010 | $0.00276 |
| Haiku 4.5 | $0.00005 | $0.00138 |
Grade A, and why
core 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 — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Core - Infrastructure Generation
Generates the core infrastructure that all features depend on.
When to Use This Skill
- After
/initcompletes - Before adding any features or
/auth - Setting up app-wide infrastructure
- User asks to "generate core", "create infrastructure", or "setup theme/router"
What This Skill Creates
lib/app.dart- Root app widget with MaterialApp.routerlib/core/theme/- AppColors, AppTypography, AppThemelib/core/router/- GoRouter configurationlib/core/services/- SecureStorage, SharedPrefs, Supabase, iOS network permissionlib/core/errors/- Typed failures and exceptionslib/core/constants/- App constants, legal URLs, storage keys, debug flagslib/core/network/- Dio client (if custom API)lib/core/navigation/- StatefulShellRoute (if bottom nav)lib/core/providers.dart- Core Riverpod providers
Workflow
Phase 1: Gather Requirements
Use AskUserQuestion to confirm settings from /init:
- Primary Color (hex, from /init or ask)
- Theme Mode (light/dark/both)
- Use Supabase? (from /init)
- Use Custom API? (from /init)
- Bottom Navigation? (yes/no - determines shell creation)
- Privacy Policy URL? (can be placeholder, required before release)
- Terms of Service URL? (can be placeholder, required before release)
Phase 2: Create Directory Structure
mkdir -p lib/core/{constants,errors,network,router,navigation,services,theme,utils,widgets}
mkdir -p lib/features
Phase 3: Generate Files
Copy from reference/ directories and customize:
| Category | Files | Notes |
|---|---|---|
theme/ |
app_colors, app_typography, app_theme | Customize primary color |
services/ |
secure_storage, shared_prefs, ios_network_permission | Always |
services/ |
supabase_service | If Supabase = yes |
network/ |
dio_client | If Custom API = yes |
router/ |
app_router | Customize routes |
navigation/ |
main_shell | If bottom nav = yes |
errors/ |
failures, exceptions | Always |
constants/ |
app_constants, legal_constants, storage_keys, debug_constants | Always |
utils/ |
legal_utils | Always |
| root | providers.dart | Customize based on services |
What ships with it
23 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.
- reference/app.dart 1.2 KB
- reference/constants/app_constants.dart 1005 B
- reference/constants/debug_constants.dart 1.8 KB
- reference/constants/legal_constants.dart 953 B
- reference/constants/storage_keys.dart 1.7 KB
- reference/errors/exceptions.dart 2.0 KB
- reference/errors/failures.dart 3.0 KB
- reference/navigation/main_shell.dart 3.3 KB
- reference/network/dio_client.dart 5.0 KB
- reference/providers.dart 3.3 KB
- reference/router/app_router.dart 5.0 KB
- reference/services/ios_network_permission_service.dart 2.1 KB
- reference/services/secure_storage_service.dart 1.7 KB
- reference/services/shared_prefs_service.dart 2.6 KB
- reference/services/supabase_service.dart 1.7 KB
- reference/theme/app_colors.dart 5.4 KB
- reference/theme/app_theme.dart 7.9 KB
- reference/theme/app_typography.dart 6.9 KB
- reference/utils/legal_utils.dart 1.6 KB
- reference/utils/validators.dart 3.4 KB
- reference/widgets/debug_menu.dart 2.5 KB
- reference/widgets/empty_state.dart 1.5 KB
- reference/widgets/loading_button.dart 1.1 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.
- yesterday First seen · 159 lines · 52 tokens per session scan A e7b3d778b365
core is a skill published in the GitHub repository launch52-ai/flutter-template (2 stars, last pushed 6mo ago), licensed MIT. It adds 52 tokens to every session and 1,378 once invoked, about $0.0003 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 skills, from other repositories
merge-seed
Merge upstream React Starter Kit updates (the seed remote) into main, preserving this project's identity, scope, and behavior. Use when asked to sync, pull, or merge the seed / starter kit / upstream template.
django-celery-expert
Expert Django Celery guidance for asynchronous task processing. Use when designing background tasks, configuring Celery workers, handling task retries and errors, optimizing Celery performance, implementing periodic tasks with Celery Beat, or setting up production monitoring for Celery. Do not use for general Django…
django-expert
Expert Django backend development guidance. Use when creating Django models, views, serializers, or APIs; debugging ORM queries or migrations; optimizing database performance; implementing authentication; writing tests; or working with Django REST Framework. Follows Django best practices and modern patterns.
shadcn
Manages shadcn components and projects — adding, searching, fixing, debugging, styling, and composing UI, including chat interfaces. Provides project context, component docs, and usage examples. Applies when working with shadcn/ui, component registries, presets, --preset codes, or any project with a components.json…
setup
Interactive project setup from the ai-project-template — replaces the static SETUPGUIDE.md with a guided, multi-step workflow.
template-guide
Navigate template conventions, audit compliance, and guide upgrades for ai-project-template repos.