Help us improve
Share bugs, ideas, or general feedback.
From frontend-craft
Guides selection and implementation of browser storage APIs (localStorage, sessionStorage, IndexedDB, cookies) with security, cleanup, and quota strategies.
npx claudepluginhub bovinphang/frontend-craftHow 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
根据数据大小、安全要求和生命周期选择合适的客户端存储方案。
Persist mobile app data using AsyncStorage for preferences, SecureStore for tokens, MMKV for fast key-value, and SQLite for relational data.
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.
Implements secure frontend coding practices for XSS prevention, safe DOM manipulation, output sanitization, Content Security Policy, and client-side vulnerability fixes.
Share bugs, ideas, or general feedback.
根据数据大小、安全要求和生命周期选择合适的客户端存储方案。
Load references/storage-patterns.md for storage selection tables, localStorage/sessionStorage wrappers, IndexedDB examples, cookie helpers, and sensitive-data rules.
产出统一的 storage/cookie/db 封装,key 有命名空间,数据有过期或清理策略,敏感数据只进入合适的安全边界。
fec-security-review — token、隐私数据和 XSS 读取风险深审。fec-pwa-implementation — Service Worker 离线缓存和 installability。fec-data-fetching — server state 和 API 缓存,不负责浏览器持久化。