What problem does it solve?
Developing AIASys for Windows, macOS, and Linux often leads to platform-specific failures in path handling, file IO, process management, encoding, and shell command execution, which waste development time and cause runtime errors for users on different operating systems.
Core Features & Use Cases
- Dependency Selection Red Lines: Lists known cross-platform incompatible dependencies and their safe alternatives to avoid build and runtime failures.
- Cross-Platform Best Practices: Provides verified correct implementations for path handling (including long path support), encoding decoding, process termination, and shell command quoting across all three supported platforms.
- Common Error Pattern Fixes: Documents frequent platform-specific bug patterns and their correct solutions, plus references to pre-built cross-platform components already implemented in the project.
- Use Case: When adding a new file IO operation, subprocess call, or external dependency to the AIASys codebase, use this skill to ensure the code works reliably on all supported operating systems without platform-specific branches.
Quick Start
Consult this skill before writing any new file IO, subprocess, path handling, or shell execution code for the AIASys project to avoid cross-platform compatibility issues.