productivity▌
6,493 indexed skills · max 10 per page
base44-sdk
base44/skills · Productivity
JavaScript SDK for building features in existing Base44 projects with CRUD operations, authentication, AI agents, and backend functions. \n \n Provides modules for entities (data models), auth, agents, functions, integrations (AI, email, file uploads), analytics, and user management \n Requires an initialized Base44 project with base44/config.jsonc ; use base44-cli skill for new project setup \n Includes critical API reference tables to prevent hallucination of method names (e.g., loginViaEmailP
memory-management
anthropics/knowledge-work-plugins · Productivity
Two-tier memory system that decodes workplace shorthand, acronyms, and internal language for contextual understanding. \n \n CLAUDE.md serves as a hot cache of ~30 frequent contacts, common terms, and active projects; memory/ directory stores the complete glossary, detailed profiles, and project context \n Tiered lookup flow checks CLAUDE.md first (covers 90% of daily decoding), then searches memory/glossary.md, then asks the user for unknown terms \n Supports progressive disclosure: quick parsi
senior-fullstack
sickn33/antigravity-awesome-skills · Productivity
Automated scaffolding, project analysis, and code quality checks for modern fullstack applications. \n \n Three core Python scripts handle fullstack scaffolding, project analysis with performance metrics, and code quality assessment with automated fixes \n Covers React, Next.js, Node.js, GraphQL, PostgreSQL, Docker, Kubernetes, and major cloud platforms (AWS, GCP, Azure) \n Includes reference documentation for tech stack patterns, architecture design, development workflows, and best practices ac
flutter-platform-views
flutter/skills · Productivity
Embed native views and web content into Flutter apps across Android, iOS, macOS, and web platforms. \n \n Supports Android Hybrid Composition (native fidelity) and Texture Layer (Flutter performance), iOS/macOS Hybrid Composition, and web full-page or embedded multi-view modes \n Provides complete Dart and native code templates (Kotlin for Android, Swift for iOS/macOS, JavaScript for web) with factory registration patterns \n Requires decision tree upfront to determine target platform and embedd
humanizer
daleseo/korean-skills · Productivity
Detects and transforms AI-generated Korean text patterns into natural human writing. \n \n Analyzes 24 distinct linguistic patterns across five categories (punctuation, spacing, part-of-speech diversity, vocabulary, structure) grounded in empirical research from the KatFishNet paper (94.88% AUC accuracy for comma patterns) \n Identifies common LLM markers in Korean: excessive commas, rigid spacing consistency, noun overuse, AI buzzwords, and monotonous sentence rhythm \n Rewrites detected text t
ctf-forensics
ljagiello/ctf-skills · Productivity
Comprehensive digital forensics and signal analysis toolkit for CTF challenges across disk, memory, network, and steganography domains. \n \n Covers 15+ forensics categories: disk/memory imaging (Volatility, VM forensics, coredumps), Windows registry/event logs/SAM, Linux logs/Docker, network analysis (PCAP, TLS decryption, SMB, NTLMv2), and browser artifact extraction \n Includes advanced steganography techniques: image LSB/bitplane extraction, PDF multi-layer stego, audio DTMF/FFT/SSTV, SVG ke
base44-cli
base44/skills · Productivity
Initialize, configure, and deploy Base44 projects via CLI commands for entities, functions, agents, and site hosting. \n \n Handles project creation, authentication, and resource management through npx base44 commands; check base44/config.jsonc existence to determine whether to use this skill (new projects) or hand off to base44-sdk (existing projects) \n Supports entity schema definition, backend function deployment with automations (CRON, entity hooks, scheduled triggers), agent configuration,
flutter-concurrency
flutter/skills · Productivity
Background JSON parsing and state management for jank-free Flutter UI rendering. \n \n Provides decision tree for choosing between manual serialization ( dart:convert ) and code generation ( json_serializable ) based on model complexity \n Supports three concurrency strategies: main-thread async/await for small payloads, short-lived Isolate.run() for heavy one-off computations, and long-lived isolates with ReceivePort / SendPort for continuous two-way communication \n Includes platform-aware fal
dev-browser
sawyerhood/dev-browser · Productivity
Browser automation with persistent page state across sequential scripts. \n \n Two modes: standalone Chromium (default) or extension mode connecting to user's existing Chrome browser with authentication already in place \n Discover page elements via ARIA snapshot accessibility tree, then interact using element references; alternatively read source code to write direct selectors \n Small, focused scripts that run incrementally—each script does one action (navigate, click, fill, check), then you e
bash-scripting
sickn33/antigravity-awesome-skills · Productivity
Specialized workflow for creating robust, production-ready bash scripts with defensive programming patterns, comprehensive error handling, and automated testing.