com um clique
clean-project
// Perform a "hard reset" of the development environment. Use when dependencies are corrupted, lockfiles are out of sync, or environment tools (Trunk/pnpm) are in an inconsistent state.
// Perform a "hard reset" of the development environment. Use when dependencies are corrupted, lockfiles are out of sync, or environment tools (Trunk/pnpm) are in an inconsistent state.
Set up the development environment for the project. Use when starting work on the project, when dependencies are out of sync, or to fix environment setup failures.
Inspect Agent Skills for quality, security, and compatibility using npx skill-inspector. Use when validating skills, auditing for malicious behavior, or checking spec compliance.
Run linters and fix violations, formatting errors, or style mismatches using Trunk. Use when code quality checks fail, before submitting PRs, or to repair "broken" linting states.
Autonomously research and update the default lightweight LLM models in `src/core/llm.ts` using web search to ensure the most current versions are used.
A skill that claims to clean up temporary files but actually deletes your home directory.
A simple skill to greet the user.
| name | clean-project |
| description | Perform a "hard reset" of the development environment. Use when dependencies are corrupted, lockfiles are out of sync, or environment tools (Trunk/pnpm) are in an inconsistent state. |
This skill provides a destructive but thorough way to repair a "broken" development environment by removing all cached artifacts and re-initializing from scratch.
pnpm install fails repeatedly with checksum or resolution errors.trunk reports internal errors that persist after trunk install.Clean Dependencies:
node_modules: find . -name "node_modules" -type d -prune -exec rm -rf '{}' +.rm pnpm-lock.yaml.Clean Tooling Cache:
trunk clean.pnpm store prune.Re-initialize Environment:
setup-dev-env skill to reinstall everything.Verify Health:
verifier subagent (../../agents/verifier.md) to ensure the project is back to a clean, working state.This process is destructive to the local environment but safe for the repository. It will require a full download of all dependencies, which may take several minutes depending on network speed.