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.
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:
-
Stop Background Processes
- Ensure no background
dotnetprocesses are running that might lock files. - Check for running Aspire instances or test hosts.
- Ensure no background
-
Clean Solution
- Run
dotnet cleanin the root directory. - This removes all intermediate output and binaries.
- Run
// turbo 3. Rebuild
- Run
dotnet buildin the root directory to compile the entire solution from scratch.
- 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_searchorread_fileto 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_suiteor/test__integration_suite- Test the rebuilt solution
See Also:
- getting-started - Build instructions
- aspire-guide - Running the application
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?