@pollit/twin-dev-bot 0.0.2 → 0.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 +2 -2
- package/dist/i18n/en.d.ts +2 -2
- package/dist/i18n/en.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# TwinDevBot
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="logo.png" alt="TwinDevBot" width="150" />
|
|
4
|
+
<img src="https://raw.githubusercontent.com/hyeonseungk/twin-dev-bot/main/logo.png" alt="TwinDevBot" width="150" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
A **Slack bot** that lets you develop with **Claude Code** through Slack conversations — **from anywhere**.
|
|
@@ -76,7 +76,7 @@ You need to create a Slack App in your workspace. This is a one-time setup.
|
|
|
76
76
|
3. Fill in:
|
|
77
77
|
- **Command:** `/twindevbot`
|
|
78
78
|
- **Short Description:** `TwinDevBot Commands`
|
|
79
|
-
- **Usage Hint:** `init | task | new | stop`
|
|
79
|
+
- **Usage Hint:** `help | init | task | new | stop`
|
|
80
80
|
4. Click **"Save"**
|
|
81
81
|
|
|
82
82
|
### 1.4 Set Bot Permissions
|
package/dist/i18n/en.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ declare const _en: {
|
|
|
58
58
|
readonly "command.taskNoDir": ":warning: No working directory configured for this channel.\nUse `/twindevbot init` to set one up.";
|
|
59
59
|
readonly "command.taskStarted": ":file_folder: `{{dirName}}` session started.\nContinue in the thread.";
|
|
60
60
|
readonly "command.taskSuccess": ":file_folder: Working on `{{dirName}}`.\nWhat would you like to work on?";
|
|
61
|
-
readonly "command.help": ":robot_face: *TwinDevBot Commands*\nDevelop with Claude Code from anywhere.\n\n:warning: *Before you start:* Invite the bot to this channel first (`/invite @TwinDevBot`). The bot must be a channel member to receive your messages.\n\n
|
|
61
|
+
readonly "command.help": ":robot_face: *TwinDevBot Commands*\nDevelop with Claude Code from anywhere.\n\n:warning: *Before you start:* Invite the bot to this channel first (`/invite @TwinDevBot`). The bot must be a channel member to receive your messages.\n\n:wrench: *Set up channel*\n`/twindevbot init`\nSelect or enter a working directory for this channel.\n\n:rocket: *Start a task*\n`/twindevbot task`\n`/twindevbot task --autopilot`\nStart a new Claude session in the channel's working directory.\n\n:hammer_and_wrench: *Create project*\n`/twindevbot new <directory> --empty`\n`/twindevbot new <directory> --template <framework>`\n`/twindevbot new <directory> --template <framework> --autopilot`\n{{templates}}\n\n:octagonal_sign: *Stop running task*\n`/twindevbot stop`\nCancel the currently running Claude task.\n\n:bulb: *Notes*\n* Use `init` once per channel to link it to a project directory.\n* Use `task` to start a new task thread.\n* `--autopilot` mode: twindevbot automatically answers all questions and develops on its own.\n\n";
|
|
62
62
|
readonly "slack.answered": "Answer submitted";
|
|
63
63
|
readonly "slack.question": "Question";
|
|
64
64
|
readonly "progress.tool.Read": "Reading file";
|
|
@@ -97,7 +97,7 @@ declare const _en: {
|
|
|
97
97
|
readonly "cli.usage": "Usage:";
|
|
98
98
|
readonly "cli.commands": "Commands:";
|
|
99
99
|
readonly "cli.cmd.start": "Start server (foreground)";
|
|
100
|
-
readonly "cli.cmd.startDaemon": "Register and start as background service (macOS launchd
|
|
100
|
+
readonly "cli.cmd.startDaemon": "Register and start as background service (macOS launchd)";
|
|
101
101
|
readonly "cli.cmd.stop": "Stop and unregister background service";
|
|
102
102
|
readonly "cli.cmd.status": "Check background service status";
|
|
103
103
|
readonly "cli.cmd.show": "Show saved sessions";
|
package/dist/i18n/en.js
CHANGED
|
@@ -65,7 +65,7 @@ const _en = {
|
|
|
65
65
|
"command.taskStarted": ":file_folder: `{{dirName}}` session started.\nContinue in the thread.",
|
|
66
66
|
"command.taskSuccess": ":file_folder: Working on `{{dirName}}`.\nWhat would you like to work on?",
|
|
67
67
|
// help
|
|
68
|
-
"command.help": ":robot_face: *TwinDevBot Commands*\nDevelop with Claude Code from anywhere.\n\n:warning: *Before you start:* Invite the bot to this channel first (`/invite @TwinDevBot`). The bot must be a channel member to receive your messages.\n\n
|
|
68
|
+
"command.help": ":robot_face: *TwinDevBot Commands*\nDevelop with Claude Code from anywhere.\n\n:warning: *Before you start:* Invite the bot to this channel first (`/invite @TwinDevBot`). The bot must be a channel member to receive your messages.\n\n:wrench: *Set up channel*\n`/twindevbot init`\nSelect or enter a working directory for this channel.\n\n:rocket: *Start a task*\n`/twindevbot task`\n`/twindevbot task --autopilot`\nStart a new Claude session in the channel's working directory.\n\n:hammer_and_wrench: *Create project*\n`/twindevbot new <directory> --empty`\n`/twindevbot new <directory> --template <framework>`\n`/twindevbot new <directory> --template <framework> --autopilot`\n{{templates}}\n\n:octagonal_sign: *Stop running task*\n`/twindevbot stop`\nCancel the currently running Claude task.\n\n:bulb: *Notes*\n* Use `init` once per channel to link it to a project directory.\n* Use `task` to start a new task thread.\n* `--autopilot` mode: twindevbot automatically answers all questions and develops on its own.\n\n",
|
|
69
69
|
// slack-message.ts
|
|
70
70
|
"slack.answered": "Answer submitted",
|
|
71
71
|
"slack.question": "Question",
|
|
@@ -109,7 +109,7 @@ const _en = {
|
|
|
109
109
|
"cli.usage": "Usage:",
|
|
110
110
|
"cli.commands": "Commands:",
|
|
111
111
|
"cli.cmd.start": "Start server (foreground)",
|
|
112
|
-
"cli.cmd.startDaemon": "Register and start as background service (macOS launchd
|
|
112
|
+
"cli.cmd.startDaemon": "Register and start as background service (macOS launchd)",
|
|
113
113
|
"cli.cmd.stop": "Stop and unregister background service",
|
|
114
114
|
"cli.cmd.status": "Check background service status",
|
|
115
115
|
"cli.cmd.show": "Show saved sessions",
|