Agent skill

ops__rebuild_clean

Clean and rebuild the solution to ensure a fresh state. Use this when the user faces transient build errors or stale artifacts.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/ops-rebuild-clean

SKILL.md

To ensure a clean build state and resolve transient compilation issues, follow this process:

  1. Stop Background Processes

    • Ensure no background dotnet processes are running that might lock files.
    • Check for running Aspire instances or test hosts.
  2. Clean Solution

    • Run dotnet clean in the root directory.
    • This removes all intermediate output and binaries.

// turbo 3. Rebuild

  • Run dotnet build in the root directory to compile the entire solution from scratch.
  1. Verify and Report
    • Check the output for any persistent errors.
    • If the build succeeds, notify the user: "✅ Workspace is clean and builds successfully."
    • If errors persist, they are likely genuine code issues rather than stale artifacts.
    • Use grep_search or read_file to investigate the specific error messages.

When to Use

  • Build errors that seem inconsistent
  • After major dependency changes
  • When switching branches with significant changes
  • Stale artifact issues
  • After package version updates

Related Skills

Used By:

  • /test__verify_feature - May reference this for clean builds

Next Steps:

  • /test__verify_feature - Full verification after clean rebuild
  • /test__unit_suite or /test__integration_suite - Test the rebuilt solution

See Also:

  • getting-started - Build instructions
  • aspire-guide - Running the application

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results