gitextract_rez5qvem/ ├── .github/ │ └── workflows/ │ ├── go-test.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── Makefile.release ├── README.md ├── README_JA_JP.md ├── README_ZH_HANS.md ├── bin/ │ └── .gitkeep ├── cli/ │ ├── cmd/ │ │ ├── client.go │ │ ├── config.go │ │ ├── perrun.go │ │ ├── root.go │ │ └── utils.go │ ├── cobrautl/ │ │ └── help.go │ └── main.go ├── client/ │ ├── client.go │ ├── client_config.go │ ├── client_config_windows.go │ └── client_test.go ├── dist/ │ └── .gitkeep ├── functions.mk ├── go.mod ├── go.sum ├── install/ │ ├── install.ps1 │ └── install.sh ├── main.go ├── pkg/ │ ├── comm/ │ │ ├── comm.go │ │ └── errors.go │ ├── config/ │ │ ├── config.go │ │ ├── config_test.go │ │ └── config_test.json │ ├── server/ │ │ ├── server.go │ │ └── server_test.go │ ├── services/ │ │ ├── abstract/ │ │ │ ├── abstract.go │ │ │ ├── mlservice.go │ │ │ └── mlservice_test.go │ │ ├── browser/ │ │ │ ├── browser.go │ │ │ ├── browser_config.go │ │ │ ├── browser_debugger.go │ │ │ └── browser_test.go │ │ ├── command/ │ │ │ ├── command.go │ │ │ ├── command_config.go │ │ │ ├── command_exec.go │ │ │ ├── command_exec_test.go │ │ │ └── command_exec_windows.go │ │ ├── filesystem/ │ │ │ ├── file_system.go │ │ │ ├── file_system_config.go │ │ │ └── file_system_windows.go │ │ └── register.go │ └── utils/ │ ├── pid.go │ ├── pid_unix.go │ ├── pid_windows.go │ ├── rotewriter.go │ └── utils.go ├── prompts/ │ ├── filesystem.md │ ├── browser.md │ └── command.md └── variables.mk