From 889badc52ba4e0aa0e7d98ecfc6ffe65514bbb0d Mon Sep 17 00:00:00 2001 From: CD Date: Fri, 6 Mar 2026 21:47:24 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Git/Vikunja=20=EB=AF=B8=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=8B=9C=20=EC=B0=A8=EB=8B=A8=20=EB=8C=80=EC=8B=A0?= =?UTF-8?q?=20=EC=95=88=EB=82=B4=20=ED=9B=84=20=EB=A1=9C=EC=BB=AC=20?= =?UTF-8?q?=EC=9E=91=EC=97=85=20=EC=A7=84=ED=96=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 작업 실행 차단 제거 -> 안내 메시지만 표시 - /workspace set만으로 바로 작업 가능 - 나중에 /workspace git, /workspace vikunja로 등록 가능 --- api/discord_bot.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/api/discord_bot.py b/api/discord_bot.py index 66ef30c..74828aa 100644 --- a/api/discord_bot.py +++ b/api/discord_bot.py @@ -183,10 +183,13 @@ async def on_message(message: discord.Message): logger.info(f"통합 분류: {mode} — \"{user_text[:50]}\"") if mode == "task": - # 설정 완료 체크 + # Git/Vikunja 미설정 안내 (차단하지 않음) if not ws.is_ready: - await _send_setup_warning(message, ws) - return + missing = ws.missing_configs + note = " / ".join(missing) + await message.channel.send( + f"ℹ️ {note} 미설정 상태입니다. 로컬 작업만 진행됩니다." + ) await _handle_task(message, user_text, ws) elif mode == "clarify": question = result.get("question", "더 구체적으로 말씀해 주시겠어요?")