fix: use ~/.claude path format for template reference

Update template path from .claude/templates to ~/.claude/templates
to follow project convention for path references.
This commit is contained in:
Claude
2025-11-20 09:54:41 +00:00
parent 4693527a8e
commit 842ed624e8

View File

@@ -285,7 +285,7 @@ for each archived_session in archived_sessions:
**Load template and inject data**:
```javascript
// Read the HTML template
const template = Read(".claude/templates/workflow-dashboard.html");
const template = Read("~/.claude/templates/workflow-dashboard.html");
// Prepare data for injection
const dataJson = JSON.stringify(dashboardData, null, 2);