productivity▌
6,493 indexed skills · max 10 per page
flutter-managing-state
flutter/skills · Productivity
Manage ephemeral and app-level state in Flutter using StatefulWidget, MVVM, and Provider. \n \n Distinguishes between ephemeral state (single widget, managed with setState() ) and app state (shared across widgets, managed with MVVM and provider package) \n Implements unidirectional data flow with a single source of truth: Models handle data, ViewModels manage UI state via ChangeNotifier , Views consume and display state \n Provides sequential workflow for MVVM implementation: define Repository,
mobile-touch
dylantarre/animation-principles · Productivity
Disney's 12 animation principles applied to iOS and Android gestures, haptics, and native motion design. \n \n Covers all 12 principles with mobile-specific implementations: squash & stretch via rubber-banding, anticipation through long-press previews, staging with sheet presentations, and arc-based swipe-to-dismiss curves \n Provides platform-specific code examples for iOS spring animations and Android Material spring physics, plus haptic feedback pairing guidelines \n Establishes timing t
nansen-prediction-markets
nansen-ai/nansen-cli · Productivity
All commands: nansen research prediction-market <sub> [options] (alias: nansen research pm <sub>)
gws-workflow-meeting-prep
googleworkspace/cli · Productivity
Fetch your next meeting's agenda, attendees, and linked documents from Google Calendar. \n \n Retrieves the upcoming event with full attendee list and description details \n Supports multiple calendar selection via --calendar flag (defaults to primary calendar) \n Read-only operation; never modifies calendar data \n Output formats include JSON, table, YAML, and CSV for integration flexibility \n
redux
vercel-labs/json-render · Productivity
Redux adapter for json-render's StateStore interface. Wire a Redux store (or Redux Toolkit slice) as the state backend for json-render.
copilot-usage-metrics
github/awesome-copilot · Productivity
Retrieve and display GitHub Copilot usage metrics for organizations and enterprises. \n \n Supports both organization-level and enterprise-level metrics queries, with optional filtering by specific date (YYYY-MM-DD format) \n Provides aggregated metrics (total active users, acceptance rates, suggestions, chat interactions) and per-user breakdowns via separate commands \n Requires GitHub Enterprise Cloud, appropriate token permissions ( manage_billing:copilot or read:enterprise scope), and the \"
shadcn
vercel-labs/json-render · Productivity
Pre-built shadcn/ui component definitions and implementations for json-render. Provides 36 components built on Radix UI + Tailwind CSS.
variant-analysis
trailofbits/skills · Productivity
Find similar vulnerabilities and bugs across codebases using pattern-based analysis. \n \n Guides a five-step process: understand root cause, create exact match, identify abstraction points, iteratively generalize patterns, and analyze results with confidence/exploitability triage \n Supports ripgrep for quick searches, Semgrep for simple pattern matching, and CodeQL for cross-function data flow analysis \n Includes ready-to-use CodeQL and Semgrep templates for Python, JavaScript, Java, Go, and
gtm-board-and-investor-communication
github/awesome-copilot · Productivity
Structure board meetings, investor updates, and executive communication that builds trust and drives decisions — not slide decks that nobody reads.
flutter-working-with-databases
flutter/skills · Productivity
SQLite and offline-first data layer architecture for Flutter apps with structured local persistence. \n \n Separates data layer into stateless Services (raw data wrappers) and business-logic Repositories (single source of truth per domain entity) \n Implements offline-first synchronization: reads yield cached local data immediately then fetch remote updates; writes save locally first, then attempt API sync with background queue fallback \n Covers SQLite setup with safe parameterized queries, Dom