Home / Categories / Engineering
⚙️

Engineering

Code review, debugging, architecture, testing, deployment, and development workflows.

Skills 236
Featured 13
📊 Data
RARE

Snowflake Cost Optimizer

Cut Snowflake spend by analyzing warehouse and query costs. Surfaces the most expensive queries, detects anti-patterns like full scans and oversized warehouses, and recommends concrete optimizations.

Community 1.6K
Scanned
snowflake cost-optimization finops
mkdir -p ~/.claude/skills/snowflake-cost && curl -fsSL https://raw.githubusercontent.com/AltimateAI/altimate-code/HEAD/.opencode/skills/cost-report/SKILL.md -o ~/.claude/skills/snowflake-cost/SKILL.md
⚙️ Engineering
RARE

Ansible Playbook Generator

Generate production-ready Ansible playbooks and roles for server configuration and deployment automation. Produces idempotent tasks, proper handlers and variables, role structure, and inventory patterns following Ansible best practices.

Community 1.5K
Scanned
ansible automation configuration-management
mkdir -p ~/.claude/skills/ansible-playbooks && curl -fsSL https://raw.githubusercontent.com/gitjfmd/ansible-skills/main/devops-skills-plugin/skills/ansible-generator/SKILL.md -o ~/.claude/skills/ansible-playbooks/SKILL.md
🌐 Community
RARE

Embedded Systems & Firmware

Write firmware for microcontrollers and RTOS applications. Configure peripherals, write interrupt handlers, implement DMA transfers, debug timing issues, and optimize power consumption for STM32, ESP32, FreeRTOS, and bare-metal targets.

Jeffallan 1.5K
Scanned
embedded firmware iot
mkdir -p ~/.claude/skills/embedded-systems && curl -fsSL https://raw.githubusercontent.com/Jeffallan/claude-skills/HEAD/skills/embedded-systems/SKILL.md -o ~/.claude/skills/embedded-systems/SKILL.md
⚙️ Engineering
RARE

Fastify REST API

Build high-performance Node.js APIs with Fastify. Uses JSON Schema validation and serialization, plugins and decorators, hooks, and typed routes to get maximum throughput with minimal overhead.

Community 1.5K
Scanned
fastify nodejs json-schema
mkdir -p ~/.claude/skills/fastify-rest-api && curl -fsSL https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/HEAD/skills/backend/fastify-rest-api/SKILL.md -o ~/.claude/skills/fastify-rest-api/SKILL.md
⚙️ Engineering
RARE

ML Experiment Tracking

Track ML experiments with reproducible parameters, metrics, and artifacts. Logs runs, compares hyperparameter sweeps, and versions models so training results stay reproducible and easy to compare.

Community 1.5K
Scanned
mlops experiment-tracking reproducibility
mkdir -p ~/.claude/skills/ml-experiment-tracking && curl -fsSL https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/HEAD/skills/machine-learning/ml-experiment-tracking/SKILL.md -o ~/.claude/skills/ml-experiment-tracking/SKILL.md
📊 Data
RARE

Redpanda Streaming

Run Kafka-compatible streaming on Redpanda with rpk. Creates and configures topics, manages clusters, profiles, and connections, wires SASL and TLS and the schema registry, and operates tiered storage — a drop-in Kafka replacement with no ZooKeeper.

Community 1.5K
Scanned
redpanda kafka streaming
mkdir -p ~/.claude/skills/redpanda-streaming && curl -fsSL https://raw.githubusercontent.com/redpanda-data/skills/main/skills/rpk/SKILL.md -o ~/.claude/skills/redpanda-streaming/SKILL.md
⚙️ Engineering
RARE

SARIF Results Parser

Parse, filter, deduplicate, and convert SARIF output from CodeQL, Semgrep, and other scanners. Aggregate findings across tools and wire results into CI/CD without re-running the scans themselves.

Trail of Bits 1.5K
Scanned
security sarif static-analysis
mkdir -p ~/.claude/skills/community-sarif-parsing && curl -fsSL https://raw.githubusercontent.com/trailofbits/skills/HEAD/plugins/static-analysis/skills/sarif-parsing/SKILL.md -o ~/.claude/skills/community-sarif-parsing/SKILL.md
📊 Data
RARE

Soda Data Quality

Catch bad data before it hits dashboards with Soda. Writes SodaCL checks for freshness, completeness, uniqueness, validity, and custom business rules, profiles datasets, and wires quality gates into pipelines and CI to stop bad data early.

