claude-code-workflow 6.3.39 → 6.3.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ccw/src/templates/dashboard-js/components/navigation.js +1 -1
- package/ccw/src/templates/dashboard-js/components/notifications.js +1 -1
- package/ccw/src/templates/dashboard-js/views/lite-tasks.js +1 -1
- package/ccw/src/templates/dashboard-js/views/session-detail.js +1 -1
- package/package.json +1 -1
|
@@ -299,7 +299,7 @@ async function refreshWorkspace() {
|
|
|
299
299
|
});
|
|
300
300
|
|
|
301
301
|
[...(data.liteTasks?.litePlan || []), ...(data.liteTasks?.liteFix || [])].forEach(s => {
|
|
302
|
-
const sessionKey = `lite-${s.
|
|
302
|
+
const sessionKey = `lite-${s.type}-${s.id}`.replace(/[^a-zA-Z0-9-]/g, '-');
|
|
303
303
|
liteTaskDataStore[sessionKey] = s;
|
|
304
304
|
});
|
|
305
305
|
|
|
@@ -823,7 +823,7 @@ async function refreshWorkspaceData(newData) {
|
|
|
823
823
|
});
|
|
824
824
|
|
|
825
825
|
[...(newData.liteTasks?.litePlan || []), ...(newData.liteTasks?.liteFix || [])].forEach(s => {
|
|
826
|
-
const key = `lite-${s.
|
|
826
|
+
const key = `lite-${s.type}-${s.id}`.replace(/[^a-zA-Z0-9-]/g, '-');
|
|
827
827
|
liteTaskDataStore[key] = s;
|
|
828
828
|
});
|
|
829
829
|
|
|
@@ -2817,7 +2817,7 @@ function showLiteTaskDetailPage(sessionKey) {
|
|
|
2817
2817
|
</div>
|
|
2818
2818
|
|
|
2819
2819
|
<!-- Tab Content -->
|
|
2820
|
-
<div class="detail-tab-content" id="liteDetailTabContent">
|
|
2820
|
+
<div class="detail-tab-content active" id="liteDetailTabContent">
|
|
2821
2821
|
${renderLiteTasksTab(session, tasks, completed, inProgress, pending)}
|
|
2822
2822
|
</div>
|
|
2823
2823
|
</div>
|
|
@@ -107,7 +107,7 @@ function showSessionDetailPage(sessionKey) {
|
|
|
107
107
|
</div>
|
|
108
108
|
|
|
109
109
|
<!-- Tab Content -->
|
|
110
|
-
<div class="detail-tab-content" id="detailTabContent">
|
|
110
|
+
<div class="detail-tab-content active" id="detailTabContent">
|
|
111
111
|
${renderTasksTab(session, tasks, completed, inProgress, pending)}
|
|
112
112
|
</div>
|
|
113
113
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-workflow",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.40",
|
|
4
4
|
"description": "JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "ccw/src/index.js",
|