relaybot 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # RelayBot
2
2
 
3
- A Slack-to-AI gateway that lets you interact with Claude/Codex directly from your DMs.
3
+ An AI assistant that lives in your Slack DMs powered by Claude or Codex.
4
4
 
5
5
  <img src="demo/demo.jpg" width="30%">
6
6
 
package/cli.js CHANGED
@@ -7,15 +7,19 @@ function showHelp() {
7
7
  console.log(`
8
8
  🤖 RelayBot - Slack-to-AI gateway
9
9
 
10
- Usage: relaybot <command>
10
+ Usage: relaybot <command> [options]
11
11
 
12
12
  Commands:
13
13
  setup Configure Slack credentials and working directory
14
14
  start Start the RelayBot server
15
15
 
16
+ Options:
17
+ --codex Use Codex instead of Claude (for start command)
18
+
16
19
  Examples:
17
- relaybot setup # Run interactive setup
18
- relaybot start # Start the bot
20
+ relaybot setup # Run interactive setup
21
+ relaybot start # Start with Claude (default)
22
+ relaybot start --codex # Start with Codex
19
23
  `);
20
24
  }
21
25
 
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "display_information": {
3
3
  "name": "RelayBot",
4
- "description": "A Slack-to-AI gateway that lets you interact with Claude/Codex directly from your DMs",
4
+ "description": "An AI assistant that lives in your Slack DMs powered by Claude or Codex",
5
5
  "background_color": "#4A154B"
6
6
  },
7
7
  "features": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "relaybot",
3
- "version": "1.0.2",
4
- "description": "A Slack-to-AI gateway that lets you interact with Claude/Codex directly from your DMs",
3
+ "version": "1.0.3",
4
+ "description": "An AI assistant that lives in your Slack DMs powered by Claude or Codex",
5
5
  "main": "main.js",
6
6
  "bin": {
7
7
  "relaybot": "./cli.js"