---
name: slack-rob-feed
description: "Post messages into Rob's Slack channel"
compatibility: Created for Zo Computer
metadata:
  author: rob.zo.computer
---
# Slack #rob-feed

Use this skill when Rob wants something posted into Slack channel `#rob-feed`.

## Required env

The Slack credentials live in:

- `~/.bash_secrets/rc-slack`

That file should export:

- `SLACK_BOT_TOKEN`
- `SLACK_ROB_FEED_CHANNEL_ID`

When running this skill, source that file first or otherwise include those vars in the environment.

## Usage

Read this skill, then run the script:

```bash
source ~/.bash_secrets/rc-slack && python /home/workspace/Skills/slack-rob-feed/scripts/post_to_rob_feed.py --text "hello from zo"
```

For multiline content:

```bash
source ~/.bash_secrets/rc-slack && python /home/workspace/Skills/slack-rob-feed/scripts/post_to_rob_feed.py --stdin <<'EOF'
line 1
line 2
EOF
```

## Behavior

- Posts plain text messages to `#rob-feed`
- Fails clearly if secrets are missing
- Prints the Slack API response JSON to stdout
