{"id":17682518,"url":"https://github.com/taylorfinnell/genie-cli","last_synced_at":"2026-03-01T09:35:25.514Z","repository":{"id":145628673,"uuid":"90319294","full_name":"taylorfinnell/genie-cli","owner":"taylorfinnell","description":"Netflix Genie CLI","archived":false,"fork":false,"pushed_at":"2018-03-26T16:36:35.000Z","size":738,"stargazers_count":4,"open_issues_count":1,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-13T19:46:25.193Z","etag":null,"topics":["cli","crystal","genie","netflix-genie"],"latest_commit_sha":null,"homepage":null,"language":"Crystal","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/taylorfinnell.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}},"created_at":"2017-05-04T23:47:33.000Z","updated_at":"2020-05-12T17:30:44.000Z","dependencies_parsed_at":"2023-05-24T03:15:44.654Z","dependency_job_id":null,"html_url":"https://github.com/taylorfinnell/genie-cli","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/taylorfinnell/genie-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taylorfinnell%2Fgenie-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taylorfinnell%2Fgenie-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taylorfinnell%2Fgenie-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taylorfinnell%2Fgenie-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taylorfinnell","download_url":"https://codeload.github.com/taylorfinnell/genie-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taylorfinnell%2Fgenie-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29965689,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T09:33:09.965Z","status":"ssl_error","status_checked_at":"2026-03-01T09:25:48.915Z","response_time":124,"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":["cli","crystal","genie","netflix-genie"],"created_at":"2024-10-24T09:22:23.780Z","updated_at":"2026-03-01T09:35:25.488Z","avatar_url":"https://github.com/taylorfinnell.png","language":"Crystal","funding_links":[],"categories":[],"sub_categories":[],"readme":"# genie-cli\n[![CircleCI](https://circleci.com/gh/taylorfinnell/genie-cli.svg?style=svg)](https://circleci.com/gh/taylorfinnell/genie-cli)\n\nSmall CLI for Netflix's Genie.\n\n## Installation\n\n##### From GitHub\n1) Install Crystal\n   `brew install crystal-lang`\n1) Download a release from the Github Releases.\n1) Add binary to PATH and make it executable\n\n##### From Source\n\n1) Install Crystal\n   `brew install crystal-lang`\n1) Clone repository\n1) `crystal build src/genie.cr --release`\n1) Download a release from the Github Releases.\n1) Add binary to PATH and make it executable\n\n##### From Install Script\n1) Install Crystal\n   `brew install crystal-lang`\n1) `curl https://raw.githubusercontent.com/taylorfinnell/genie-cli/master/install | bash -s`\n\n## Configuration\n\nBy default the CLI looks for configuration at `~/.genie.yml`.  Optionally, each\ncommand can specify an alternate configuration via a `--env` or `-e` flag.\n\nFor example:\n\n`genie ls -e prod`\n\nWould look for `~/.genie.prod.yml`\n\nThe configuration file looks like the following.\n\n```\nhost: genie-host-url:7000\ncredentials:\n  username: tfinnell\n  password: password\n```\n\nCredentials are only required if you have Basic auth enabled.\n\n## Optional Configuration\n\nYou may set a `printer` key to either `tabbed` or `table` to set the default\noutput type.\n\n```\nprinter: tabbed\n```\n\nYou may set the default output columns.\n\n```\ncolumns:\n  - id\n  - status\n  - name\n```\n\nYou may choose to truncate the job name after a certain number of characters.\n\n```\nname_length: 25\n```\n\n## Usage\n\n**List Genie Jobs**\n\n```\n  genie ls\n```\n\nYou may show job progress with the `-p` flag. You may also limit the results with the `-l` flag.\n\n```\ngenie ls -l 5 -p\n```\n\n**Search for a Job**\n\n```\n  genie search %some-name%\n```\n\nYou may show job progress with the `-p` flag. You may also limit the results with the `-l` flag.\n\n```\ngenie search %jim% -l 5 -p\n```\n\n**Get Job Status**\n\n```\n  genie status \u003cid\u003e\n```\n\nYou may show job progress with the `-p` flag. You may also limit the results with the `-l` flag.\n\n```\ngenie status \u003cid\u003e -l 5 -p\n```\n\n**Open Job Output**\n\n```\n  genie open \u003cid\u003e\n```\n\n**Kill a Job**\n\n```\n  genie kill \u003cid\u003e\n```\n\n## More examples\n\n**Tabbed Output**\n\nYou may specify the output format with a `--printer` flag. Currently only\n`table` and `tabbed` are valid printer values. Tabbed output is useful for\npiping.\n\n`genie search %job% --printer tabbed | cut -d$'\\t' -f 1 | tail +2 | xargs genie kill`\n\n**Showing only certain columns in output**\n\nYou may choose to only show certain columns in the output via a `--columns`\nflag.\n\n`genie ls --columns id --columns name`\n\n**Hide Headers**\n\nYou may choose to hide the headers with the `-h` flag.\n\n`genie search %Matched% --c id --printer tabbed -h | xargs genie kill`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaylorfinnell%2Fgenie-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaylorfinnell%2Fgenie-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaylorfinnell%2Fgenie-cli/lists"}