productivity▌
6,493 indexed skills · max 10 per page
agent-memory-mcp
davila7/claude-code-templates · Productivity
Persistent, searchable memory bank for AI agents with automatic project documentation sync. \n \n Provides four core MCP tools: memory_search for querying by text/type/tags, memory_write for recording knowledge and decisions, memory_read for retrieving specific entries, and memory_stats for usage analytics \n Organizes memories by type (architecture, patterns, decisions) and supports custom tagging for flexible retrieval and organization \n Runs as an MCP server that syncs with your project work
spring-boot-cache
giuseppe-trisciuoglio/developer-kit · Productivity
Annotation-driven caching abstraction for Spring Boot service methods with multi-provider support. \n \n Supports multiple cache providers (ConcurrentMap, Caffeine, Redis, Ehcache, JCache) via pluggable CacheManager beans without changing business code \n Provides @Cacheable , @CachePut , @CacheEvict , and @Caching annotations with SpEL-based key generation, conditional caching, and synchronization control \n Includes configuration patterns for TTL, capacity limits, and scheduled eviction; integ
prompt-optimizer
daymade/claude-code-skills · Productivity
Transform vague prompts into precise, testable specifications using EARS methodology and domain theory grounding. \n \n Converts natural language requirements into five EARS patterns (ubiquitous, event-driven, state-driven, conditional, unwanted behavior) with explicit triggers, conditions, and measurable criteria \n Applies relevant domain frameworks (GTD, BJ Fogg, Gestalt, Zero Trust, etc.) to enhance requirements with established best practices \n Generates structured prompts using Role/Skill
hubspot-integration
sickn33/antigravity-awesome-skills · Productivity
Expert patterns for HubSpot CRM integration with OAuth, batch operations, and webhooks. \n \n Covers OAuth 2.0 and private app token authentication methods for public and single-account integrations \n Includes CRUD operations for CRM objects, associations, and custom objects \n Supports batch operations and webhook configuration to avoid polling and individual API requests \n Works with both Node.js and Python SDKs \n
recall
arjunkmrm/recall · Productivity
Full-text search across past Claude Code and Codex sessions with BM25 ranking and flexible query syntax. \n \n Supports keyword search, exact phrases, boolean operators (AND, OR, NOT), and prefix matching across all indexed conversations \n Filters results by project path, recency (days), and source (Claude Code or Codex sessions) \n Includes session resumption commands and a transcript reader to view raw conversation files \n Automatically indexes user and assistant messages from ~/.claude/proj
parallel-agents
sickn33/antigravity-awesome-skills · Productivity
Coordinate multiple specialized agents for complex tasks requiring diverse expertise domains. \n \n Includes 17 pre-built agents covering security, backend, frontend, testing, DevOps, database, mobile, API design, debugging, documentation, performance, planning, SEO, and game development \n Supports three orchestration patterns: comprehensive analysis (discovery through synthesis), feature review (domain-specific agents plus testing), and security audits (auditor plus penetration tester) \n Agen
save-thread
nowledge-co/community · Productivity
Deprecated compatibility skill for resumable handoffs in generic skill environments, not real thread capture. \n \n Kept for backward compatibility only; use save-handoff instead for generic npx skills environments \n Cannot promise lossless thread import in runtimes without stable transcript APIs or session file access \n Creates a structured resumable handoff summary (goal, decisions, files, risks, next steps) rather than a full session capture \n Real thread save with actual transcript import
open-autoglm-phone-agent
aradotso/trending-skills · Productivity
Skill by ara.so — Daily 2026 Skills collection.
market-segments
phuryn/pm-skills · Productivity
Identify and analyze 3-5 distinct customer segments for your product, understanding their unique jobs-to-be-done, desired outcomes, pain points, and product fit. Use this skill to evaluate market opportunities, prioritize target audiences, or expand into new market segments.
m07-concurrency
zhanghandong/rust-skills · Productivity
Rust concurrency design: workload classification, sharing models, and Send/Sync requirements. \n \n Guides decision-making between threads (CPU-bound), async (I/O-bound), and hybrid approaches before implementing \n Covers Send/Sync marker traits, thread-safety patterns (Arc, Mutex, RwLock, channels), and atomic operations with quick reference tables \n Includes mandatory \"trace up\" to domain skills (web, fintech, cloud-native, CLI) to align concurrency design with architectural constraints \n