refactor(agent): MCP 서버 제거 → CLI 도구 직접 실행 전환 + Wiki 도구 추가

This commit is contained in:
2026-03-15 23:05:38 +09:00
parent 2f7c18df49
commit e59fcdf114
8 changed files with 160 additions and 554 deletions

View File

@@ -272,7 +272,7 @@ async def on_message(message: discord.Message):
await message.reply("실행 중인 작업이 없습니다.")
return
# 에이전트 호출 (MCP 도구 자동 사용)
# 에이전트 호출 (CLI 도구 자율 실행)
channel_id = message.channel.id
if channel_id in _running_tasks and not _running_tasks[channel_id].done():
await message.reply("⚠️ 이미 작업이 실행 중입니다. `취소` 후 다시 요청하세요.")