dx-devops-test-suite-assignments-configure

Recommends and assigns DevOps Center test suites to pipeline stages via the testSuiteStages Connect API.

Updated Jul 2, 2026
One-click install
npx skills add https://github.com/padjei/SF_Build --skill dx-devops-test-suite-assignments-configure-padjei
Or copy as Structured Prompt for Agentâ–¼
Please help me install this Agent Skill.
Skill: dx-devops-test-suite-assignments-configure
Source: https://github.com/padjei/SF_Build/tree/main/.claude/skills/dx-devops-test-suite-assignments-configure
Command: npx skills add https://github.com/padjei/SF_Build --skill dx-devops-test-suite-assignments-configure-padjei

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Deciding which test suites should run for a commit and wiring those suites to the right DevOps Center pipeline stages is manual and error-prone. This Skill analyzes a commit diff against assigned suite metadata to recommend relevant suites, flags coverage gaps, and manages suite-to-stage assignments with governance controls. ## Core Features & Use Cases - Suite Recommendation (Mode A): Classifies a commit diff by change type (Apex, Flow, Java, LWC, Code Analyzer), matches suites by test provider, ranks them, and flags new methods with no coverage — pure reasoning with no writes. - Single & Bulk Assignment (Modes B–C): Assigns one suite to a stage or bulk-maps multiple suites with a mandatory impact-preview table before any write. - Test Class Management (Mode D): Adds or removes individual test classes within a suite assignment, excluding rejected tests and requiring explicit confirmation. - Use Case: A developer commits changes to OrderService.cls and asks which suites cover it. The Skill recommends the matching Apex suites assigned to the Review trigger, flags an uncovered new method, and offers to assign an unlinked suite to the stage. ## Quick Start Ask which test suites should run for your latest commit, or request to assign a specific suite to a pipeline stage in your DevOps Center org.

Frequently Asked Questions about dx-devops-test-suite-assignments-configure

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I know which test suites to run for a commit in DevOps Center?â–¼

Mode A analyzes your commit diff, classifies changes by type (Apex, Flow, Java, LWC), and matches them against suites assigned to the pipeline's Review trigger by test provider. It returns a ranked recommendation list and flags new methods with no suite coverage.

How do I assign a test suite to a DevOps Center pipeline stage?â–¼

Mode B assigns a single suite to a stage using the testSuiteStages Connect API endpoint with an add action. It requires the pipeline ID, stage ID, and event type, and always asks for confirmation naming the suite, stage, and event before writing.

Can I map multiple test suites to a stage at once?â–¼

Yes, Mode C sends multiple add or remove assignments in a single testSuiteStages API call. It first presents a mandatory impact-preview table showing each suite, stage, event, and action, and only proceeds after explicit confirmation.

Does this skill work with the sf_devops managed package objects?â–¼

No, it queries only the standard platform objects such as DevopsPipeline, DevopsPipelineStage, and DevopsTestSuiteStage. DevOps Center installation is determined solely by whether DevopsPipeline is queryable, never by the sf_devops namespace.

Why can't this skill generate new tests for uncovered methods?â–¼

Test generation is an explicit v1 constraint: the skill only recommends existing suites and never suggests generating tests. When it flags a new method with no coverage, it directs the developer to author tests manually and identifies exactly which methods need coverage.