Slack CLI

CLI application for the Slack API. Supports all API methods through easy-to-use commands.

Download .zip Download .tar.gz View on GitHub

Slack CLI Software License

Command-line application for interacting with the Slack API library. Provides CLI commands for all of the API methods currently available using a single phar executable.

UPDATE: The self:update command did not work properly up to 0.14.2, this has been fixed in later releases. Please download the latest version or installer again to get this fixed!

Build Status Coverage Status Quality Score Latest Version Total Downloads

Quick look

Sending a message to a Slack channel

$ slack.phar chat:post-message general "Hello world!"

Update the application

slack.phar self:update

Check out the documentation below for more examples and instructions on how to install the .phar file.

Installation / Usage

  1. Download the slack.phar executable or use the installer.

    $ curl -sS http://cleentfaar.github.io/slack-cli/installer | php
  2. Run Slack CLI: php slack.phar

Installation from Source

To run tests, or develop Slack CLI itself, you must use the sources and not the phar file as described above. Before continuing, you should also install Composer either globally or in the cloned repository below.

  1. Run git clone https://github.com/cleentfaar/slack-cli.git
  2. Run Composer to get the dependencies: cd slack-cli && composer install

You can now run Slack CLI by executing the ./slack script: php /path/to/slack-cli/slack

Global installation (manual)

Follow instructions in the documentation

Documentation

  • Installation - Information on installing this package either globally or as a composer dependency.
  • Usage - A few simple examples on how to use some of the console commands provided by this package.

Detailed documentation

This package only provides a command-line interface to access the Slack API methods; if you want to get your hands dirty on how to use the payloads and responses in your own application, check out the library that this package implements: Slack API library.

Contributing

Got a good idea for this project? Found a nasty bug that needs fixing? That's great! Before submitting your PR however, make sure it complies with the contributing guide to speed up the merging of your code.

Related packages

  • Slack - Main library package consisting of the API client and model classes that adhere to the Slack API specs.
  • SlackBundle - Symfony Bundle providing integration with the Slack API library above.

Attributions