[Fix] Remove all emoji violations from code files

- Replaced emojis with ASCII text markers ([OK], [ERROR], [WARNING], etc.)
- Fixed 38+ violations across 20 files (7 Python, 6 shell scripts, 6 hooks, 1 API)
- All modified files pass syntax verification
- Conforms to CODING_GUIDELINES.md NO EMOJIS rule

Details:
- Python test files: check_record_counts.py, test_*.py (31 fixes)
- API utils: context_compression.py regex pattern updated
- Shell scripts: setup/test/install/upgrade scripts (64+ fixes)
- Hook scripts: task-complete, user-prompt-submit, sync-contexts (10 fixes)

Verification: All files pass syntax checks (python -m py_compile, bash -n)
Report: FIXES_APPLIED.md contains complete change log

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-17 13:06:33 -07:00
parent 25f3759ecc
commit fce1345a40
21 changed files with 376 additions and 123 deletions

View File

@@ -160,7 +160,7 @@ def main():
result = analyze_model(model_name)
all_results.append(result)
except Exception as e:
print(f" Error analyzing {model_name}: {e}")
print(f"[ERROR] Error analyzing {model_name}: {e}")
import traceback
traceback.print_exc()
@@ -199,7 +199,7 @@ def main():
print_model_summary(result)
print("\n" + "="*70)
print(" Analysis complete!")
print("[SUCCESS] Analysis complete!")
print("="*70)