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 Poorgramer-Zack/dart-expert-skills --skill flutter-secure-storagegit clone --depth 1 https://github.com/Poorgramer-Zack/dart-expert-skillsWrote 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/poorgramer-zack/dart-expert-skills/flutter-secure-storage)<a href="https://agentmods.dev/skills/poorgramer-zack/dart-expert-skills/flutter-secure-storage"><img src="https://agentmods.dev/badge/skills/poorgramer-zack/dart-expert-skills/flutter-secure-storage/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/poorgramer-zack/dart-expert-skills/flutter-secure-storage"><img src="https://agentmods.dev/badge/skills/poorgramer-zack/dart-expert-skills/flutter-secure-storage.svg" alt="Reviewed on agentmods" width="80" 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.00195 | $0.02440 |
| Opus 5 | $0.00097 | $0.01220 |
| Sonnet 5 | $0.00039 | $0.00488 |
| Haiku 4.5 | $0.00019 | $0.00244 |
Grade A, and why
managing-secure-storage 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 11d 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 — 341 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SecureStorage Encrypted Storage Guide (v10.x)
Goal
Implement encrypted key-value storage for sensitive data using flutter_secure_storage. Leverages platform-native secure storage (iOS Keychain, Android Keystore) for maximum security.
Process
Phase 1: Install Dependencies
dependencies:
flutter_secure_storage: ^10.0.0
Phase 2: Platform Configuration
Android (android/app/build.gradle):
android {
compileSdkVersion 34 // Minimum 18
defaultConfig {
minSdkVersion 18
}
}
Android Backup Exclusion (AndroidManifest.xml):
<application
android:fullBackupContent="@xml/backup_rules"
android:allowBackup="true">
Android Backup Rules (res/xml/backup_rules.xml):
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<!-- Exclude secure storage from Google Drive backups -->
<exclude domain="sharedpref" path="FlutterSecureStorage"/>
</full-backup-content>
iOS: No additional configuration required (uses Keychain by default).
Phase 3: Create Secure Storage Wrapper
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
class SecureStorage {
static const _storage = FlutterSecureStorage(
aOptions: AndroidOptions(
encryptedSharedPreferences: true,
resetOnError: true, // Auto-reset on biometric change invalidation
),
iOptions: IOSOptions(
accessibility: KeychainAccessibility.first_unlock,
accountName: AppleOptions.defaultAccountName,
),
);
// Access Token
static Future<String?> getAccessToken() => _storage.read(key: _Keys.accessToken);
static Future<void> setAccessToken(String value) => _storage.write(key: _Keys.accessToken, value: value);
static Future<void> deleteAccessToken() => _storage.delete(key: _Keys.accessToken);
// Refresh Token
static Future<String?> getRefreshToken() => _storage.read(key: _Keys.refreshToken);
static Future<void> setRefreshToken(String value) => _storage.write(key: _Keys.refreshToken, value: value);
// API Key
static Future<String?> getApiKey() => _storage.read(key: _Keys.apiKey);
static Future<void> setApiKey(String value) => _storage.write(key: _Keys.apiKey, value: value);
// User Credentials (for biometric unlock)
static Future<String?> getStoredPassword() => _storage.read(key: _Keys.password);
static Future<void> setStoredPassword(String value) => _storage.write(key: _Keys.password, value: value);
// Clear all secure data (logout)
static Future<void> clearAll() => _storage.deleteAll();
// Check if key exists
static Future<bool> hasAccessToken() async {
final token = await getAccessToken();
return token != null && token.isNotEmpty;
}
}
class _Keys {
static const String accessToken = 'access_token';
static const String refreshToken = 'refresh_token';
static const String apiKey = 'api_key';
static const String password = 'stored_password';
}
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.
- 11d ago First seen · 341 lines · 195 tokens per session scan A f69924de1d97
managing-secure-storage is a skill published in the GitHub repository Poorgramer-Zack/dart-expert-skills (7 stars, last pushed 1mo ago), licensed MIT. It adds 195 tokens to every session and 2,440 once invoked, about $0.0010 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
at_client_skills-sdk
Use this skill when a developer is building a Dart or Flutter app that depends on atclient or atclientflutter from pub.dev, stores or shares data via the Atsign Protocol, needs onboarding (CRAM new-atsign, atKeys file, keychain, APKAM) or APKAM enrollment, or asks about AtCollection , CItem , Query , sub-collections…
signals-hooks
Comprehensive reactive state hooks for integration with flutterhooks.
signals-flutter
Highly optimized Flutter UI bindings and GPU rendering for reactive signals.
flutter-pre-caching
Use when preloading fonts, asset/network images, Lottie/Rive animations, local JSON/config, warming initial API data, or optimizing Flutter Web startup.
bloc
Use when creating a Cubit or Bloc, modeling state with sealed classes or status enums, wiring BlocBuilder/BlocListener/BlocProvider, writing bloc tests, or choosing between Cubit and Bloc.
firebase-messaging
Use when setting up Firebase Cloud Messaging, managing permissions and tokens, handling background/foreground notification taps, or dispatching messages server-side (HTTP v1).