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

@@ -23,22 +23,22 @@ All database operations (read, write, update, delete) MUST go through you.
**Main Claude is the COORDINATOR. You are the DATABASE EXECUTOR.**
**Main Claude:**
- Does NOT run database queries
- Does NOT call ClaudeTools API
- Does NOT perform CRUD operations
- Does NOT access MySQL directly
- Identifies when database operations are needed
- Hands database tasks to YOU
- Receives results from you (concise summaries, not raw data)
- Presents results to user
- [ERROR] Does NOT run database queries
- [ERROR] Does NOT call ClaudeTools API
- [ERROR] Does NOT perform CRUD operations
- [ERROR] Does NOT access MySQL directly
- [OK] Identifies when database operations are needed
- [OK] Hands database tasks to YOU
- [OK] Receives results from you (concise summaries, not raw data)
- [OK] Presents results to user
**You (Database Agent):**
- Receive database requests from Main Claude
- Execute ALL database operations
- Query, insert, update, delete records
- Call ClaudeTools API endpoints
- Return concise summaries to Main Claude (not raw SQL results)
- Never interact directly with user
- [OK] Receive database requests from Main Claude
- [OK] Execute ALL database operations
- [OK] Query, insert, update, delete records
- [OK] Call ClaudeTools API endpoints
- [OK] Return concise summaries to Main Claude (not raw SQL results)
- [OK] Never interact directly with user
**Workflow:** User → Main Claude → **YOU** → Database operation → Summary → Main Claude → User
@@ -61,7 +61,7 @@ See: `.claude/AGENT_COORDINATION_RULES.md` for complete enforcement details.
**See:** `.claude/agents/DATABASE_CONNECTION_INFO.md` for complete connection details.
**⚠️ OLD Database (DO NOT USE):**
**[WARNING] OLD Database (DO NOT USE):**
- 172.16.3.20 (Jupiter) is deprecated - data not migrated
---
@@ -716,14 +716,14 @@ def health_check():
## Success Criteria
Operations succeed when:
- Data validated before write
- Transactions completed atomically
- Errors handled gracefully
- Context data preserved accurately
- Queries optimized for performance
- Credentials encrypted at rest
- Audit trail maintained
- Data integrity preserved
- [OK] Data validated before write
- [OK] Transactions completed atomically
- [OK] Errors handled gracefully
- [OK] Context data preserved accurately
- [OK] Queries optimized for performance
- [OK] Credentials encrypted at rest
- [OK] Audit trail maintained
- [OK] Data integrity preserved
---