Commit Graph

8 Commits

Author SHA1 Message Date
Claude Owner
9123afc14e chore(ts): make tsconfig compatible with TypeScript 6
- Add rootDir: ./src so tsc no longer errors with TS5011 demanding it
  be set explicitly alongside outDir.
- Add ignoreDeprecations: 6.0 to silence the TS5101 baseUrl deprecation
  warning until baseUrl is removed in TS 7.
2026-05-26 14:39:07 +09:00
Claude Owner
e22cb53ccf fix(tts): correct Discord snowflake regex and getSource typo
- Mention/emoji regexes used [(0-9)]{18}; '(' and ')' inside a character
  class are literal so this matched the bracket chars themselves and
  hard-fixed the ID length to 18. Discord snowflakes are 17-20 digits
  (older 2015-2017 accounts are 17, 2024+ trend toward 19-20). Switch
  to \\d{17,20} and capture the ID for member lookup.
- Tighten emoji regex name segment from .* (greedy, eats across emojis)
  to [^:]+ so adjacent emojis no longer collapse into one match.
- Rename getSorce -> getSource.
2026-05-26 14:38:46 +09:00
Claude Owner
7b56d2e055 fix(db): correct user.update target table
stmt.user.update was issuing UPDATE guilds instead of UPDATE users,
so any DB.user.update() call would silently corrupt guild rows that
happened to share the same WHERE clause shape and never touch the
intended user row.
2026-05-26 14:38:09 +09:00
Claude Owner
9288127561 docs: rewrite README with project overview
코드베이스 분석 결과를 반영해 README를 placeholder에서 실사용 가능한 문서로 개편.
주요 기능, 슬래시/prefix 명령어, 기술 스택, 디렉터리 구조, 환경변수 표,
실행/Docker 절차, 동작 흐름을 정리하고, 현재 tsconfig 결함으로 인한
빌드 실패(TS5101/TS5011)와 해결 방법을 명시.
2026-05-26 14:28:50 +09:00
Claude Owner
7876283e08 Merge upstream tts_bot main 2026-05-26 14:18:44 +09:00
ejclaw
6bfef454b4 init tts_bot workspace 2026-05-26 14:16:38 +09:00
d6b36c43c2 기존 2026-05-26 14:15:09 +09:00
55d402f606 Initial commit 2026-05-26 14:12:31 +09:00