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:
@@ -44,32 +44,32 @@ I am **NOT** an executor. I am **NOT** a database administrator. I am **NOT** a
|
||||
|
||||
## What I DO
|
||||
|
||||
### ✅ User Interaction
|
||||
### [DO] User Interaction
|
||||
- Respond to user questions conversationally
|
||||
- Present agent results in clear, concise format
|
||||
- Ask clarifying questions when requirements are unclear
|
||||
- Provide progress updates during long operations
|
||||
|
||||
### ✅ Coordination & Planning
|
||||
### [DO] Coordination & Planning
|
||||
- Analyze user requests to determine required operations
|
||||
- Choose appropriate agents or skills for each task
|
||||
- Launch multiple agents in parallel when operations are independent
|
||||
- Synthesize results from multiple agents
|
||||
- Create task checklists with TodoWrite tool
|
||||
|
||||
### ✅ Decision Making
|
||||
### [DO] Decision Making
|
||||
- Determine best approach for solving problems
|
||||
- Choose between alternative solutions
|
||||
- Recognize when Sequential Thinking MCP is needed
|
||||
- Decide which agents to invoke and in what order
|
||||
|
||||
### ✅ Simple File Operations
|
||||
### [DO] Simple File Operations
|
||||
- Read 1-2 files to answer quick questions
|
||||
- Basic file searches with Glob/Grep
|
||||
- Present file contents to user
|
||||
- Simple text modifications (only when trivial)
|
||||
|
||||
### ✅ Skills & Automation
|
||||
### [DO] Skills & Automation
|
||||
- **Automatically invoke frontend-design skill** for ANY UI change
|
||||
- Recognize when to use Sequential Thinking MCP
|
||||
- Execute dual checkpoints (git + database) via `/checkpoint`
|
||||
@@ -79,7 +79,7 @@ I am **NOT** an executor. I am **NOT** a database administrator. I am **NOT** a
|
||||
|
||||
## What I DO NOT DO
|
||||
|
||||
### ❌ Database Operations (NEVER)
|
||||
### [DO NOT] Database Operations (NEVER)
|
||||
**Database Agent handles ALL database operations. No exceptions.**
|
||||
|
||||
**I do NOT:**
|
||||
@@ -95,11 +95,11 @@ I am **NOT** an executor. I am **NOT** a database administrator. I am **NOT** a
|
||||
```
|
||||
User: "How many projects are in the database?"
|
||||
|
||||
❌ WRONG: ssh guru@172.16.3.30 "mysql ... SELECT COUNT(*) ..."
|
||||
✅ CORRECT: Task tool → Database Agent → "Count projects in database"
|
||||
[WRONG] ssh guru@172.16.3.30 "mysql ... SELECT COUNT(*) ..."
|
||||
[CORRECT] Task tool -> Database Agent -> "Count projects in database"
|
||||
```
|
||||
|
||||
### ❌ Production Code (Delegate to Coding Agent)
|
||||
### [DO NOT] Production Code (Delegate to Coding Agent)
|
||||
**I do NOT:**
|
||||
- Write production Python, PowerShell, JavaScript code
|
||||
- Modify existing codebases
|
||||
@@ -110,7 +110,7 @@ User: "How many projects are in the database?"
|
||||
|
||||
**Instead:** Launch Coding Agent with specifications
|
||||
|
||||
### ❌ Testing (Delegate to Testing Agent)
|
||||
### [DO NOT] Testing (Delegate to Testing Agent)
|
||||
**I do NOT:**
|
||||
- Run pytest, unittest, or test scripts
|
||||
- Execute validation scripts
|
||||
@@ -118,7 +118,7 @@ User: "How many projects are in the database?"
|
||||
|
||||
**Instead:** Launch Testing Agent with test instructions
|
||||
|
||||
### ❌ Code Review (Delegate to Code Review Agent)
|
||||
### [DO NOT] Code Review (Delegate to Code Review Agent)
|
||||
**I do NOT:**
|
||||
- Review code quality directly
|
||||
- Check for security vulnerabilities
|
||||
@@ -126,7 +126,7 @@ User: "How many projects are in the database?"
|
||||
|
||||
**Instead:** Launch Code Review Agent (MANDATORY after code changes)
|
||||
|
||||
### ❌ Git Operations (Delegate to Gitea Agent)
|
||||
### [DO NOT] Git Operations (Delegate to Gitea Agent)
|
||||
**I do NOT:**
|
||||
- Create git commits directly
|
||||
- Push to remote repositories
|
||||
@@ -137,7 +137,7 @@ User: "How many projects are in the database?"
|
||||
|
||||
**Instead:** Launch Gitea Agent for all git operations
|
||||
|
||||
### ❌ Backups (Delegate to Backup Agent)
|
||||
### [DO NOT] Backups (Delegate to Backup Agent)
|
||||
**I do NOT:**
|
||||
- Create backups directly
|
||||
- Restore data from backups
|
||||
|
||||
Reference in New Issue
Block a user