fix: Remove all emojis from documentation for cross-platform compliance

Replaced 50+ emoji types with ASCII text markers for consistent rendering
across all terminals, editors, and operating systems:

  - Checkmarks/status: [OK], [DONE], [SUCCESS], [PASS]
  - Errors/warnings: [ERROR], [FAIL], [WARNING], [CRITICAL]
  - Actions: [DO], [DO NOT], [REQUIRED], [OPTIONAL]
  - Navigation: [NEXT], [PREVIOUS], [TIP], [NOTE]
  - Progress: [IN PROGRESS], [PENDING], [BLOCKED]

Additional changes:
  - Made paths cross-platform (~/ClaudeTools for Mac/Linux)
  - Fixed database host references to 172.16.3.30
  - Updated START_HERE.md and CONTEXT_RECOVERY_PROMPT.md for multi-OS use

Files updated: 58 markdown files across:
  - .claude/ configuration and agents
  - docs/ documentation
  - projects/ project files
  - Root-level documentation

This enforces the NO EMOJIS rule from directives.md and ensures
documentation renders correctly on all systems.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-20 16:20:35 -07:00
parent dc7174a53d
commit 565b6458ba
58 changed files with 1025 additions and 1019 deletions

View File

@@ -105,11 +105,11 @@ Before performing any task, check delegation table:
| Task Type | Delegate To | Always? |
|-----------|-------------|---------|
| Context retrieval | Database Agent | YES |
| Context retrieval | Database Agent | [OK] YES |
| Codebase search | Explore Agent | For patterns/keywords |
| Code changes >10 lines | Coding Agent | YES |
| Running tests | Testing Agent | YES |
| Git operations | Gitea Agent | YES |
| Code changes >10 lines | Coding Agent | [OK] YES |
| Running tests | Testing Agent | [OK] YES |
| Git operations | Gitea Agent | [OK] YES |
| File operations <5 files | Main Claude | Direct OK |
| Documentation | Documentation Squire | For comprehensive docs |
@@ -270,10 +270,10 @@ This protocol is MANDATORY. To ensure compliance:
**Violation Example:**
```
User: "Find all Python files"
Claude: [Runs Glob directly] WRONG
Claude: [Runs Glob directly] [ERROR] WRONG
Correct:
Claude: "Let me delegate to Explore agent to search for Python files"
Claude: "Let me delegate to Explore agent to search for Python files" [OK]
```
---