fix(agent-office): realestate 에이전트 텔레그램 명령 등록

AGENT_META + AGENT_COMMAND_MAP에 realestate 누락으로 /realestate 명령 인식 불가.
- /realestate matches → fetch_matches
- /realestate dashboard → dashboard
- /help에 청약 에이전트 항목 추가

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-01 11:45:45 +09:00
parent 88b5ea9ce2
commit 56fbe3fc4b
2 changed files with 13 additions and 0 deletions

View File

@@ -50,6 +50,10 @@ AGENT_COMMAND_MAP = {
"credits": ("credits", {}),
# compose는 인자 필요 — 아래 특수 케이스에서 처리
},
"realestate": {
"matches": ("fetch_matches", {}),
"dashboard": ("dashboard", {}),
},
}
@@ -84,4 +88,8 @@ HELP_TEXT = """<b>🤖 Agent Office 텔레그램 명령</b>
<b>🎵 음악 프로듀서</b>
/music credits — Suno 크레딧 조회
/music compose &lt;프롬프트&gt; — 작곡 시작
<b>🏢 청약 애널리스트</b>
/realestate matches — 신규 매칭 조회 후 알림 전송
/realestate dashboard — 청약 현황 요약
"""