From 842ed624e81a44c9fef774539f619e75e88f4a65 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 20 Nov 2025 09:54:41 +0000 Subject: [PATCH] fix: use ~/.claude path format for template reference Update template path from .claude/templates to ~/.claude/templates to follow project convention for path references. --- .claude/commands/workflow/status.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/commands/workflow/status.md b/.claude/commands/workflow/status.md index dc4a6aeb..d525329a 100644 --- a/.claude/commands/workflow/status.md +++ b/.claude/commands/workflow/status.md @@ -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);