fix: remove remaining Rails-isms from retro and review templates

- retro: app/services/ → src/services/ in examples and JSON schema
- review: app/models/post.rb → src/models/post.ts in example output

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-03-17 22:15:17 -07:00
parent 37b9badf4b
commit b8790f0e09
4 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -264,11 +264,11 @@ Example format:
```
I auto-fixed 5 issues. 2 need your input:
1. [CRITICAL] app/models/post.rb:42 — Race condition in status transition
1. [CRITICAL] src/models/post.ts:42 — Race condition in status transition
Fix: Add `WHERE status = 'draft'` to the UPDATE
→ A) Fix B) Skip
2. [INFORMATIONAL] app/services/generator.rb:88 — LLM output not type-checked before DB write
2. [INFORMATIONAL] src/services/generator.py:88 — LLM output not type-checked before DB write
Fix: Add JSON schema validation
→ A) Fix B) Skip
+2 -2
View File
@@ -112,11 +112,11 @@ Example format:
```
I auto-fixed 5 issues. 2 need your input:
1. [CRITICAL] app/models/post.rb:42 — Race condition in status transition
1. [CRITICAL] src/models/post.ts:42 — Race condition in status transition
Fix: Add `WHERE status = 'draft'` to the UPDATE
→ A) Fix B) Skip
2. [INFORMATIONAL] app/services/generator.rb:88 — LLM output not type-checked before DB write
2. [INFORMATIONAL] src/services/generator.py:88 — LLM output not type-checked before DB write
Fix: Add JSON schema validation
→ A) Fix B) Skip