{"id":20726468,"url":"https://github.com/marathonlabs/marathon-cloud-cli","last_synced_at":"2026-01-21T07:30:12.946Z","repository":{"id":172753498,"uuid":"649697066","full_name":"MarathonLabs/marathon-cloud-cli","owner":"MarathonLabs","description":"Command-line client for Marathon Cloud","archived":false,"fork":false,"pushed_at":"2026-01-18T15:31:18.000Z","size":11447,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-18T23:35:51.203Z","etag":null,"topics":["android","cloud","instrumentation","ios","marathon","marathon-cloud","testing","xctest","xcuitest"],"latest_commit_sha":null,"homepage":"https://marathonlabs.io","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MarathonLabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-06-05T12:46:29.000Z","updated_at":"2025-09-09T14:11:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"99ed8ba2-b2c1-415c-a29c-610c99d83ca3","html_url":"https://github.com/MarathonLabs/marathon-cloud-cli","commit_stats":null,"previous_names":["marathonlabs/marathon-cloud-cli"],"tags_count":68,"template":false,"template_full_name":null,"purl":"pkg:github/MarathonLabs/marathon-cloud-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarathonLabs%2Fmarathon-cloud-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarathonLabs%2Fmarathon-cloud-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarathonLabs%2Fmarathon-cloud-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarathonLabs%2Fmarathon-cloud-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MarathonLabs","download_url":"https://codeload.github.com/MarathonLabs/marathon-cloud-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarathonLabs%2Fmarathon-cloud-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28629915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","cloud","instrumentation","ios","marathon","marathon-cloud","testing","xctest","xcuitest"],"created_at":"2024-11-17T04:25:15.733Z","updated_at":"2026-01-21T07:30:12.910Z","avatar_url":"https://github.com/MarathonLabs.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Marathon Cloud command-line interface\n\n![](assets/marathon-cloud-cli.1280.gif)\n\n## Installation\n\nFor homebrew users:\n\n```bash\nbrew tap malinskiy/tap\nbrew install malinskiy/tap/marathon-cloud\n```\n\nFor superior experience, [enable autocompletion for Brew](https://docs.brew.sh/Shell-Completion#configuring-completions-in-zsh)\n\nFor docker users:\n\n```bash\ndocker pull marathonlabs/marathon-cloud:latest\nalias marathon-cloud='docker run -v \"$(pwd)\":/work -it --rm marathonlabs/marathon-cloud:latest'\n```\n\n## Usage\n\n```bash\nCommand-line client for Marathon Cloud\n\nUsage: marathon-cloud [OPTIONS] [COMMAND]\n\nCommands:\n  run          Submit a test run\n  devices      Get supported devices\n  download     Download artifacts from a previous test run\n  completions  Output shell completion code for the specified shell (bash, zsh, fish)\n  help         Print this message or the help of the given subcommand(s)\n\nOptions:\n  -v, --verbose...  Increase logging verbosity\n  -q, --quiet...    Decrease logging verbosity\n  -h, --help        Print help\n  -V, --version     Print version\n```\n\n## Autocompletions\n\nIf you're using installation from homebrew then you should have working autocompletions upon installation assuming\nyou've done the [brew general setup](https://docs.brew.sh/Shell-Completion#configuring-completions-in-zsh).\n\nIf you install the binary manually then you can easily generate autcompletions:\n\n### bash\n\n```\n# set up autocomplete in bash into the current shell, bash-completion package should be installed first.\nsource \u003c(marathon-cloud completions bash)\n# add autocomplete permanently to your bash shell.\necho \"source \u003c(marathon-cloud completions bash)\" \u003e\u003e ~/.bashrc\n```\n\n### zsh\n\n```\n# set up autocomplete in zsh into the current shell\nsource \u003c(marathon-cloud completions zsh)\n# add autocomplete permanently to your zsh shell\necho '[[ $commands[marathon-cloud] ]] \u0026\u0026 source \u003c(marathon-cloud completions zsh)' \u003e\u003e ~/.zshrc\n```\n\n### fish\n\n```\n# add marathon-cloud autocompletion permanently to your fish shell\necho 'marathon-cloud completions fish | source' \u003e\u003e ~/.config/fish/config.fish\n```\n\n## License\n\nmarathon-cloud cli codebase is licensed under [MIT](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarathonlabs%2Fmarathon-cloud-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarathonlabs%2Fmarathon-cloud-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarathonlabs%2Fmarathon-cloud-cli/lists"}