productivity▌
6,493 indexed skills · max 10 per page
wordpress-performance-best-practices
bartekmis/wordpress-performance-best-practises · Productivity
WordPress performance optimization guidelines across database, caching, assets, and plugin architecture. \n \n 34 rules organized by impact across 8 categories: database optimization, caching strategies, asset management, theme performance, plugin architecture, media optimization, API/AJAX, and advanced patterns \n Covers critical areas including WP_Query optimization, transient and object cache usage, proper asset enqueueing, and REST API caching \n Designed for code review and generation workf
wordpress-setup
jezweb/claude-skills · Productivity
Connect to a WordPress site and verify working access via WP-CLI or REST API. Produces a verified connection config ready for content management and Elementor editing.
wordpress-plugin-core
jezweb/claude-skills · Productivity
Secure WordPress plugin development with hooks, database interactions, Settings API, custom post types, and REST API. \n \n Covers three architecture patterns (Simple, OOP, PSR-4) plus the Security Trinity (sanitize input, validate logic, escape output) with 29 documented vulnerability prevention patterns \n Includes critical security foundations: unique prefixes, ABSPATH checks, nonce verification, prepared statements, and capability checks with real 2025-2026 CVE examples \n Addresses WordPres
wp-wpcli-and-ops
wordpress/agent-skills · Productivity
WordPress operations and automation via WP-CLI with safe search-replace, database management, and multisite support. \n \n Covers search-replace for domain migrations, database export/import, plugin/theme/user management, cron inspection, and cache flushing \n Includes built-in guardrails: environment confirmation, dry-run validation, and backup workflows before destructive operations \n Supports multisite operations with site-specific ( --url ) and network-wide ( --network ) targeting \n Enable
wordpress-router
wordpress/agent-skills · Productivity
Classify WordPress codebases and route to the correct workflow for plugins, themes, blocks, and core checkouts. \n \n Runs automated project triage to identify repo type (plugin, theme, block theme, Gutenberg blocks, WP core) and available tooling \n Outputs classification results and decision tree routing to domain-specific skills based on user intent and project kind \n Requires repo root access and bash/Node filesystem operations; some workflows need WP-CLI \n Targets WordPress 6.9+ with PHP
wp-performance
wordpress/agent-skills · Productivity
Backend-only WordPress performance profiling and optimization using WP-CLI, Query Monitor, and targeted diagnostics. \n \n Detects and measures performance bottlenecks via WP-CLI doctor/profile commands, Server-Timing headers, and Query Monitor REST API integration without requiring browser access \n Covers five optimization categories: database query reduction, autoloaded options cleanup, object cache configuration, cron task optimization, and remote HTTP call management \n Includes safe verifi
wp-block-development
wordpress/agent-skills · Productivity
WordPress block development for Gutenberg: metadata, registration, rendering, and build workflows. \n \n Covers block creation, block.json configuration, static vs. dynamic rendering, and server-side PHP registration with register_block_type_from_metadata() \n Enforces apiVersion: 3 for WordPress 6.9+ compatibility, including iframe editor support and style isolation \n Handles attribute serialization, deprecations/migrations to prevent \"Invalid block\" errors, and inner blocks composition \n I
wp-plugin-development
wordpress/agent-skills · Productivity
Complete WordPress plugin development workflow from architecture through security and release packaging. \n \n Covers plugin structure, hooks/actions/filters, activation/deactivation/uninstall lifecycle, and Settings API for admin UI and options management \n Includes mandatory security baseline: input validation/sanitization, nonces, capability checks, and parameterized SQL queries via $wpdb->prepare() \n Supports data storage patterns, cron task setup with idempotency, and schema migrations wi
langgraph-persistence
langchain-ai/langchain-skills · Productivity
Durable graph execution with thread-scoped checkpoints, state history, and cross-thread long-term memory. \n \n Three checkpointer options: InMemorySaver for testing, SqliteSaver for local development, PostgresSaver for production; always pass thread_id in config to enable persistence \n Browse and replay from past checkpoints using get_state_history() , fork execution by updating state at a past point, or manually modify state before resuming \n Store API provides cross-thread memory for user p
langgraph-code-review
existential-birds/beagle · Productivity
Catches common bugs in LangGraph state management, graph structure, and async patterns. \n \n Identifies 20+ critical issues including state mutations, missing reducers, invalid conditional edge returns, and checkpointer configuration errors \n Covers state schema problems like improper use of add_messages , full-state returns, and Pydantic models without annotations \n Detects graph structure issues: missing entry points, unreachable nodes, incomplete conditional paths, and undeclared Command d