Community 1.5K
Scanned
soda data-quality testing
mkdir -p ~/.claude/skills/soda-data-quality && curl -fsSL https://raw.githubusercontent.com/TerminalSkills/skills/main/skills/soda/SKILL.md -o ~/.claude/skills/soda-data-quality/SKILL.md
⚙️ Engineering
RARE

TanStack Start Full-Stack React

Bootstrap and build full-stack React apps with TanStack Start — type-safe file routing, server functions, TanStack Query data loading, Tailwind 4, and shadcn/ui on Vite.

Community 1.5K
Scanned
tanstack-start tanstack-router react
mkdir -p ~/.claude/skills/setup-tanstack-start && curl -fsSL https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/HEAD/skills/development/setup-tanstack-start/SKILL.md -o ~/.claude/skills/setup-tanstack-start/SKILL.md
⚙️ Engineering
RARE

Agentic Actions Auditor

Audit GitHub Actions workflows for prompt-injection and security flaws in AI agent integrations (Claude Code Action, Gemini CLI, OpenAI Codex, GitHub AI Inference). Detects attacker-controlled input reaching agents in CI/CD.

Trail of Bits 1.4K
Scanned
security ci-cd prompt-injection
mkdir -p ~/.claude/skills/community-agentic-actions-auditor && curl -fsSL https://raw.githubusercontent.com/trailofbits/skills/HEAD/plugins/agentic-actions-auditor/skills/agentic-actions-auditor/SKILL.md -o ~/.claude/skills/community-agentic-actions-auditor/SKILL.md
📊 Data
RARE

Apache Flink Streaming

Build stateful stream-processing jobs with Apache Flink. Writes DataStream and SQL jobs, manages windows, watermarks, and state, configures checkpointing, and tunes throughput for real-time pipelines.

Community 1.4K
Scanned
flink stream-processing real-time
mkdir -p ~/.claude/skills/flink-streaming && curl -fsSL https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/HEAD/skills/11-data-pipelines/flink-job-creator/SKILL.md -o ~/.claude/skills/flink-streaming/SKILL.md
⚙️ Engineering
RARE

Buildkite CI

Automate Buildkite pipelines — trigger builds, inspect steps and jobs, and manage pipeline runs. Kicks off builds on branches, monitors step status, and retrieves job logs and annotations for hybrid self-hosted CI/CD.

Community 1.4K
Scanned
buildkite cicd pipelines
mkdir -p ~/.claude/skills/buildkite-automation && curl -fsSL https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/HEAD/skills/tools/buildkite-automation/SKILL.md -o ~/.claude/skills/buildkite-automation/SKILL.md
🌐 Community
RARE

C++ on the Web (Emscripten)

Compile C and C++ to WebAssembly for the modern web with Emscripten. Port existing native libraries, expose clean JS bindings, manage the heap, and ship high-performance C++ components that run in the browser. Sourced from Google Chrome's modern web guidance.

GoogleChrome 1.4K
Scanned
cpp emscripten webassembly
mkdir -p ~/.claude/skills/cpp-on-the-web && curl -fsSL https://raw.githubusercontent.com/GoogleChrome/modern-web-guidance-src/HEAD/skills-src/cpp-on-the-web/SKILL.md -o ~/.claude/skills/cpp-on-the-web/SKILL.md
📊 Data
RARE

Cube Semantic Layer

Define metrics once and serve them everywhere with Cube. Models cubes, dimensions, measures, and joins, exposes a headless semantic layer over REST, GraphQL, and SQL, and tunes pre-aggregations, caching, and multi-tenant security.

Community 1.4K
Scanned
cube semantic-layer headless-bi
mkdir -p ~/.claude/skills/cube-semantic-layer && curl -fsSL https://raw.githubusercontent.com/TerminalSkills/skills/main/skills/cube/SKILL.md -o ~/.claude/skills/cube-semantic-layer/SKILL.md
📊 Data
RARE

Dask Parallel Python

Scale Python and pandas with Dask. Parallelizes DataFrame and array workloads across cores or a cluster, tunes partitions and the task graph, handles larger-than-memory data, and diagnoses spill and shuffle bottlenecks from the dashboard.

Community 1.4K
Scanned
dask parallel pandas
mkdir -p ~/.claude/skills/dask-parallel && curl -fsSL https://raw.githubusercontent.com/K-Dense-AI/scientific-agent-skills/main/skills/dask/SKILL.md -o ~/.claude/skills/dask-parallel/SKILL.md
⚙️ Engineering
RARE

