Source profileQuality 91/100

gaelic-ghost/socket/plugins/dotnet-skills/skills/ci-workflow/SKILL.md

ci-workflow

Design and maintain .NET CI workflows for F#, C#, and mixed solutions with SDK setup, restore, build, test, format checks, package checks, caching, and matrix decisions.

Source repository stars
6
Declared platforms
1
Static risk flags
0
Last source update
2026-08-21
Source checked
2026-08-25

Decision brief

What it does: where it fits

Design and maintain . NET CI workflows for F#, C#, and mixed solutions with SDK setup, restore, build, test, format checks, package checks, caching, and matrix decisions.

Best for

  • Use this skill when adding or changing CI for a .NET repository.
  • Use this skill when local validation and CI disagree.
  • Use this skill when adding F or C projects to an existing CI workflow.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexDeclaredSource recordInstall path and trigger
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/gaelic-ghost/socket --skill "plugins/dotnet-skills/skills/ci-workflow"
Safe inspection promptEditorial

Inspect the Agent Skill "ci-workflow" from https://github.com/gaelic-ghost/socket/blob/1140bc0b60f2c938b81d67dcee88a5eeb2e2f39d/plugins/dotnet-skills/skills/ci-workflow/SKILL.md at commit 1140bc0b60f2c938b81d67dcee88a5eeb2e2f39d. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    CI Planning Workflow

    1. Inspect local validation commands. 2. Inspect existing workflow files:

    Inspect local validation commands.Inspect existing workflow files:Check SDK source:
  2. 02

    Purpose

    Make .NET CI prove the same behavior maintainers care about locally.

    Make .NET CI prove the same behavior maintainers care about locally.The practical job is to choose SDK setup, restore/build/test commands, optional format/package checks, path filters, and matrix scope without making CI broader or noisier than the project needs.
  3. 03

    When To Use

    Use this skill when adding or changing CI for a .NET repository.

    Use this skill when adding or changing CI for a .NET repository.Use this skill when local validation and CI disagree.Use this skill when adding F or C projects to an existing CI workflow.
  4. 04

    Source Check

    Use repo-local files, checked-out dependency sources, Dash MCP or Dash HTTP for installed docsets, and then official project documentation when Dash/local coverage is missing or stale:

    GitHub Actions and .NETCreate a .NET test validation GitHub workflowactions/setup-dotnet

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score91/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars6SourceRepository attention, not individual Skill quality
Compatibility1 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
gaelic-ghost/socket
Skill path
plugins/dotnet-skills/skills/ci-workflow/SKILL.md
Commit
1140bc0b60f2c938b81d67dcee88a5eeb2e2f39d
License
Apache-2.0
Collected
2026-08-25
Default branch
main
View the original SKILL.md

.NET CI Workflow

Purpose

Make .NET CI prove the same behavior maintainers care about locally.

The practical job is to choose SDK setup, restore/build/test commands, optional format/package checks, path filters, and matrix scope without making CI broader or noisier than the project needs.

When To Use

  • Use this skill when adding or changing CI for a .NET repository.
  • Use this skill when local validation and CI disagree.
  • Use this skill when adding F# or C# projects to an existing CI workflow.
  • Use this skill before package or release workflows depend on CI results.

Source Check

Use repo-local files, checked-out dependency sources, Dash MCP or Dash HTTP for installed docsets, and then official project documentation when Dash/local coverage is missing or stale:

CI Planning Workflow

  1. Inspect local validation commands.
  2. Inspect existing workflow files:
    rg --files .github/workflows -g '*.yml' -g '*.yaml'
    
  3. Check SDK source:
    • global.json
    • workflow dotnet-version
    • repository docs
  4. Decide job scope:
    • restore
    • build
    • test
    • format check
    • pack check
  5. Decide matrix scope:
    • one OS for library CI unless cross-platform behavior matters
    • multiple OSes for filesystem, process, path, native dependency, or user-facing CLI differences
  6. Keep local and CI commands aligned.

Baseline Command Order

Prefer a simple shape:

dotnet restore
dotnet build --configuration Release --no-restore
dotnet test --configuration Release --no-build

Add package validation only for package surfaces:

dotnet pack --configuration Release --no-build

Add formatting verification only when the repo has .editorconfig and expects it:

dotnet format --verify-no-changes

F# And C# Notes

For F#:

  • make sure CI builds the projects that prove .fsproj ordering
  • do not path-filter only **.cs when F# files exist

For C#:

  • keep nullable/analyzer failures visible
  • respect warnings-as-errors behavior already used by the repo

For mixed solutions:

  • include **.fs, **.fsproj, **.cs, and **.csproj in path filters when filters are used
  • run solution-level validation when project references cross language boundaries

Output Shape

Return:

  1. CI scope: restore, build, test, format, pack.
  2. SDK source: global.json, workflow version, or repo docs.
  3. Matrix: OS and SDK versions.
  4. Commands: local and CI command match.
  5. Path filters: F#, C#, project, props, and workflow files.
  6. Residual risk: what CI intentionally does not cover.

Guardrails

  • Do not make CI publish packages unless the user asks for a release workflow.
  • Do not filter out F# paths in a plugin that promises F# parity.
  • Do not add large OS matrices without naming the cross-platform behavior they protect.
  • Do not hide build warnings if the repo treats warnings as errors locally.
  • Do not make CI commands differ from documented local validation without explaining why.

Frequently asked questions

What to verify before installation and use

What does the ci-workflow source document cover?

Design and maintain . NET CI workflows for F#, C#, and mixed solutions with SDK setup, restore, build, test, format checks, package checks, caching, and matrix decisions.

How do I install ci-workflow?

The source record exposes this install command: npx skills add https://github.com/gaelic-ghost/socket --skill "plugins/dotnet-skills/skills/ci-workflow". Inspect the command and pinned source before running it.

Which Agent platforms does the source record declare?

The pinned source record declares support for: codex.

Alternatives

Compare before choosing