skilly. Buy ad slot
All skills
Devops / AGENT SKILL

build

lennoncork/GitIssue
0 installs 0 GitHub stars
0

Provide the repository's canonical build instructions.
Canonical build instructions for the repository.

BEFORE YOU INSTALL

Understand the trade-offs.

Evidence to help you choose, prepare, and use this skill with confidence.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

# Build Skill

## Description

This skill contains the canonical build instructions for the repository. Agents should follow these steps when validating or modifying code.

## Prerequisites
- Install a compatible .NET SDK (see `dotnet --info`).
- Restore local dotnet tools with `dotnet tool restore`.

## Commands
From the repository root (the directory containing `build.cake`):

```bash
dotnet tool restore
dotnet restore src/GitIssue.sln --source https://api.nuget.org/v3/index.json
dotnet cake --target=Build
```

## Guidance
- Prefer the `dotnet cake` `Build` target to mirror CI.
- Use explicit Cake targets such as `Build` and `Push` rather than calling `dotnet build` directly, except for one-off debugging.
- If package restore fails against internal feeds, add `https://api.nuget.org/v3/index.json` as a fallback source.