productivity▌
6,493 indexed skills · max 10 per page
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.
component-refactoring
langgenius/dify · Productivity
Refactor high-complexity React components in Dify frontend with structured patterns and incremental extraction. \n \n Targets components with complexity > 50 or line count > 300; use pnpm analyze-component --json to measure and pnpm refactor-component to generate refactoring prompts \n Six core patterns: custom hooks for state/logic, sub-components for UI sections, simplified conditionals, API/data extraction, modal management, and form logic \n Dify-specific conventions for context providers, w
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
nansen-prediction-markets
nansen-ai/nansen-cli · Productivity
All commands: nansen research prediction-market <sub> [options] (alias: nansen research pm <sub>)
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
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 \"
durable-objects
cloudflare/skills · Productivity
Build stateful, coordinated applications on Cloudflare's edge with persistent storage and RPC methods. \n \n Designed for coordination patterns: chat rooms, multiplayer games, booking systems, and per-entity state management using deterministic routing via getByName() \n Includes SQLite storage with synchronous sql.exec() , KV storage, alarms for scheduled per-entity work, and WebSocket support \n Provides RPC method calls (preferred over fetch handlers), blockConcurrencyWhile() for initializati
debugger
shubhamsaboo/awesome-llm-apps · Productivity
Systematic debugging and root cause analysis for identifying and fixing software issues. \n \n Provides a structured six-step debugging process: understand the problem, gather information, form hypotheses, test hypotheses, identify root cause, and fix with verification \n Includes practical strategies like binary search for code isolation, rubber duck debugging, strategic logging patterns, and git bisect for regression tracking \n Documents common bug patterns (off-by-one errors, null references
github-trending
hoodini/ai-agents-skills · Productivity
Scrape and display GitHub trending repositories with language and time-period filtering. \n \n Provides two approaches: direct web scraping of github.com/trending using Cheerio, or GitHub Search API as an official alternative \n Extracts repository metadata including owner, name, description, programming language, star count, forks, and stars gained in the selected period \n Supports filtering by programming language and time range (daily, weekly, monthly) \n Includes ready-to-use Next.js API ro
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