CI/CD

持续集成与部署

显示 193-216 / 共 1454 个技能
jeremylongshore

gitlab-ci-basics

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 2679 8个月前
jeremylongshore

kubernetes-configmap-handler

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 2679 8个月前
jeremylongshore

ansible-role-creator

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 2679 8个月前
jeremylongshore

dotenv-manager

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 2679 8个月前
proffesor-for-testing

cicd-pipeline-qe-orchestrator

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."

自动化 466 7个月前
proffesor-for-testing

consultancy-practices

proffesor-for-testing

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

CI/CD 466 7个月前
elizaOS

static-analysis

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 1.9万 7个月前
davila7

nemo-curator

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 3万 8个月前
different-ai

cargo-lock-manager

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 2.3万 7个月前
tamagui

release-safety

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 1.4万 7个月前
Chachamaru127

troubleshoot

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."

智能体 3072 6个月前
Chachamaru127

ci

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 开发 3072 6个月前
Chachamaru127

ci

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 开发 3072 6个月前
dotnet

mtp-hot-reload

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 5256 4个月前
dotnet

migrate-mstest-v3-to-v4

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.

自动化 5256 1个月前
dotnet

build-parallelism

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 5256 1个月前
dotnet

migrate-dotnet10-to-dotnet11

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 开发 5256 3个月前
HoangNguyen0403

Android Tooling & Linting

HoangNguyen0403

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

CI/CD 548 7个月前
Yeachan-Heo

pipeline

Yeachan-Heo

Chain agents together in sequential or branching workflows with data passing

智能体 3.9万 6个月前
inkeep

audience-impact

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 1388 6个月前
RefoundAI

defining-product-vision

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 1279 7个月前
kubb-labs

testing

kubb-labs

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

CI/CD 1789 7个月前
skillcreatorai

vercel-deploy

skillcreatorai

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

CI/CD 1133 7个月前
Yeachan-Heo

pipeline

Yeachan-Heo

Configurable pipeline orchestrator for sequencing stages

CI/CD 3.3万 5个月前