This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env nu | |
| # Trap handler to kill all child processes on exit | |
| def cleanup [] { | |
| # Kill all processes in our process group | |
| ^kill -- $"-($nu.pid)" err>| ignore | |
| } | |
| # Main entry point - a generic iterative AI coding assistant runner | |
| def main [ |
OlderNewer