Top Agent Skills

25837 skills

neuralblitz
Automation
Designs and implements CI/CD pipelines, infrastructure automation, and workflow optimization to reduce manual tasks.
1
neuralblitz
Biophysics
Applies physical principles to model biological systems, including protein folding, membrane transport, molecular forces, and neural signaling.
1
neuralblitz
Blue Green
Designs and implements blue-green deployment architectures with environment switching, traffic routing, automated rollback, and health monitoring for zero-downtime releases.
1
neuralblitz
Clean Code
Improves code readability and maintainability by applying SOLID principles, meaningful naming, small functions, proper error handling, and DRY practices.
1
neuralblitz
Compliance
Guides implementation of data protection and privacy controls for regulatory frameworks such as GDPR, HIPAA, SOC 2, and PCI-DSS, including audits, retention policies, and data subject requests.
1
neuralblitz
Containers
Provides expertise in containerization technology, covering container creation, orchestration integration, security hardening, and operational best practices for production workloads.
1
neuralblitz
API Gateway
Designs API gateway architecture and implements routing, authentication, rate limiting, transformation, caching, logging, and circuit breaking.
1
neuralblitz
Apple Notes
Manage Apple Notes from the terminal using the `memo` CLI: create, view, edit, delete, search, move, and export notes on macOS.
1
neuralblitz
Application
Designs application architecture, selects patterns, structures code modules, and manages dependencies for new projects.
1
neuralblitz
Browser Use
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, or extract information from web pages.
1
neuralblitz
Code Review
Provides code review best practices, checklists, and example feedback for quality, security, performance, and maintainability.
1
neuralblitz
Biochemistry
Analyzes biochemical processes, including enzyme kinetics, metabolic pathways, and biomolecule characterization, with practical techniques and examples.
1
neuralblitz
Cell Biology
Explains cell structure, organelles, signaling pathways, and cell cycle regulation for biology study and research.
1
neuralblitz
Coding Agent
Runs Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.
1
neuralblitz
Create Skill
Guides users through creating effective Agent Skills for Cursor, covering skill structure, best practices, and SKILL.md format.
1
neuralblitz
Anti Patterns
Identifies common software anti-patterns in code and suggests refactoring solutions to improve code quality.
1
mariadb-corporation
Mariadb Dump
Explains MariaDB-specific defaults and traps of the mariadb-dump client for dev workflows, including consistent backups, routines/events flags, diffable dumps, idempotent seeding, and restore via the mariadb client.
0
mariadb-corporation
Mariadb Show
Explains MariaDB-specific SHOW statement syntax, including replication terminology, filtering rules, and diagnostic commands like SHOW EXPLAIN and SHOW ANALYZE.
0
mariadb-corporation
Mariadb Delete
Covers MariaDB-specific DELETE syntax and behavior, including RETURNING, multi-table forms, temporal-table deletion, and DELETE vs TRUNCATE differences.
0
mariadb-corporation
Mariadb Import
Bulk-load text files into MariaDB tables using the mariadb-import client, covering table-name-from-filename rules, TAB defaults, --local vs server-side reads, duplicate handling, and parallel loads.
0
mariadb-corporation
Mariadb Insert
Documents MariaDB-specific INSERT syntax and behavior, including RETURNING, ON DUPLICATE KEY UPDATE, INSERT IGNORE, and various forms and modifiers, to help write and review INSERT statements.
0
mariadb-corporation
Mariadb Update
Documents MariaDB-specific UPDATE syntax and behavior, including single-table vs multi-table forms, assignment evaluation order, RETURNING with OLD_VALUE(), temporal tables, and common pitfalls. Use when writing, generating, or reviewing UPDATE statements targeting MariaDB.
0
mariadb-corporation
Mariadb Explain
Explains MariaDB-specific EXPLAIN and ANALYZE syntax, including FORMAT=JSON, SHOW EXPLAIN/ANALYZE FOR, and the standalone ANALYZE statement that executes queries.
0
mariadb-corporation
Mariadb Features
Explains MariaDB-specific features and behaviors that differ from MySQL, including system-versioned tables, RETURNING, sequences, and version-specific defaults, to help optimize and migrate MariaDB applications.
0
mariadb-corporation
Mysql To Mariadb
Guides developers migrating applications from MySQL to MariaDB, covering authentication, JSON handling, replication, and SQL syntax differences.
0
mariadb-corporation
Mariadb Drop User
Explains MariaDB-specific behavior of DROP USER and RENAME USER, including multiple accounts per statement, IF EXISTS handling, active-connection warnings, and effects on privileges and definers. Use when writing or reviewing account-lifecycle SQL for MariaDB.
0
mariadb-corporation
Mariadb Drop Table
Documents MariaDB-specific DROP TABLE syntax and behavior, including RESTRICT/CASCADE no-ops, DROP TEMPORARY TABLE, partial drops, IF EXISTS warnings, foreign key references, views, triggers, implicit commit, and WAIT/NOWAIT. Use when writing, generating, or reviewing DROP TABLE statements targeting MariaDB.
0
mariadb-corporation
Mariadb Alter Table
Documents MariaDB-specific ALTER TABLE syntax and behavior, including online DDL algorithms, lock modes, lock timeouts, idempotent subclauses, system versioning, and partition operations, for writing and reviewing schema migrations.
0
mariadb-corporation
Mariadb Create User
Documents MariaDB-specific CREATE USER syntax and behavior, including authentication chaining, TLS options, resource limits, password expiry, and account locking, to help write accurate statements.
0
mariadb-corporation
Mariadb Create Index
Explains MariaDB-specific CREATE INDEX and DROP INDEX syntax, including mapping to ALTER TABLE, prefix lengths for TEXT/BLOB, lack of expression indexes, real descending indexes, IGNORED indexes, and index kinds. Use when writing or reviewing index statements for MariaDB.
0
mariadb-corporation
Mariadb Create Table
Covers MariaDB-specific CREATE TABLE syntax and behavior, including atomic CREATE OR REPLACE, invisible and compressed columns, temporal PERIOD clauses, ignored indexes, encryption, page compression, and the utf8/utf8mb4 distinction.
0
mariadb-corporation
Mariadb Rename Table
Provides MariaDB-specific syntax, atomicity, privilege requirements, and restrictions for RENAME TABLE statements, including multi-table swaps, temporary tables, and cross-database moves.
0
mariadb-corporation
Mariadb JSON Functions
Catalog of MariaDB JSON functions with signatures and semantics, covering constructors, extraction, modification, merging, validation, introspection, and formatting. Use when writing SQL that builds, queries, or alters JSON data in MariaDB.
0
mariadb-corporation
Mariadb Truncate Table
Explains MariaDB-specific TRUNCATE TABLE semantics: DROP privilege, implicit commit, AUTO_INCREMENT reset, trigger and FK behavior, and restrictions on system-versioned tables and sequences.
0
mariadb-corporation
Mariadb Create Database
Provides MariaDB-specific syntax and behavior for CREATE, ALTER, and DROP DATABASE statements, including OR REPLACE vs IF NOT EXISTS, charset and collation defaults, and the absence of RENAME DATABASE.
0
mariadb-corporation
Mariadb Set Transaction
Explains MariaDB-specific SET TRANSACTION behavior, including scope rules, isolation levels, and innodb_snapshot_isolation conflict detection, to help write correct transaction statements and retry logic.
0
mariadb-corporation
Mariadb Create Procedure
Documents MariaDB-specific CREATE PROCEDURE syntax, including OR REPLACE/IF NOT EXISTS exclusivity, DEFINER and SQL SECURITY behavior, parameter modes, DEFAULT values, advisory characteristics, privilege requirements, and the client-side DELIMITER convention.
0
mariadb-corporation
Mariadb Connector C Usage
Explains MariaDB Connector/C's `mysql_`-prefixed API, connection setup, result handling, prepared statements, and transaction behavior for writing or reviewing C code that talks to MariaDB.
0
mariadb-corporation
Mariadb Connector J Usage
Explains MariaDB Connector/J JDBC driver behavior: auto-registration, URL schemes, prepared statement handling, batch inserts, transactions, fetch sizes, pooling, and failover. Use when writing or reviewing Java code that talks to MariaDB with the mariadb-java-client driver.
0
mariadb-corporation
Mariadb Schema Management
Manages a MariaDB database schema across its lifecycle using the MariaDB Schema Management plugin via the mariadb-shell MCP server, covering project creation, versioned development, releases, and deployment.
0
mariadb-corporation
Mariadb Query Optimization
Provides best practices for optimizing MariaDB queries, including indexing strategies, EXPLAIN analysis, pagination, histogram statistics, and MariaDB-specific optimizer settings.
0
mariadb-corporation
Mariadb Aggregate Functions
Reference for MariaDB aggregate functions, covering counting, totals, extrema, string and bitwise aggregation, and statistical functions, with guidance on NULL handling and common pitfalls.
0
mariadb-corporation
Mariadb Connector J Install
Adds the MariaDB JDBC driver to a build, configures connection URLs and datasources, and sets up TLS with the correct sslMode and certificate options.
0
mariadb-corporation
Mariadb Date Time Functions
Reference for MariaDB's built-in date and time functions, covering current time, arithmetic, differences, extraction, parsing, formatting, Unix time, time-zone conversion, construction, and Oracle-compatible helpers, with guidance on version-specific behavior and common pitfalls.
0
mariadb-corporation
Mariadb REST Service Create
Creates a MariaDB REST Service by configuring the REST metadata schema, creating the service and REST schema, and exposing tables, views, and routines as REST endpoints via SQL DDL in mariadb-shell.
0
mariadb-corporation
Mariadb Schema Create Script
Guides writing MariaDB-specific database create scripts with best practices for schema objects, session settings, and UUID usage.
0
mariadb-corporation
Mariadb Connector Cpp Install
Installs and configures MariaDB Connector/C++ across Linux, Windows, and source builds, covering prerequisites, linking, and runtime plugin setup.
0
mariadb-corporation
Mariadb Connector Nodejs Usage
Explains MariaDB Connector/Node.js specifics: Promise vs Callback API, placeholders, BigInt handling, batch inserts, query streams, pooling, transactions, and prepared statements, for writing or reviewing Node.js code that uses the `mariadb` package.
0
mariadb-corporation
Mariadb Connector Odbc Install
Installs and configures MariaDB Connector/ODBC, covering driver manager registration, DSN setup, connection-string keywords, and TLS options for Linux, macOS, and Windows.
0
mariadb-corporation
Mariadb Connector Python Usage
Explains MariaDB Connector/Python's DB API 2.0 behavior, including qmark placeholders, autocommit, prepared statements, buffered cursors, connection pooling, and error handling, for writing and reviewing Python code that uses the mariadb module.
0
mariadb-corporation
Mariadb Connector Nodejs Install
Installs and configures the MariaDB Connector/Node.js npm package, covering API entry points, TLS, and pooling.
0
mariadb-corporation
Mariadb Schema Management Develop
Develop the next version of a MariaDB Schema Management (MSM) schema by editing the development script and splitting large sections into SOURCE-included files.
0
mariadb-corporation
Mariadb Schema Management Release
Prepare a MariaDB Schema Management (MSM) version release by snapshotting the development script, filling the generated update script with the actual migration, and then generating the deployment script.
0
mariadb-corporation
Mariadb REST Service Authorization
Configure authentication and authorization for a MariaDB REST Service: create REST auth apps, link them to services, add REST users, and manage REST roles and privileges.
0
auto-skiller
Sketch
Builds interactive HTML sketches with working states, transitions, and a shared CSS theme system for design exploration.
1
auto-skiller
To Prd
Turns the current conversation context and codebase understanding into a PRD and publishes it to the project issue tracker with a triage label.
1 · bundle
auto-skiller
Grill Me
Interviews the user about a plan or design, resolving each branch of the decision tree one question at a time until reaching shared understanding.
1 · bundle
auto-skiller
UI Styling
Builds accessible React UIs with shadcn/ui components, Tailwind CSS utility styling, and canvas-based visual design systems.
1 · bundle
auto-skiller
Code Exploration
Analyzes codebases to understand existing features, tracing entry points, execution paths, architecture layers, patterns, and dependencies before new development.
1
auto-skiller
Edit Article
Restructures article sections, improves clarity, and tightens prose while respecting information dependencies.
1 · bundle