{"id":43120250,"url":"https://github.com/chroju/nature-remo-cli","last_synced_at":"2026-01-31T19:35:27.349Z","repository":{"id":34984964,"uuid":"153311690","full_name":"chroju/nature-remo-cli","owner":"chroju","description":"Unofficial command line Interface for Nature Remo","archived":false,"fork":false,"pushed_at":"2023-02-25T01:55:23.000Z","size":78,"stargazers_count":17,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-19T11:25:11.517Z","etag":null,"topics":["cli","go","golang","nature-remo"],"latest_commit_sha":null,"homepage":"","language":"Go","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/chroju.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2018-10-16T15:44:12.000Z","updated_at":"2023-05-27T23:48:55.000Z","dependencies_parsed_at":"2024-06-19T12:12:31.653Z","dependency_job_id":"8dfe036e-aa46-48ca-bc5a-5c2db11be74c","html_url":"https://github.com/chroju/nature-remo-cli","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/chroju/nature-remo-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fnature-remo-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fnature-remo-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fnature-remo-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fnature-remo-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chroju","download_url":"https://codeload.github.com/chroju/nature-remo-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fnature-remo-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28951546,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T18:30:42.805Z","status":"ssl_error","status_checked_at":"2026-01-31T18:30:19.593Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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","go","golang","nature-remo"],"created_at":"2026-01-31T19:35:26.278Z","updated_at":"2026-01-31T19:35:27.344Z","avatar_url":"https://github.com/chroju.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Nature Remo command line interface\n========\n\n[![release badge](https://img.shields.io/github/v/release/chroju/nature-remo-cli.svg)](https://github.com/chroju/nature-remo-cli/releases)\n[![Coverage Status](https://coveralls.io/repos/github/chroju/nature-remo-cli/badge.svg?branch=main)](https://coveralls.io/github/chroju/nature-remo-cli?branch=main)\n\n\n`remo` is an unofficial command line interface for [Nature Remo](https://nature.global/).\n\nPrerequisites\n----\n\nYou will need your Nature Remo OAuth2 access token. Please read Nature Remo official document [here](https://developer.nature.global/) and generate your own access token.\n\nUsage\n----\n\n### Initialize\n\nAt first, you must execute `remo init` command to initialize. You will be asked to enter your access token.\n\n```\n$ remo init\nNature Remo OAuth Token:\n\u003cInput your token\u003e\nInitializing ...\nSuccessfully initialized.\n```\n\nNow, you can use `remo` !\n\n**Note:** `remo init` command creates a configuration file in `~/.config/remo` by default. The location of the configuration file can be specified with `REMOCONFIG` environment variable.\n\n### Signal\n\n`remo signal list` command shows your available appliance and signal names.\n\n```\n$ remo signal list\nlight on\nlight off\nlight brighten\nlight darken\nTV power\nTV 1\n...\n```\n\n`remo signal send` will send actual Nature Remo signal.\n\n```\n$ remo signal send light brighten\nSucceeded.\n```\n\n### Aircon settings\n\n`remo aircon list` will show you current aircon setting.\n\n```\n$ remo aircon list\nNAME      POWER  TEMP  MODE  VOLUME  DIRECTION\nBed Room  ON     25    warm  2\nDining    OFF    22    auto  auto\n```\n\nYou can update aircon setting with `remo aircon send`.\n\n```\n$ remo aircon send --name 'Bed Room' -t 23\nUpdated Aircon 'Bed Room' (TEMP: 25 -\u003e 23)\n\n$ remo aircon send --name Dining --on\nUpdated Aircon 'Dining' (POWER: OFF -\u003e ON)\n```\n\nInstall\n----\n\n### Homebrew\n\n```bash\n$ brew install chroju/tap/nature-remo-cli\n```\n\n### Download binary\n\nDownload the latest binary from [here](https://github.com/chroju/nature-remo-cli/releases) and  place it in the some directory specified by `$PATH`.\n\n### go get\n\nIf you have set up Golang environment in your computer, you can also install with `go get` command.\n\n```\n$ go get -u github.com/chroju/nature-remo-cli\n```\n\nAdvanced Usage\n----\n\nAfter you have executed `remo init` command, `remo` will create config yaml file at `$HOME/.config/remo`. This file contains your API token and your Nature Remo information like below.\n\n```yaml\ncredential:\n  token: \u003cYOUR TOKEN\u003e\nappliances:\n- name: light\n  id: abcdefgh-1234-ijkl-5678-mnopqrstuvwx\n  signals:\n  - id: abcdefgh-1234-ijkl-5678-mnopqrstuvwx\n    name: brighten\n    image: ico_foo\n  - id: abcdefgh-1234-ijkl-5678-mnopqrstuvwx\n    name: darken\n    image: ico_bar\n```\n\n`remo signal` commands load the names of your Nature Remo appliances and signals from here, so you can execute `remo send light brighten` and `remo send light darken` with above file. If you would like to execute commands with the signal names you like, you can rewrite your YAML.\n\nTODO\n----\n\n* [x] Write tests.\n* [ ] Implement commands for some sensors.\n* [ ] Implement commands for TV.\n* [ ] Implement `--direction` option to \"aircon send\" command\n\nLICENSE\n----\n\n[MIT](https://github.com/chroju/nature-remo-cli/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchroju%2Fnature-remo-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchroju%2Fnature-remo-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchroju%2Fnature-remo-cli/lists"}