Skills.

Give your AI a better way to work.

A skill is a set of written instructions that teaches an AI how to do one job the way it should be done: review a pull request, plan a migration, write the release notes.

Install one here and it travels with your account into Claude, Claude Code, Cursor and every other client you sign in with.

Category: Databases & data

2,461 results · page 24 of 83

  • db-listSkillDatabases & data

    Manage the 1C database registry (.v8-project.). Use when working with the database registry — list databases, register a database in the registry, see which databases exist.

    Ready to connect★ 601

    github.com/nikolay-shirokov/cc-1c-skills578 stars

    View details
  • db-load-dtSkillDatabases & data

    Load a 1C infobase from a DT file — full overwrite of the database (configuration + data). Use when you need to load an infobase archive, restore a database, or load a dt

    Ready to connect★ 601

    github.com/nikolay-shirokov/cc-1c-skills578 stars

    View details
  • db-load-gitSkillDatabases & data

    Load changes from Git into a 1C database. Use when you need to load changes from git, update the database from a repository, or do a partial load from a commit.

    Ready to connect★ 601

    github.com/nikolay-shirokov/cc-1c-skills578 stars

    View details
  • db-repoSkillDatabases & data

    Working with the 1C configuration repository. Use when you need to lock objects, commit changes to the configuration repository, get changes from it, or connect a database to the repository

    Ready to connect★ 601

    github.com/nikolay-shirokov/cc-1c-skills578 stars

    View details
  • db-runSkillDatabases & data

    Launch 1C:Enterprise. Use when you need to start 1C, open a database, or launch the enterprise.

    Ready to connect★ 601

    github.com/nikolay-shirokov/cc-1c-skills578 stars

    View details
  • db-updateSkillDatabases & data

    Updates a 1C database configuration. Use when you need to update the database or apply a configuration, UpdateDBCfg

    Ready to connect★ 601

    github.com/nikolay-shirokov/cc-1c-skills578 stars

    View details
  • web-infoSkillDatabases & data

    Apache and 1C web publication status — whether the server is running, which databases are published, errors. Use when the user asks about web server status, published databases, or whether Apache is working.

    Ready to connect★ 601

    github.com/nikolay-shirokov/cc-1c-skills578 stars

    View details
  • web-unpublishSkillDatabases & data

    Removing a 1C web publication from Apache. Use when the user asks to remove a publication or delete web access to the database.

    Ready to connect★ 601

    github.com/nikolay-shirokov/cc-1c-skills578 stars

    View details
  • Importazione XML in MS Access con mappatura dinamica dei tipiSkillDatabases & data

    Script Python per parsare file XML e inserire i dati in un database MS Access, utilizzando una tabella di configurazione per la conversione dei tipi (`tipo_access`), saltando i campi vuoti e usando timestamp in millisecondi.

    Ready to connect★ 581

    github.com/ecnu-icalk/autoskill581 stars

    View details
  • SQL DDL Generation from Textual Schema DescriptionSkillDatabases & data

    Converts a structured textual description of a data model (entities, associations, foreign keys, merge rules) into SQL CREATE TABLE code. Applies the specified table merges and respects referential integrity constraints.

    Ready to connect★ 581

    github.com/ecnu-icalk/autoskill581 stars

    View details
  • 33-b2b-lead-gen-globalSkillDatabases & data

    Use when the user needs B2B pipeline work — ICP and account lists, prospecting, cold email and LinkedIn outbound sequences, lead scoring, MQL to SQL handoff, sales decks, objection handling, demo scripts, CRM pipeline hygiene, and RevOps reporting. Trigger on 'find leads', 'prospect list', 'cold ema

    Ready to connect★ 574

    github.com/minhnv0807/ai-business-skills574 stars

    View details
  • android-testingSkillDatabases & data

    Write Android unit, Compose UI, and Hilt-integrated tests. Use when designing test behavior with MockK or coroutine test utilities; defer database/WorkManager-specific recipes to the owning feature skill.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • database-hanaSkillDatabases & data

    Apply SAP HANA database standards for SQL parameterization, in-memory engine optimization, dynamic IN query chunking, column aliasing on joins, and datatype casting. Use when writing SQL for SAP HANA, optimizing HANA queries, or diagnosing HANA driver errors.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • database-mongodbSkillDatabases & data

    Apply MongoDB data-modeling, indexing, and query rules from access patterns. Use when designing schemas, choosing embed vs reference, or tuning MongoDB query behavior.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • database-postgresqlSkillDatabases & data

    Apply PostgreSQL standards for migrations, indexing, transactions, and ORM boundaries. Use when editing entities, Prisma schema, migrations, RLS, or query-performance work for PostgreSQL.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • database-query-performanceSkillDatabases & data

    Diagnose database latency with explain plans, index ownership, and query-shape review. Use when a query is slow, an index is missing, or scans and N+1 patterns appear.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • database-redisSkillDatabases & data

    Optimize Redis as cache and coordination infrastructure with TTL, eviction, and latency-aware key design. Use when implementing Redis caching, key invalidation, or Redis performance work.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • database-schema-designSkillDatabases & data

    Design relational or document schemas from access patterns, cardinality, and lifecycle. Use when modeling entities, choosing embed vs normalize, or shaping schema boundaries before implementation.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • database-transactionsSkillDatabases & data

    Define transaction boundaries, locking, and consistency guarantees for multi-step writes. Use when designing atomic operations, retries, idempotency, or concurrent write behavior.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • flutter-concurrencySkillDatabases & data

    Execute long-running tasks in background isolates to keep the UI responsive. Use when performing heavy computations, parsing large datasets, or choosing between async/await and isolates.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • golang-architectureSkillDatabases & data

    Structure Go code with package-first boundaries, `cmd/` and `internal/`, and explicit dependency wiring. Use when shaping project layout, package ownership, or service boundaries in Go; defer Redis/cache-specific implementation recipes to database skills.

    Ready to connect★ 565

    github.com/hoangnguyen0403/agent-skills-standard559 stars

    View details
  • ecto-migrationsSkillDatabases & data

    Rules for Operately schema migrations (app/priv/repo/migrations/) and data migrations (app/lib/operately/data/change_*.ex). Use when adding, renaming, reviewing, or generating database migrations, ecto.gen.migration, Operately.Data.Change* modules, backfills, schema_migrations version collisions, mi

    Ready to connect★ 551

    github.com/operately/operately547 stars

    View details
  • Psql QuerySkillDatabases & data

    Run ad-hoc PostgreSQL analytics queries against dev/test database

    ★ 551

    github.com/oliver-kriska/claude-elixir-phoenix464 stars

    View details
  • clickhouse-js-node-codingSkillDatabases & data

    Write idiomatic application code with the ClickHouse Node.js client (`@clickhouse/client`). Use this skill whenever a user is *building* against the Node.js client — configuring the client, pinging, inserting rows in JSON or raw formats, selecting and parsing results, binding query parameters, manag

    Ready to connect★ 535

    github.com/clickhouse/agent-skills526 stars

    View details
  • clickhouse-js-node-rowbinarySkillDatabases & data

    Generate TypeScript/JavaScript code that reads/decodes AND writes/encodes ClickHouse RowBinary streams for the ClickHouse HTTP server. Use this skill whenever a user wants to parse or produce `RowBinary`, `RowBinaryWithNames`, or `RowBinaryWithNamesAndTypes`. Node.js only, doesn't cover browsers.

    Ready to connect★ 535

    github.com/clickhouse/agent-skills526 stars

    View details
  • clickhouse-js-node-troubleshootingSkillDatabases & data

    Troubleshoot and resolve common issues with the ClickHouse Node.js client (@clickhouse/client). Use this skill whenever a user reports errors, unexpected behavior, or configuration questions involving the Node.js client specifically — including socket hang-up errors, Keep-Alive problems, stream hand

    Ready to connect★ 535

    github.com/clickhouse/agent-skills526 stars

    View details
  • clickstack-otel-collectorSkillDatabases & data

    Use when a user wants to wire an OpenTelemetry collector into a Managed ClickStack service on ClickHouse Cloud, either by deploying a new local collector (Docker run or Docker Compose) or by configuring their own existing collector, then send rich synthetic telemetry and verify it is visible in Clic

    Ready to connect★ 535

    github.com/clickhouse/agent-skills526 stars

    View details
  • create-goalSkillDatabases & data

    Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a project, defining a measurable goal with metric_type and target_value. Writes to the SQLite goals tables via POST /api/goals. Use when the use

    Ready to connect★ 535

    github.com/evolution-foundation/evo-nexus529 stars

    View details
  • data-exploreSkillDatabases & data

    Profiles and explores a dataset to understand its shape, quality, and patterns. Use when encountering a new table or file, checking null rates and column distributions, identifying quality issues such as duplicates or suspicious values, or deciding which dimensions and metrics to analyze. Funct

    Ready to connect★ 535

    github.com/evolution-foundation/evo-nexus529 stars

    View details
  • data-validateSkillDatabases & data

    Validates an analysis before sharing it — methodology, accuracy, and bias checks. Use when reviewing an analysis before a stakeholder presentation, verifying calculations and aggregation logic, checking whether SQL query results look correct, or assessing whether the conclusions are

    Ready to connect★ 535

    github.com/evolution-foundation/evo-nexus529 stars

    View details

What is a skill?

A skill is plain text, usually a SKILL.md file and the scripts it refers to, written for an AI rather than for a person. It carries the steps, the house rules and the examples a good answer needs, so you stop pasting the same briefing into every new chat.

54,764 of the 55,196 skills listed here can be served through ahel today, and they come from public repositories. Each one has its own page with the instructions themselves on it, so you can read what a skill will tell your AI to do before you install it.

Install one and every AI you use gets it

Installing a skill adds it to your gateway and turns it on in the same step. Claude Code surfaces it as a slash command; any client can read the full instructions with the skill_read tool.

Nothing is copied into a project folder. The instructions are served from your account, so the same skill is there in every AI you connect, and turning it off removes it from all of them at once.

See how to connect your AI