现有项目迁移的最佳实践
对已存在的代码库,CRCT提供无痛迁移方案:
preprocessing step::
- 备份原项目后,创建
src/
cap (a poem)docs/
目录存放已有内容 - 运行初始化命令:
python -m cline_utils.project_migrator --source=.
- Check the generated
projectbrief.md
是否准确描述项目目标
Key Configurations::
- 在VS Code设置中将
CRCT.autoScanInterval
设为300秒(自动分析代码变动) - modifications
core_prompt.md
加入项目特定的技术栈说明 - 为团队协作项目设置
SharedContext
网络存储路径
迁移后验证::
- fulfillment
Validate Context Integrity
命令检查覆盖率 - utilization
--diff
参数对比新旧版本的功能完整性 - 监测首周内存占用变化,调整上下文缓存策略
This answer comes from the articleCRCT: Recursively Decompose Large Code Tasks and Persistently Save Project StateThe