CI/CD

Continuous integration and deployment

Showing 193-216 of 1454 skills
jeremylongshore

gitlab-ci-basics

by jeremylongshore

Manage gitlab ci basics operations. Auto-activating skill for DevOps Basics. Triggers on: gitlab ci basics, gitlab ci basics Part of the DevOps Basics skill category. Use when working with gitlab ci basics functionality. Trigger with phrases like "gitlab ci basics", "gitlab basics", "gitlab".

CI/CD 2.7K 8mo ago
jeremylongshore

kubernetes-configmap-handler

by jeremylongshore

Configure kubernetes configmap handler operations. Auto-activating skill for DevOps Advanced. Triggers on: kubernetes configmap handler, kubernetes configmap handler Part of the DevOps Advanced skill category. Use when configuring systems or services. Trigger with phrases like "kubernetes configmap handler", "kubernetes handler", "kubernetes".

CI/CD 2.7K 8mo ago
jeremylongshore

ansible-role-creator

by jeremylongshore

Create ansible role creator operations. Auto-activating skill for DevOps Advanced. Triggers on: ansible role creator, ansible role creator Part of the DevOps Advanced skill category. Use when working with ansible role creator functionality. Trigger with phrases like "ansible role creator", "ansible creator", "ansible".

CI/CD 2.7K 8mo ago
jeremylongshore

dotenv-manager

by jeremylongshore

Manage dotenv manager operations. Auto-activating skill for DevOps Basics. Triggers on: dotenv manager, dotenv manager Part of the DevOps Basics skill category. Use when working with dotenv manager functionality. Trigger with phrases like "dotenv manager", "dotenv manager", "dotenv".

CI/CD 2.7K 8mo ago
proffesor-for-testing

cicd-pipeline-qe-orchestrator

by proffesor-for-testing

"Orchestrate quality engineering across CI/CD pipeline phases. Use when designing test strategies, planning quality gates, or implementing shift-left/shift-right testing."

Automation 466 7mo ago
proffesor-for-testing

consultancy-practices

by proffesor-for-testing

"Apply effective software quality consultancy practices. Use when consulting, advising clients, or establishing consultancy workflows."

CI/CD 466 7mo ago
elizaOS

static-analysis

by elizaOS

"Static analysis toolkit with CodeQL, Semgrep, and SARIF parsing for security vulnerability detection. Use when running static analysis scans, writing custom detection rules, or processing analysis results."

CI/CD 19.2K 7mo ago
davila7

nemo-curator

by davila7

GPU-accelerated data curation for LLM training. Supports text/image/video/audio. Features fuzzy deduplication (16× faster), quality filtering (30+ heuristics), semantic deduplication, PII redaction, NSFW detection. Scales across GPUs with RAPIDS. Use for preparing high-quality training datasets, cleaning web data, or deduplicating large corpora.

CI/CD 30.4K 8mo ago
different-ai

cargo-lock-manager

by different-ai

Manages Cargo.lock file updates and resolves --locked flag issues in CI/CD. Triggers when user mentions: - "cargo test --locked failed" - "cannot update the lock file" - "Cargo.lock is out of date" - "PR failed with --locked error" - "fix Cargo.lock"

CI/CD 23.1K 7mo ago
tamagui

release-safety

by tamagui

Release safety rules. INVOKE WHEN: yarn release, npm publish, release canary, release packages, publishing, skip checks, skip tests. NEVER skip checks or tests without explicit permission.

CI/CD 14.2K 7mo ago
Chachamaru127

troubleshoot

by Chachamaru127

"Diagnosis and repair guide for errors and failures including CI. Use when user mentions something broken, errors, it doesn't work, CI failures, CIが落ちた, build errors, test failures, or pipeline issues. Do NOT load for: successful builds, new feature implementation, or reviews."

Agents 3.1K 6mo ago
Chachamaru127

ci

by Chachamaru127

"CIが赤くなったら呼んで。パイプライン消防隊、出動します。Use when user mentions CI failures, build errors, test failures, or pipeline issues. Do NOT load for: local builds, standard implementation work, reviews, or setup."

API Dev 3.1K 6mo ago
Chachamaru127

ci

by Chachamaru127

"CIが赤くなったら呼んで。パイプライン消防隊、出動します。Use when user mentions CI failures, build errors, test failures, or pipeline issues. Do NOT load for: local builds, standard implementation work, reviews, or setup."

API Dev 3.1K 6mo ago
dotnet

mtp-hot-reload

by dotnet

Suggests using Microsoft Testing Platform (MTP) hot reload to iterate fixes on failing tests without rebuilding. Use when user says "hot reload tests", "iterate on test fix", "run tests without rebuilding", "speed up test loop", "fix test faster", or needs to set up MTP hot reload to rapidly iterate on test failures. Covers setup (NuGet package, environment variable, launchSettings.json) and the iterative workflow for fixing tests. DO NOT USE FOR: writing test code, diagnosing test failures, running tests normally with dotnet test (use run-tests), applying test filters, producing TRX reports, CI/CD pipeline configuration, or Visual Studio Test Explorer hot reload (which is a different feature).

