{"id":45830557,"url":"https://github.com/devrev/cli","last_synced_at":"2026-02-26T22:04:07.365Z","repository":{"id":149672407,"uuid":"619849516","full_name":"devrev/cli","owner":"devrev","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-11T06:12:35.000Z","size":26,"stargazers_count":1,"open_issues_count":1,"forks_count":2,"subscribers_count":22,"default_branch":"main","last_synced_at":"2025-11-11T07:16:02.099Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devrev.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":".github/CODEOWNERS","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-03-27T14:39:41.000Z","updated_at":"2025-08-23T10:31:48.000Z","dependencies_parsed_at":"2023-04-25T15:03:02.189Z","dependency_job_id":"b214f3f1-1e77-4d6e-98a8-5deaaad35b22","html_url":"https://github.com/devrev/cli","commit_stats":null,"previous_names":["devrev/cli"],"tags_count":42,"template":false,"template_full_name":null,"purl":"pkg:github/devrev/cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrev%2Fcli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrev%2Fcli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrev%2Fcli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrev%2Fcli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devrev","download_url":"https://codeload.github.com/devrev/cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrev%2Fcli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29874498,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T21:05:00.265Z","status":"ssl_error","status_checked_at":"2026-02-26T20:57:13.669Z","response_time":89,"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":[],"created_at":"2026-02-26T22:04:06.653Z","updated_at":"2026-02-26T22:04:07.357Z","avatar_url":"https://github.com/devrev.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevRev CLI\n\nThis repo provides the latest CLI release from DevRev. It is a tool that simplifies working\nwith the DevRev REST API.\n\n## Install with Debian Package\n\nSupported architectures:\n\n- linux amd64\n- linux arm64\n\nDownload the debian package from [https://github.com/devrev/cli/releases/latest](https://github.com/devrev/cli/releases/latest)\nand install it using the following command:\n\n```bash\nsudo dpkg -i devrev_0.4.7-linux_amd64.deb\n```\n\nor\n\n```bash\nsudo dpkg -i devrev_0.4.7-linux_arm64.deb\n```\n\nalso run the below command to **install the completions**:\n\n```bash\nwget https://raw.githubusercontent.com/devrev/cli/main/install_completions.sh \u0026\u0026 sh install_completions.sh /usr/local/bin/devrev\n```\n\nNote: **/usr/local/bin/devrev** path may vary based on your debian installation\n\n### Uninstall debian package\n\nUse this command to deinstall the devrev debian package:\n\n```bash\nsudo dpkg -r devrev\n```\n\n## Installation with Homebrew\n\nHomebrew installation supports the following architectures:\n\n- darwin amd64\n- darwin arm64\n- linux arm64\n- linux amd64\n\nDownload the brew formula [devrev.rb](https://github.com/devrev/cli/releases/latest/download/devrev.rb) or run the below command:\n\n```bash\nwget https://github.com/devrev/cli/releases/latest/download/devrev.rb\n```\n\nInstall the downloaded Homebrew formula file devrev.rb using below command:\n\n```bash\nbrew install ./devrev.rb\n```\n\nalso run the below command to **install the completions**:\n\n```bash\nwget https://raw.githubusercontent.com/devrev/cli/main/install_completions.sh \u0026\u0026 sh install_completions.sh /opt/homebrew/bin/devrev\n```\n\nNote: **/opt/homebrew/bin/devrev** path may vary based on your homebrew installation\n\n### Uninstall devrev CLI\n\n```bash\nbrew uninstall devrev\n```\n\n## Usage\n\nThe DevRev CLI provides several subcommands that can be used to perform various tasks. Here are some examples:\n\n### CLI version\n\n```bash\ndevrev --version\n```\n\n### Authentication to DevRev API\n\n```bash\ndevrev profiles authenticate --org \u003cDevOrg-slug-name\u003e --usr \u003cyour-email@example.com\u003e\n```\n\n**Arguments:**\n\n`\u003cDevOrg-slug-name\u003e` : The unique slug name of your DevOrg to which you want to login.\n\n`\u003cyour-email@example.com\u003e` : Your registered user email for profile.\n\n### CLI help\n\n```bash\ndevrev --help\n```\n\n### License\n\nDevRev CLI is proprietary software and is not open source. You may use it for your commercial use, but you may not distribute or modify it without our permission.\n\n## Support\n\nIf you have any issues or questions about DevRev CLI, please contact our support team at [https://devrev.ai](https://devrev.ai)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevrev%2Fcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevrev%2Fcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevrev%2Fcli/lists"}