SECURITY REVIEW
Not yet assessed
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
Provide the repository's canonical build instructions.
Canonical build instructions for the repository.
Evidence to help you choose, prepare, and use this skill with confidence.
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
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.
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.