Notify is simple CLI application to nottify any chat serviece.
Notify is a simple CLI tool for notifying major chat tools. Supported chat service is chat work, LINE. Specify the chat tool with the subcommand. Please obtain an access token before using it.
- You can specify a chat service with a subcommand and notify by just passing a message and a token
- The token can also be read from the configuration file.
$ notify line -m "sent message to line"
$ notify chtwk -m "sent message to chatwork"
$ notify slack -m "sent message to slack"This application is a simple CLI tool.
You can quickly notify to any chat serviece
Usage:
notify [command]
Available Commands:
chtwk notify to chatwork
help Help about any command
line notify to line
slack notify to slact
version Print the version number of notify
Flags:
--config string config file (default is $HOME/.notify.yaml)
-h, --help help for notify
-m, --message string message (default "This message is from notify")
-t, --token string access token
Use "notify [command] --help" for more information about a command.set your credentials in $HOME/.notify.yaml/credentials :
[default]
line_access_token: XXXXXX
chatwork_access_token = XXXXXX
room_id = XXXXXX
slack_token = XXXXXX
channel = genneral
リリースページからバイナリをダウンロードしてください。release page.
If you have Go development environment:
$ go get github.com/tadaken3/notify- Fork (https://github.com/tadaken3/notify)
- Create a feature branch
- Commit your changes
- Rebase your local changes against the master branch
- Run test suite with the
go test ./...command and confirm that it passes - Run
gofmt -s - Create new Pull Request

