agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
/**
* Convert a file path on the current system to a file path that can be used on Linux
*
* Takes the current OS' file separator and replaces all of them with a '/'.
*
* Relevant if the current system is a Windows machine but is generating
* commands for a Linux CodeBuild image.
*/
export declare function toPosixPath(osPath: string, currentSep?: string): string;