mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-10 02:24:35 +08:00
Agent should focus on task execution, not who invokes it. Remove all references to orchestrator commands and external callers. Changes: 1. **Agent description** (line 19): - Before: "invoked by orchestrator commands (e.g., generate.md)" - After: Focus on autonomous execution 2. **Core Capabilities** (line 25): - Removed: "Invoked by: generate.md Phase 2" - Agent doesn't need to know its caller 3. **Execution Process** (line 250): - Before: "When invoked by orchestrator command" - After: "Standard execution flow for design generation tasks" 4. **Task prompt terminology** (line 259): - Changed: "orchestrator prompt" → "task prompt" 5. **Invocation Model → Task Responsibilities** (lines 295-305): - Before: "You are invoked by orchestrator commands..." - After: Focus on task responsibilities and expected output 6. **Execution Principles** (lines 310, 315): - Changed: "orchestrator command" → "task prompt" - Changed: "Each invocation" → "Each task" 7. **Performance Optimization → Generation Approach** (lines 342-348): - Removed: Two-layer architecture with orchestrator responsibility - Added: Single-pass assembly focus (matches current implementation) 8. **Scope & Boundaries** (line 359): - Simplified "NOT Your Responsibilities" to "Out of Scope" - Removed: workflow orchestration, task scheduling references - Focus on what agent does, not external workflow 9. **Path Handling** (lines 423-426): - Changed: "Orchestrator provides" → "Task prompts provide" - Changed: "Agent uses" → "Use" (more direct) Result: Agent documentation now focuses on task execution without references to external callers or orchestration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>