productivity▌
6,493 indexed skills · max 10 per page
day5-fetch-and-digest
ai-native-camp/camp-1 · Productivity
Build three content-fetching and learning skills by creating fetch-tweet, fetch-youtube, and content-digest from scratch. \n \n Learn a two-phase workflow (EXPLAIN + EXECUTE in turn 1, QUIZ in turn 2) that enforces hands-on practice before assessment \n Create fetch-tweet to retrieve and translate X/Twitter content via API, then fetch-youtube to extract and correct YouTube captions using yt-dlp and web search \n Build content-digest with Quiz-First learning methodology, which improves retention
flutter-architecture
flutter/skills · Productivity
MVVM architecture for Flutter apps with unidirectional data flow and strict layer separation. \n \n Implements three-layer architecture: Data Layer (Services and Repositories), Domain Layer (UseCases for complex logic), and UI Layer (ViewModels and Views) \n Uses provider for dependency injection and ListenableBuilder for reactive UI updates with the Command pattern for user interactions \n Enforces unidirectional data flow: data flows down from Repositories to ViewModels to Views; events flow u
graphql-schema
apollographql/skills · Productivity
Industry best practices guide for designing intuitive, performant, and maintainable GraphQL schemas. \n \n Covers core design principles including client-centric type organization, explicit nullability patterns, and backwards-compatible evolution strategies \n Provides reference documentation on types, naming conventions, cursor-based pagination, error modeling, and security considerations \n Includes practical patterns for interfaces, unions, input types, mutations, and ID strategies with code
asc-workflow
rudrankriyam/app-store-connect-cli-skills · Productivity
Define, validate, and run repo-local multi-step automations with .asc/workflow.json and asc workflow commands. \n \n Author workflows in .asc/workflow.json with support for global/workflow-level env, before/after hooks, error handlers, and conditional steps using if directives \n Run workflows locally or in CI with asc workflow run <name> , preview execution with --dry-run , and validate structure with asc workflow validate \n Supports sub-workflows (including private helper workflows), run
plugin-structure
anthropics/claude-plugins-official · Productivity
Standardized directory structure and manifest configuration for Claude Code plugins with automatic component discovery. \n \n Conventional layout with auto-discovery: commands, agents, skills, and hooks load automatically from standard directories without explicit registration \n Manifest-driven configuration in .claude-plugin/plugin.json supporting metadata, custom component paths, and optional MCP server definitions \n Portable path references using ${CLAUDE_PLUGIN_ROOT} environment variable f
tdd-workflows-tdd-green
sickn33/antigravity-awesome-skills · Productivity
def product_list(request): products = Product.objects.all() return JsonResponse({'products': list(products.values())})
screenshot-to-code
onewave-ai/claude-skills · Productivity
Convert UI screenshots into production-ready code with accurate styling and structure.
developing-genkit-js
genkit-ai/skills · Productivity
Ensure the genkit CLI is available.
error-detective
sickn33/antigravity-awesome-skills · Productivity
You are an error detective specializing in log analysis and pattern recognition.
flutter-state-management
flutter/skills · Productivity
Implement MVVM and Unidirectional Data Flow patterns for Flutter state management. \n \n Provides decision logic to differentiate between ephemeral state (local UI state via setState ) and app state (shared state via MVVM and provider package) \n Enforces strict separation of concerns: data layer (Repository as Single Source of Truth), logic layer (ViewModel extending ChangeNotifier ), and UI layer (pure functions of immutable state) \n Includes complete code examples for implementing the MVVM p