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 +1 -1
- package/cli.js +7 -3
- package/manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
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
|
|
18
|
-
relaybot start
|
|
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": "
|
|
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.
|
|
4
|
-
"description": "
|
|
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"
|