Implement basic commands (/start, /help) #63

Closed
opened 2026-02-05 13:53:55 +09:00 by agentson · 0 comments
Collaborator

목표

기본 명령어 /start와 /help 구현

세부사항

  • /start: 환영 메시지와 봇 소개
  • /help: 사용 가능한 명령어 목록 및 설명

구현 내용

  • main.py에서 TelegramCommandHandler 초기화
  • /start 핸들러: 봇 시작 메시지
  • /help 핸들러: 명령어 도움말

명령어 응답 형식

/start

🤖 The Ouroboros Trading Bot

AI-powered global stock trading agent with real-time notifications.

Available commands:
/help - Show this help message
/status - Current trading status
/positions - View holdings
/stop - Pause trading
/resume - Resume trading

/help

📖 Available Commands

/start - Welcome message
/help - Show available commands
/status - Trading status (mode, markets, P&L)
/positions - Current holdings
/stop - Pause trading
/resume - Resume trading

체크리스트

  • main.py에 TelegramCommandHandler 통합
  • /start 핸들러 구현
  • /help 핸들러 구현
  • 테스트 추가
  • 커버리지 80% 이상 유지

의존성

  • Depends on #61 (TelegramCommandHandler)

관련 이슈

Part of Telegram bidirectional command feature implementation

## 목표 기본 명령어 /start와 /help 구현 ## 세부사항 - /start: 환영 메시지와 봇 소개 - /help: 사용 가능한 명령어 목록 및 설명 ## 구현 내용 - main.py에서 TelegramCommandHandler 초기화 - /start 핸들러: 봇 시작 메시지 - /help 핸들러: 명령어 도움말 ## 명령어 응답 형식 ### /start ``` 🤖 The Ouroboros Trading Bot AI-powered global stock trading agent with real-time notifications. Available commands: /help - Show this help message /status - Current trading status /positions - View holdings /stop - Pause trading /resume - Resume trading ``` ### /help ``` 📖 Available Commands /start - Welcome message /help - Show available commands /status - Trading status (mode, markets, P&L) /positions - Current holdings /stop - Pause trading /resume - Resume trading ``` ## 체크리스트 - [ ] main.py에 TelegramCommandHandler 통합 - [ ] /start 핸들러 구현 - [ ] /help 핸들러 구현 - [ ] 테스트 추가 - [ ] 커버리지 80% 이상 유지 ## 의존성 - Depends on #61 (TelegramCommandHandler) ## 관련 이슈 Part of Telegram bidirectional command feature implementation
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: jihoson/The-Ouroboros#63