From frontend-craft
Guides selection and implementation of browser storage (localStorage, sessionStorage, IndexedDB, cookies) with security, quota, and cleanup strategies.
How this skill is triggered — by the user, by Claude, or both
Slash command
/frontend-craft:fec-browser-storageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Choose the appropriate client storage solution based on data size, security requirements, and lifecycle.
Choose the appropriate client storage solution based on data size, security requirements, and lifecycle.
Load references/storage-patterns.md when it comes to storage selection tables, localStorage/sessionStorage wrappers, IndexedDB examples, cookie helpers, and sensitive data rules.
Produce a unified storage/cookie/db package, the key has a namespace, the data has an expiration or cleanup policy, and sensitive data only enters the appropriate security boundary.
npx claudepluginhub bovinphang/frontend-craftGuides on persisting data in React Native/Expo apps using AsyncStorage, SecureStore, MMKV, and SQLite for different use cases.
Adds client-side data persistence to a Meta Display Glasses webapp using localStorage and sessionStorage. Provides helpers for saving settings, caching data, and persisting state.
Detects sensitive data (credentials, tokens, PII) written to unprotected local files, preference stores, or SQLite. Provides guidance for using platform secure storage APIs and avoiding cleartext storage.