Google ADK RAG Agent

Build RAG agents with Google ADK and Vertex AI RAG Engine. Sets up corpora, the VertexAiRagRetrieval tool, and citation-backed responses for document Q&A on Google Cloud.

Community 1.4K
Scanned
google-adk vertex-ai rag
mkdir -p ~/.claude/skills/adk-rag-agent && curl -fsSL https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/HEAD/skills/ai-agents/adk-rag-agent/SKILL.md -o ~/.claude/skills/adk-rag-agent/SKILL.md
⚙️ Engineering
RARE

SolidJS Fine-Grained Reactivity

Build high-performance UIs with SolidJS. Uses signals, memos, effects, stores, and resources for fine-grained reactivity with no virtual DOM — ideal for granular, low-overhead updates.

Community 1.4K
Scanned
solidjs signals reactivity
mkdir -p ~/.claude/skills/solidjs && curl -fsSL https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/HEAD/skills/development/solidjs/SKILL.md -o ~/.claude/skills/solidjs/SKILL.md
⚙️ Engineering
RARE

TanStack Form

Build type-safe forms with TanStack Form v1 — field-level validation with Zod, async validation, multi-step wizards, dynamic field arrays, and Server Actions with shadcn/ui integration.

Community 1.4K
Scanned
tanstack-form forms zod
mkdir -p ~/.claude/skills/nextjs-tanstack-form && curl -fsSL https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/HEAD/skills/development/nextjs-tanstack-form/SKILL.md -o ~/.claude/skills/nextjs-tanstack-form/SKILL.md
⚙️ Engineering
RARE

Angular Signals

Implement signal-based reactive state in Angular v20+. Uses signal(), computed(), linkedSignal(), and effect() for fine-grained reactivity and converts legacy BehaviorSubject/Observable patterns to signals.

Community 1.3K
Scanned
angular signals reactivity
mkdir -p ~/.claude/skills/angular-signals && curl -fsSL https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/HEAD/skills/frontend/angular-signals/SKILL.md -o ~/.claude/skills/angular-signals/SKILL.md
⚙️ Engineering
RARE

Elixir & Phoenix

Write idiomatic Elixir with OTP patterns, supervision trees, and Phoenix LiveView. Builds fault-tolerant, highly concurrent backends and real-time features on the BEAM with GenServers and channels.

Community 1.3K
Scanned
elixir phoenix liveview
mkdir -p ~/.claude/skills/elixir-pro && curl -fsSL https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/HEAD/skills/development/elixir-pro/SKILL.md -o ~/.claude/skills/elixir-pro/SKILL.md
📊 Data
RARE

Evidence (BI as Code)

Build BI reports as code with Evidence. Writes SQL plus Markdown pages that render interactive charts and tables, parameterizes reports with query results, and ships polished, version-controlled data apps as static sites — no drag-and-drop BI.

Community 1.3K
Scanned
evidence bi sql
mkdir -p ~/.claude/skills/evidence-bi && curl -fsSL https://raw.githubusercontent.com/TerminalSkills/skills/main/skills/evidence/SKILL.md -o ~/.claude/skills/evidence-bi/SKILL.md
⚙️ Engineering
RARE

Firebase APK Scanner

Scan Android APKs for Firebase misconfigurations — open databases, public storage buckets, weak authentication, and exposed cloud functions. For authorized mobile app security audits and research.

Trail of Bits 1.3K
Scanned
security mobile android
mkdir -p ~/.claude/skills/community-firebase-apk-scanner && curl -fsSL https://raw.githubusercontent.com/trailofbits/skills/HEAD/plugins/firebase-apk-scanner/skills/firebase-apk-scanner/SKILL.md -o ~/.claude/skills/community-firebase-apk-scanner/SKILL.md
📊 Data
RARE

Kestra Orchestration

Orchestrate data workflows with Kestra's declarative YAML. Writes flows with schedule, webhook, and flow triggers, script tasks, and parallel or conditional logic, adds retries, timeouts, and error handling, and migrates DAGs from Airflow or Prefect.

Community 1.3K
Scanned
kestra orchestration workflows
mkdir -p ~/.claude/skills/kestra-orchestration && curl -fsSL https://raw.githubusercontent.com/lemig/kestra-template/main/.claude/skills/kestra/SKILL.md -o ~/.claude/skills/kestra-orchestration/SKILL.md
Added to wishlist