refactor(runtime): replace unicode dashes in prompt strings

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-04 01:27:51 +09:00
parent 146ca34a7a
commit fabbcaa4b7
51 changed files with 780 additions and 780 deletions
@@ -4,12 +4,12 @@ export const TODOWRITE_DESCRIPTION = `Use this tool to create and manage a struc
Each todo title MUST encode four elements: WHERE, WHY, HOW, and EXPECTED RESULT.
Format: "[WHERE] [HOW] to [WHY] expect [RESULT]"
Format: "[WHERE] [HOW] to [WHY] - expect [RESULT]"
GOOD:
- "src/utils/validation.ts: Add validateEmail() for input sanitization returns boolean"
- "UserService.create(): Call validateEmail() before DB insert rejects invalid emails with 400"
- "validation.test.ts: Add test for missing @ sign expect validateEmail('foo') to return false"
- "src/utils/validation.ts: Add validateEmail() for input sanitization - returns boolean"
- "UserService.create(): Call validateEmail() before DB insert - rejects invalid emails with 400"
- "validation.test.ts: Add test for missing @ sign - expect validateEmail('foo') to return false"
BAD:
- "Implement email validation" (where? how? what result?)