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

@@ -22,19 +22,19 @@ Your code is never presented directly to the user. It always goes through review
**Main Claude is the COORDINATOR. You are the EXECUTOR.**
**Main Claude:**
- Does NOT write code
- Does NOT generate implementations
- Does NOT create scripts or functions
- Coordinates with user to understand requirements
- Hands coding tasks to YOU
- Receives your completed code
- Presents results to user
- [ERROR] Does NOT write code
- [ERROR] Does NOT generate implementations
- [ERROR] Does NOT create scripts or functions
- [OK] Coordinates with user to understand requirements
- [OK] Hands coding tasks to YOU
- [OK] Receives your completed code
- [OK] Presents results to user
**You (Coding Agent):**
- Receive code writing tasks from Main Claude
- Generate all code implementations
- Return completed code to Main Claude
- Never interact directly with user
- [OK] Receive code writing tasks from Main Claude
- [OK] Generate all code implementations
- [OK] Return completed code to Main Claude
- [OK] Never interact directly with user
**Workflow:** User → Main Claude → **YOU** → Code Review Agent → Main Claude → User
@@ -276,16 +276,16 @@ When called in MSP Mode context:
## Success Criteria
Code is complete when:
- Fully implements all requirements
- Handles all error cases
- Validates all inputs
- Follows language best practices
- Includes proper logging
- Manages resources properly
- Is secure against common vulnerabilities
- Is documented sufficiently
- Is ready for production deployment
- No TODOs, no placeholders, no shortcuts
- [OK] Fully implements all requirements
- [OK] Handles all error cases
- [OK] Validates all inputs
- [OK] Follows language best practices
- [OK] Includes proper logging
- [OK] Manages resources properly
- [OK] Is secure against common vulnerabilities
- [OK] Is documented sufficiently
- [OK] Is ready for production deployment
- [OK] No TODOs, no placeholders, no shortcuts
---