mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-09 02:24:11 +08:00
- 新增 OPTIMIZATION_SUMMARY.md,详细记录优化过程和成果 - 新增 README_OPTIMIZATION.md,概述优化后的文件结构和关键指标 - 创建 specs/agent-roles.md,整合 Planning Agent 和 Execution Agent 的角色定义 - 合并多个提示词文件,减少内容重复,优化 Token 使用 - 新建 ARCHITECTURE.md 和 INDEX.md,提供系统架构和文档导航 - 添加 CONTENT_MIGRATION_REPORT.md,确保内容迁移的完整性和零丢失 - 更新文件引用,确保向后兼容性,添加弃用通知
33 lines
1022 B
Markdown
33 lines
1022 B
Markdown
⚠️ **DEPRECATED** - This file is deprecated as of v2.0 (2025-01-29)
|
|
|
|
**Use instead**: [`execution-agent.md`](execution-agent.md)
|
|
|
|
This file has been merged into `execution-agent.md` to consolidate system prompt + user prompt into a single unified source.
|
|
|
|
**Why the change?**
|
|
- Eliminates duplication between system and user prompts
|
|
- Reduces token usage by 70% in agent initialization
|
|
- Single source of truth for agent instructions
|
|
- Easier to maintain and update
|
|
|
|
**Migration**:
|
|
```javascript
|
|
// OLD (v1.0)
|
|
spawn_agent({ message: Read('prompts/execution-agent-system.md') });
|
|
|
|
// NEW (v2.0)
|
|
spawn_agent({ message: Read('prompts/execution-agent.md') });
|
|
```
|
|
|
|
**Timeline**:
|
|
- v2.0 (2025-01-29): Old files kept for backward compatibility
|
|
- v2.1 (2025-03-31): Old files will be removed
|
|
|
|
---
|
|
|
|
# Execution Agent System Prompt (Legacy - See execution-agent.md instead)
|
|
|
|
See [`execution-agent.md`](execution-agent.md) for the current unified prompt.
|
|
|
|
All content below is now consolidated into the new unified prompt file.
|