claude-telegram-bot 0.3.23 → 0.3.24
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/ctb.mjs +2 -2
- package/package.json +1 -1
package/ctb.mjs
CHANGED
|
@@ -151,8 +151,8 @@ async function main() {
|
|
|
151
151
|
|
|
152
152
|
async function summarizeSession(sid, lang) {
|
|
153
153
|
const langInstruction = lang && lang.startsWith("ko")
|
|
154
|
-
? "
|
|
155
|
-
: "
|
|
154
|
+
? "방금 로컬 터미널 코딩 세션이 끝났어. 이 대화에서 가장 최근에 나눈 내용(이 메시지 직전까지)을 바탕으로, 그 세션에서 무엇을 했는지 한국어로 짧은 구문(10단어 이내)으로 요약해줘. 마크다운 없이 텍스트만. 중요한 작업이 없었으면 정확히 이렇게만 답해: SKIP"
|
|
155
|
+
: "A local terminal coding session just ended. Based on the most recent exchanges in this conversation (just before this message), summarize in one short phrase (10 words max) what was accomplished. Plain text only. If nothing significant was done, reply exactly: SKIP";
|
|
156
156
|
return new Promise((resolve) => {
|
|
157
157
|
const child = spawn("claude", [
|
|
158
158
|
"--resume", sid,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-telegram-bot",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.24",
|
|
4
4
|
"description": "Drive Claude Code from Telegram — messages run headless `claude -p` in a project dir and replies come back to the chat. Zero dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|