CI/CD 5.3K 4mo ago
dotnet

migrate-mstest-v3-to-v4

by dotnet

Fix build errors and breaking changes after upgrading MSTest v3 to v4, or plan a complete v3-to-v4 migration. Use when user says "upgrade to MSTest v4", "MSTest 4 migration", "MSTest v4 breaking changes", "tests don't compile after upgrading MSTest 3.x to 4.x", or hits CS0507, CS0103, CS1061, CS1615 after updating MSTest packages to 4.x. USE FOR: Execute to ExecuteAsync, CallerInfo ctor on TestMethodAttribute, sealed custom attributes, ClassCleanupBehavior removal, TestContext.Properties Contains to ContainsKey, Assert.ThrowsException to ThrowsExactly, Assert.IsInstanceOfType out param removal, ExpectedExceptionAttribute removal, TestTimeout enum removal, [TestMethod("name")] to DisplayName syntax, TreatDiscoveryWarningsAsErrors, TestContext.TestName in ClassInitialize, MSTest.Sdk MTP changes, dropped TFMs (net6.0/net7.0 to net8.0+). DO NOT USE FOR: MSTest v1/v2 to v3, or errors left from a 2.x-to-3.x upgrade (use migrate-mstest-v1v2-to-v3 first); test framework conversions; general .NET upgrades.

Automation 5.3K 1mo ago
dotnet

build-parallelism

by dotnet

"Diagnose and fix under-parallelized MSBuild builds. USE WHEN a multi-project solution build is slower than expected, doesn't speed up when you add cores, pegs a single core while others idle, or you want to know why -m isn't helping. Note: /maxcpucount default is 1 (sequential) — always pass -m for parallel builds. Covers finding the critical path (longest serial ProjectReference chain), graph build (/graph), BuildInParallel, and solution filters (.slnf). DO NOT USE FOR: single-project builds, incremental issues (use incremental-build), compilation slowness inside one project (use build-perf-diagnostics), non-MSBuild build systems."

CI/CD 5.3K 1mo ago
dotnet

migrate-dotnet10-to-dotnet11

by dotnet

Migrate a .NET 10 project or solution to .NET 11 and resolve all breaking changes. This is a MIGRATION skill — use it when upgrading from .NET 10 to .NET 11, NOT for writing new programs. USE FOR: upgrading TargetFramework from net10.0 to net11.0, fixing build errors after updating the .NET 11 SDK, resolving source-breaking and behavioral changes in .NET 11 runtime, C# 15 compiler, and EF Core 11, adapting to updated minimum hardware requirements (x86-64-v2, Arm64 LSE), and updating CI/CD pipelines and Dockerfiles for .NET 11. DO NOT USE FOR: .NET Framework migrations, upgrading from .NET 9 or earlier, greenfield .NET 11 projects, or cosmetic modernization unrelated to the upgrade. NOTE: .NET 11 is in preview. Covers breaking changes through Preview 3.

API Dev 5.3K 3mo ago
HoangNguyen0403

Android Tooling & Linting

by HoangNguyen0403

Standards for Static Analysis (Detekt, Ktlint) and CI/CD Checks

CI/CD 548 7mo ago
Yeachan-Heo

pipeline

by Yeachan-Heo

Chain agents together in sequential or branching workflows with data passing

Agents 38.8K 6mo ago
inkeep

audience-impact

by inkeep

Who does this change affect and how does it reach them? Maps audiences (roles × deployment modes) to impact propagation — immediate, next-publish, next-deploy, or silent. Use when planning, implementing, or reviewing a change to understand blast radius by audience. Complements product-surface-areas and internal-surface-areas (which catalog what exists; this skill tells you who cares). Triggers: who is affected, blast radius, breaking change, audience, persona, impact analysis, changeset needed, docs needed.

CI/CD 1.4K 6mo ago
RefoundAI

defining-product-vision

by RefoundAI

Help users create compelling product visions. Use when someone is writing a vision statement, defining a long-term product direction, aligning teams on the future state, or distinguishing vision from strategy.

CI/CD 1.3K 7mo ago
kubb-labs

testing

by kubb-labs

Testing, CI, and troubleshooting guidance for running the repository's test suite and interpreting CI failures.

CI/CD 1.8K 7mo ago
skillcreatorai

vercel-deploy

by skillcreatorai

Deploy applications to Vercel with edge functions, serverless, and ISR.

CI/CD 1.1K 7mo ago
Yeachan-Heo

pipeline

by Yeachan-Heo

Configurable pipeline orchestrator for sequencing stages

CI/CD 32.9K 5mo ago