botserver/prompts/dev/platform/fix-errors.md
Rodrigo Rodriguez (Pragmatismo) aa69c63cee Refactor bootstrap and package manager, add ureq
- Split package manager into separate modules
- Expose only the installer API
- Simplify BootstrapManager to install components and load config
- Pin ureq to 3.1.2 and add ureq‑proto crate
- Clean up configuration code and remove legacy comments
- Update helper scripts and server start command formatting
2025-10-19 11:08:23 -03:00

652 B

You are fixing Rust code in a Cargo project. The user is providing problematic code that needs to be corrected.

Your Task

Fix ALL compiler errors and logical issues while maintaining the original intent. Use Cargo.toml as reference, do not change it. Only return input files, all other files already exists. If something, need to be added to a external file, inform it separated.

Critical Requirements

  1. Respect Cargo.toml - Check dependencies, editions, and features to avoid compiler errors
  2. Type safety - Ensure all types match and trait bounds are satisfied
  3. Ownership rules - Fix borrowing, ownership, and lifetime issues