mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
fix: 为所有 skill 的 .workflow/ 路径添加 projectRoot 前缀
从子目录执行 skill 时,相对路径 .workflow/ 会导致产物落到错误位置。
通过 git rev-parse --show-toplevel || pwd 检测项目根目录,
所有 .workflow/ 路径引用统一加上 {projectRoot} 前缀确保路径正确。
涉及 72 个文件,覆盖 20+ 个 skill。
This commit is contained in:
@@ -147,7 +147,7 @@ Return: cycle_id, iterations, final_state
|
||||
## Session Structure
|
||||
|
||||
```
|
||||
.workflow/.cycle/
|
||||
{projectRoot}/.workflow/.cycle/
|
||||
├── {cycleId}.json # Master state file
|
||||
├── {cycleId}.progress/
|
||||
├── ra/
|
||||
@@ -176,7 +176,7 @@ Return: cycle_id, iterations, final_state
|
||||
|
||||
## State Management
|
||||
|
||||
Master state file: `.workflow/.cycle/{cycleId}.json`
|
||||
Master state file: `{projectRoot}/.workflow/.cycle/{cycleId}.json`
|
||||
|
||||
```json
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user