Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,36 @@ It's aimed at coding agents with a very simple interface, and is not intended to

## Installation

Download the binary for your platform from the release page:
Download the binary for your platform from the [release page](https://github.com/kitproj/slack-cli/releases).

### Linux

**AMD64 (x86_64):**
```bash
sudo curl -fsL -o /usr/local/bin/slack https://github.com/kitproj/slack-cli/releases/download/v0.0.11/slack_v0.0.11_linux_amd64
sudo chmod +x /usr/local/bin/slack
```

**ARM64:**
```bash
sudo curl -fsL -o /usr/local/bin/slack https://github.com/kitproj/slack-cli/releases/download/v0.0.11/slack_v0.0.11_linux_arm64
sudo chmod +x /usr/local/bin/slack
```

### MacOS

**Intel (AMD64):**
```bash
sudo curl -fsL -o /usr/local/bin/slack https://github.com/kitproj/slack-cli/releases/download/v0.0.11/slack_v0.0.11_darwin_amd64
sudo chmod +x /usr/local/bin/slack
```

**Apple Silicon (ARM64):**
```bash
sudo curl -fsL -o /usr/local/bin/slack https://github.com/kitproj/slack-cli/releases/download/v0.0.11/slack_v0.0.11_darwin_arm64
sudo chmod +x /usr/local/bin/slack
```

## Configuration

### Getting Your Slack API Token
Expand Down