claude-code-workflow 6.0.5 → 6.1.0
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/.claude/agents/action-planning-agent.md +1 -1
- package/.claude/agents/cli-execution-agent.md +269 -269
- package/.claude/agents/cli-explore-agent.md +182 -182
- package/.claude/agents/context-search-agent.md +582 -582
- package/.claude/agents/memory-bridge.md +93 -93
- package/.claude/commands/cli/cli-init.md +1 -1
- package/.claude/commands/memory/docs-full-cli.md +471 -471
- package/.claude/commands/memory/docs-related-cli.md +386 -386
- package/.claude/commands/memory/docs.md +615 -615
- package/.claude/commands/memory/load.md +1 -1
- package/.claude/commands/memory/update-full.md +332 -332
- package/.claude/commands/memory/update-related.md +5 -5
- package/.claude/commands/workflow/init.md +1 -1
- package/.claude/commands/workflow/lite-fix.md +621 -621
- package/.claude/commands/workflow/lite-plan.md +592 -592
- package/.claude/commands/workflow/tools/context-gather.md +434 -434
- package/.claude/commands/workflow/ui-design/generate.md +504 -504
- package/.claude/commands/workflow/ui-design/import-from-code.md +537 -537
- package/.claude/scripts/classify-folders.sh +4 -0
- package/.claude/scripts/convert_tokens_to_css.sh +4 -0
- package/.claude/scripts/detect_changed_modules.sh +5 -1
- package/.claude/scripts/discover-design-files.sh +87 -83
- package/.claude/scripts/generate_module_docs.sh +717 -713
- package/.claude/scripts/get_modules_by_depth.sh +5 -1
- package/.claude/scripts/ui-generate-preview.sh +4 -0
- package/.claude/scripts/ui-instantiate-prototypes.sh +4 -0
- package/.claude/scripts/update_module_claude.sh +4 -0
- package/.claude/skills/command-guide/index/all-commands.json +1 -12
- package/.claude/skills/command-guide/index/by-category.json +1 -12
- package/.claude/skills/command-guide/index/by-use-case.json +1 -12
- package/.claude/skills/command-guide/index/essential-commands.json +1 -12
- package/.claude/skills/command-guide/reference/agents/action-planning-agent.md +127 -71
- package/.claude/skills/command-guide/reference/agents/cli-execution-agent.md +269 -269
- package/.claude/skills/command-guide/reference/agents/cli-explore-agent.md +182 -182
- package/.claude/skills/command-guide/reference/agents/conceptual-planning-agent.md +18 -38
- package/.claude/skills/command-guide/reference/agents/context-search-agent.md +582 -577
- package/.claude/skills/command-guide/reference/agents/memory-bridge.md +93 -93
- package/.claude/skills/command-guide/reference/commands/cli/cli-init.md +1 -1
- package/.claude/skills/command-guide/reference/commands/memory/docs-full-cli.md +471 -471
- package/.claude/skills/command-guide/reference/commands/memory/docs-related-cli.md +386 -386
- package/.claude/skills/command-guide/reference/commands/memory/docs.md +615 -610
- package/.claude/skills/command-guide/reference/commands/memory/load.md +1 -1
- package/.claude/skills/command-guide/reference/commands/memory/update-full.md +332 -332
- package/.claude/skills/command-guide/reference/commands/memory/update-related.md +5 -5
- package/.claude/skills/command-guide/reference/commands/workflow/brainstorm/artifacts.md +299 -451
- package/.claude/skills/command-guide/reference/commands/workflow/brainstorm/auto-parallel.md +14 -37
- package/.claude/skills/command-guide/reference/commands/workflow/brainstorm/synthesis.md +252 -350
- package/.claude/skills/command-guide/reference/commands/workflow/init.md +2 -2
- package/.claude/skills/command-guide/reference/commands/workflow/lite-execute.md +52 -0
- package/.claude/skills/command-guide/reference/commands/workflow/lite-fix.md +621 -602
- package/.claude/skills/command-guide/reference/commands/workflow/lite-plan.md +46 -36
- package/.claude/skills/command-guide/reference/commands/workflow/review-fix.md +18 -58
- package/.claude/skills/command-guide/reference/commands/workflow/review-module-cycle.md +22 -52
- package/.claude/skills/command-guide/reference/commands/workflow/review-session-cycle.md +19 -48
- package/.claude/skills/command-guide/reference/commands/workflow/session/start.md +25 -5
- package/.claude/skills/command-guide/reference/commands/workflow/tdd-plan.md +1 -1
- package/.claude/skills/command-guide/reference/commands/workflow/test-fix-gen.md +7 -7
- package/.claude/skills/command-guide/reference/commands/workflow/tools/context-gather.md +434 -434
- package/.claude/skills/command-guide/reference/commands/workflow/tools/task-generate-agent.md +151 -11
- package/.claude/skills/command-guide/reference/commands/workflow/tools/task-generate-tdd.md +4 -4
- package/.claude/skills/command-guide/reference/commands/workflow/tools/test-task-generate.md +1 -1
- package/.claude/skills/command-guide/reference/commands/workflow/ui-design/generate.md +504 -504
- package/.claude/skills/command-guide/reference/commands/workflow/ui-design/import-from-code.md +537 -537
- package/.claude/workflows/context-search-strategy.md +77 -77
- package/.claude/workflows/tool-strategy.md +90 -71
- package/.claude/workflows/workflow-architecture.md +1 -1
- package/ccw/src/cli.js +7 -0
- package/ccw/src/commands/tool.js +181 -0
- package/ccw/src/core/dashboard-generator.js +18 -3
- package/ccw/src/core/lite-scanner.js +35 -11
- package/ccw/src/core/server.js +531 -46
- package/ccw/src/templates/dashboard-css/01-base.css +161 -0
- package/ccw/src/templates/dashboard-css/02-session.css +726 -0
- package/ccw/src/templates/dashboard-css/03-tasks.css +512 -0
- package/ccw/src/templates/dashboard-css/04-lite-tasks.css +843 -0
- package/ccw/src/templates/dashboard-css/05-context.css +2206 -0
- package/ccw/src/templates/dashboard-css/06-cards.css +1570 -0
- package/ccw/src/templates/dashboard-css/07-managers.css +936 -0
- package/ccw/src/templates/dashboard-css/08-review.css +1266 -0
- package/ccw/src/templates/dashboard-css/09-explorer.css +1397 -0
- package/ccw/src/templates/dashboard-js/components/global-notifications.js +219 -0
- package/ccw/src/templates/dashboard-js/components/hook-manager.js +10 -0
- package/ccw/src/templates/dashboard-js/components/mcp-manager.js +11 -1
- package/ccw/src/templates/dashboard-js/components/navigation.js +11 -5
- package/ccw/src/templates/dashboard-js/components/tabs-context.js +20 -20
- package/ccw/src/templates/dashboard-js/components/tabs-other.js +11 -11
- package/ccw/src/templates/dashboard-js/components/theme.js +29 -1
- package/ccw/src/templates/dashboard-js/main.js +4 -0
- package/ccw/src/templates/dashboard-js/state.js +5 -0
- package/ccw/src/templates/dashboard-js/views/explorer.js +852 -0
- package/ccw/src/templates/dashboard-js/views/home.js +13 -9
- package/ccw/src/templates/dashboard-js/views/hook-manager.js +8 -5
- package/ccw/src/templates/dashboard-js/views/lite-tasks.js +21 -16
- package/ccw/src/templates/dashboard-js/views/mcp-manager.js +90 -19
- package/ccw/src/templates/dashboard-js/views/project-overview.js +15 -11
- package/ccw/src/templates/dashboard-js/views/review-session.js +3 -3
- package/ccw/src/templates/dashboard-js/views/session-detail.js +38 -28
- package/ccw/src/templates/dashboard.html +129 -28
- package/ccw/src/tools/classify-folders.js +204 -0
- package/ccw/src/tools/convert-tokens-to-css.js +250 -0
- package/ccw/src/tools/detect-changed-modules.js +288 -0
- package/ccw/src/tools/discover-design-files.js +134 -0
- package/ccw/src/tools/edit-file.js +266 -0
- package/ccw/src/tools/generate-module-docs.js +416 -0
- package/ccw/src/tools/get-modules-by-depth.js +308 -0
- package/ccw/src/tools/index.js +176 -0
- package/ccw/src/tools/ui-generate-preview.js +327 -0
- package/ccw/src/tools/ui-instantiate-prototypes.js +301 -0
- package/ccw/src/tools/update-module-claude.js +380 -0
- package/package.json +1 -1
- package/.claude/skills/command-guide/reference/commands/workflow/status.md +0 -352
- package/ccw/src/core/server.js.bak +0 -385
- package/ccw/src/core/server_original.bak +0 -385
- package/ccw/src/templates/dashboard.css +0 -8187
- package/ccw/src/templates/dashboard_tailwind.html +0 -42
- package/ccw/src/templates/dashboard_test.html +0 -37
- package/ccw/src/templates/tailwind-base.css +0 -212
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
/* ===================================
|
|
2
|
+
Dashboard - Complementary Styles
|
|
3
|
+
================================== */
|
|
4
|
+
|
|
5
|
+
/* This file contains only essential CSS that cannot be achieved
|
|
6
|
+
with Tailwind utilities. All layout, colors, and basic styling
|
|
7
|
+
are handled by Tailwind classes in dashboard.html.
|
|
8
|
+
|
|
9
|
+
CSS variables are defined inline in dashboard.html <style> block. */
|
|
10
|
+
|
|
11
|
+
/* Font Family Definitions */
|
|
12
|
+
:root {
|
|
13
|
+
--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
14
|
+
--font-mono: 'SF Mono', 'Consolas', 'Monaco', 'Liberation Mono', 'Courier New', monospace;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
body {
|
|
18
|
+
font-family: var(--font-sans);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* Scrollbar styling (cannot be done in Tailwind) */
|
|
22
|
+
::-webkit-scrollbar {
|
|
23
|
+
width: 6px;
|
|
24
|
+
height: 6px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
::-webkit-scrollbar-track {
|
|
28
|
+
background: transparent;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
::-webkit-scrollbar-thumb {
|
|
32
|
+
background: hsl(var(--border));
|
|
33
|
+
border-radius: 3px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
::-webkit-scrollbar-thumb:hover {
|
|
37
|
+
background: hsl(var(--muted-foreground));
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/* Sidebar collapse state (JavaScript-toggled class) */
|
|
41
|
+
.sidebar.collapsed {
|
|
42
|
+
width: 60px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.sidebar.collapsed .nav-text,
|
|
46
|
+
.sidebar.collapsed .nav-section-title,
|
|
47
|
+
.sidebar.collapsed .badge,
|
|
48
|
+
.sidebar.collapsed .toggle-text {
|
|
49
|
+
display: none;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.sidebar.collapsed .nav-section-header {
|
|
53
|
+
justify-content: center;
|
|
54
|
+
padding: 12px 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.sidebar.collapsed .nav-item {
|
|
58
|
+
justify-content: center;
|
|
59
|
+
padding: 10px 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* Nav item active state */
|
|
63
|
+
.nav-item.active {
|
|
64
|
+
background-color: hsl(var(--accent));
|
|
65
|
+
color: hsl(var(--primary));
|
|
66
|
+
font-weight: 500;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.nav-item.active .nav-icon {
|
|
70
|
+
color: hsl(var(--primary));
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.nav-item.active .nav-count {
|
|
74
|
+
background-color: hsl(var(--primary));
|
|
75
|
+
color: white;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/* Nav item specific color active states */
|
|
79
|
+
.nav-item[data-filter="active"].active {
|
|
80
|
+
background-color: hsl(var(--success-light));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.nav-item[data-filter="active"].active .nav-icon {
|
|
84
|
+
color: hsl(var(--success));
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.nav-item[data-filter="archived"].active {
|
|
88
|
+
background-color: hsl(var(--info-light));
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.nav-item[data-filter="archived"].active .nav-icon {
|
|
92
|
+
color: hsl(var(--info));
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.nav-item[data-lite="lite-plan"].active {
|
|
96
|
+
background-color: hsl(var(--indigo-light));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.nav-item[data-lite="lite-plan"].active .nav-icon {
|
|
100
|
+
color: hsl(var(--indigo));
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.nav-item[data-lite="lite-fix"].active {
|
|
104
|
+
background-color: hsl(var(--orange-light));
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.nav-item[data-lite="lite-fix"].active .nav-icon {
|
|
108
|
+
color: hsl(var(--orange));
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.sidebar.collapsed .toggle-icon {
|
|
112
|
+
transform: rotate(180deg);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/* Path menu open state (JavaScript-toggled class) */
|
|
116
|
+
.path-menu.open {
|
|
117
|
+
display: block;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/* Mobile sidebar (responsive behavior beyond Tailwind) */
|
|
121
|
+
@media (max-width: 768px) {
|
|
122
|
+
.sidebar {
|
|
123
|
+
position: fixed;
|
|
124
|
+
left: -260px;
|
|
125
|
+
top: 56px;
|
|
126
|
+
height: calc(100vh - 56px);
|
|
127
|
+
z-index: 200;
|
|
128
|
+
box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.sidebar.open {
|
|
132
|
+
left: 0;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.sidebar-overlay {
|
|
136
|
+
display: none;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.sidebar-overlay.open {
|
|
140
|
+
display: block;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.menu-toggle-btn {
|
|
144
|
+
display: block !important;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/* Task detail drawer (complex transform animation) */
|
|
149
|
+
.task-detail-drawer {
|
|
150
|
+
transform: translateX(100%);
|
|
151
|
+
transition: transform 0.3s ease;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.task-detail-drawer.open {
|
|
155
|
+
transform: translateX(0);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.drawer-overlay.active {
|
|
159
|
+
display: block;
|
|
160
|
+
}
|
|
161
|
+
|