| 1 | prompt = """users.py and orgs.py each carry an identical private _normalize_name helper. Refactor: |
| 2 | - move the logic into a shared textnorm.py module with a public normalize_name |
| 3 | - both users.py and orgs.py must use it; delete the private copies |
| 4 | - behavior stays identical""" |
| 5 | class = "refactor" |
| 6 | max_steps = 20 |
| 7 | timeout_sec = 300 |
| 8 |