claude-code-workflow 6.3.28 → 6.3.29
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/commands/issue/execute.md +133 -18
- package/.claude/commands/workflow/debug.md +6 -0
- package/.claude/commands/workflow/execute.md +4 -0
- package/.claude/commands/workflow/lite-execute.md +4 -0
- package/.claude/commands/workflow/lite-lite-lite.md +179 -544
- package/.claude/commands/workflow/review-fix.md +4 -0
- package/.claude/commands/workflow/test-cycle-execute.md +4 -0
- package/.codex/prompts/issue-execute.md +72 -12
- package/README.md +3 -0
- package/ccw/dist/core/lite-scanner.d.ts.map +1 -1
- package/ccw/dist/core/lite-scanner.js +56 -3
- package/ccw/dist/core/lite-scanner.js.map +1 -1
- package/ccw/dist/tools/memory-update-queue.d.ts.map +1 -1
- package/ccw/dist/tools/memory-update-queue.js +5 -11
- package/ccw/dist/tools/memory-update-queue.js.map +1 -1
- package/ccw/src/core/lite-scanner.ts +58 -3
- package/ccw/src/templates/dashboard-css/03-tasks.css +5 -0
- package/ccw/src/templates/dashboard-css/04-lite-tasks.css +630 -1
- package/ccw/src/templates/dashboard-js/components/hook-manager.js +30 -21
- package/ccw/src/templates/dashboard-js/i18n.js +100 -0
- package/ccw/src/templates/dashboard-js/views/lite-tasks.js +1138 -334
- package/ccw/src/tools/memory-update-queue.js +5 -11
- package/package.json +1 -1
|
@@ -406,6 +406,7 @@
|
|
|
406
406
|
}
|
|
407
407
|
|
|
408
408
|
.collapsible-content {
|
|
409
|
+
display: block;
|
|
409
410
|
padding: 1rem;
|
|
410
411
|
background: hsl(var(--muted));
|
|
411
412
|
}
|
|
@@ -1281,7 +1282,7 @@
|
|
|
1281
1282
|
.multi-cli-status.pending,
|
|
1282
1283
|
.multi-cli-status.exploring,
|
|
1283
1284
|
.multi-cli-status.initialized {
|
|
1284
|
-
|
|
1285
|
+
background: hsl(var(--muted));
|
|
1285
1286
|
color: hsl(var(--muted-foreground));
|
|
1286
1287
|
}
|
|
1287
1288
|
|
|
@@ -3440,6 +3441,309 @@
|
|
|
3440
3441
|
transform: rotate(-90deg);
|
|
3441
3442
|
}
|
|
3442
3443
|
|
|
3444
|
+
/* Discussion Round using collapsible-section pattern */
|
|
3445
|
+
.discussion-round.collapsible-section {
|
|
3446
|
+
margin-bottom: 0.75rem;
|
|
3447
|
+
border: 1px solid hsl(var(--border));
|
|
3448
|
+
border-radius: 8px;
|
|
3449
|
+
overflow: hidden;
|
|
3450
|
+
background: hsl(var(--card));
|
|
3451
|
+
}
|
|
3452
|
+
|
|
3453
|
+
.discussion-round.collapsible-section .collapsible-header {
|
|
3454
|
+
display: flex;
|
|
3455
|
+
align-items: center;
|
|
3456
|
+
gap: 0.75rem;
|
|
3457
|
+
padding: 0.75rem 1rem;
|
|
3458
|
+
background: hsl(var(--muted) / 0.3);
|
|
3459
|
+
cursor: pointer;
|
|
3460
|
+
transition: background-color 0.2s;
|
|
3461
|
+
}
|
|
3462
|
+
|
|
3463
|
+
.discussion-round.collapsible-section .collapsible-header:hover {
|
|
3464
|
+
background: hsl(var(--muted) / 0.5);
|
|
3465
|
+
}
|
|
3466
|
+
|
|
3467
|
+
.discussion-round.collapsible-section .collapsible-content {
|
|
3468
|
+
padding: 1rem;
|
|
3469
|
+
border-top: 1px solid hsl(var(--border) / 0.5);
|
|
3470
|
+
background: hsl(var(--card));
|
|
3471
|
+
}
|
|
3472
|
+
|
|
3473
|
+
.discussion-round.collapsible-section .collapsible-content.collapsed {
|
|
3474
|
+
display: none;
|
|
3475
|
+
}
|
|
3476
|
+
|
|
3477
|
+
/* ========== Summary Tab Content ========== */
|
|
3478
|
+
.summary-tab-content .summary-section {
|
|
3479
|
+
margin-bottom: 1rem;
|
|
3480
|
+
padding: 1rem;
|
|
3481
|
+
border: 1px solid hsl(var(--border));
|
|
3482
|
+
border-radius: 8px;
|
|
3483
|
+
background: hsl(var(--card));
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
.summary-section-title {
|
|
3487
|
+
font-size: 0.9rem;
|
|
3488
|
+
font-weight: 600;
|
|
3489
|
+
color: hsl(var(--foreground));
|
|
3490
|
+
margin-bottom: 0.75rem;
|
|
3491
|
+
display: flex;
|
|
3492
|
+
align-items: center;
|
|
3493
|
+
gap: 0.375rem;
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
.summary-content {
|
|
3497
|
+
font-size: 0.875rem;
|
|
3498
|
+
color: hsl(var(--muted-foreground));
|
|
3499
|
+
line-height: 1.6;
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
.convergence-info {
|
|
3503
|
+
display: flex;
|
|
3504
|
+
align-items: center;
|
|
3505
|
+
gap: 0.75rem;
|
|
3506
|
+
}
|
|
3507
|
+
|
|
3508
|
+
.convergence-level {
|
|
3509
|
+
font-size: 0.75rem;
|
|
3510
|
+
padding: 0.25rem 0.5rem;
|
|
3511
|
+
border-radius: 4px;
|
|
3512
|
+
text-transform: capitalize;
|
|
3513
|
+
background: hsl(var(--muted));
|
|
3514
|
+
}
|
|
3515
|
+
|
|
3516
|
+
.convergence-level.full { background: hsl(var(--success) / 0.15); color: hsl(var(--success)); }
|
|
3517
|
+
.convergence-level.partial { background: hsl(var(--warning) / 0.15); color: hsl(var(--warning)); }
|
|
3518
|
+
.convergence-level.low { background: hsl(var(--error) / 0.15); color: hsl(var(--error)); }
|
|
3519
|
+
|
|
3520
|
+
.convergence-rec {
|
|
3521
|
+
font-size: 0.75rem;
|
|
3522
|
+
padding: 0.25rem 0.5rem;
|
|
3523
|
+
border-radius: 4px;
|
|
3524
|
+
text-transform: capitalize;
|
|
3525
|
+
background: hsl(var(--info) / 0.15);
|
|
3526
|
+
color: hsl(var(--info));
|
|
3527
|
+
}
|
|
3528
|
+
|
|
3529
|
+
.convergence-rec.converged { background: hsl(var(--success) / 0.15); color: hsl(var(--success)); }
|
|
3530
|
+
.convergence-rec.continue { background: hsl(var(--info) / 0.15); color: hsl(var(--info)); }
|
|
3531
|
+
|
|
3532
|
+
/* Summary collapsible Solutions section */
|
|
3533
|
+
.summary-section.collapsible-section {
|
|
3534
|
+
padding: 0;
|
|
3535
|
+
overflow: hidden;
|
|
3536
|
+
}
|
|
3537
|
+
|
|
3538
|
+
.summary-section.collapsible-section .collapsible-header {
|
|
3539
|
+
padding: 0.75rem 1rem;
|
|
3540
|
+
background: hsl(var(--card));
|
|
3541
|
+
border-bottom: 1px solid transparent;
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
.summary-section.collapsible-section .collapsible-header:hover {
|
|
3545
|
+
background: hsl(var(--muted) / 0.5);
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
.summary-section.collapsible-section .collapsible-content {
|
|
3549
|
+
padding: 1rem;
|
|
3550
|
+
background: hsl(var(--muted) / 0.3);
|
|
3551
|
+
border-top: 1px solid hsl(var(--border) / 0.5);
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
.solution-summary-item {
|
|
3555
|
+
display: flex;
|
|
3556
|
+
align-items: center;
|
|
3557
|
+
gap: 0.75rem;
|
|
3558
|
+
padding: 0.5rem 0;
|
|
3559
|
+
border-bottom: 1px solid hsl(var(--border) / 0.3);
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3562
|
+
.solution-summary-item:last-child {
|
|
3563
|
+
border-bottom: none;
|
|
3564
|
+
}
|
|
3565
|
+
|
|
3566
|
+
.solution-num {
|
|
3567
|
+
font-size: 0.75rem;
|
|
3568
|
+
font-weight: 600;
|
|
3569
|
+
color: hsl(var(--primary));
|
|
3570
|
+
min-width: 1.5rem;
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
.solution-name {
|
|
3574
|
+
flex: 1;
|
|
3575
|
+
font-size: 0.875rem;
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
.feasibility-badge {
|
|
3579
|
+
font-size: 0.7rem;
|
|
3580
|
+
padding: 0.125rem 0.375rem;
|
|
3581
|
+
border-radius: 4px;
|
|
3582
|
+
background: hsl(var(--success) / 0.15);
|
|
3583
|
+
color: hsl(var(--success));
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
|
+
/* ========== Context Tab Content (Multi-CLI) ========== */
|
|
3587
|
+
.context-tab-content {
|
|
3588
|
+
display: flex;
|
|
3589
|
+
flex-direction: column;
|
|
3590
|
+
gap: 1rem;
|
|
3591
|
+
padding: 1rem;
|
|
3592
|
+
}
|
|
3593
|
+
|
|
3594
|
+
.context-tab-content .context-section {
|
|
3595
|
+
padding: 1rem;
|
|
3596
|
+
border: 1px solid hsl(var(--border));
|
|
3597
|
+
border-radius: 8px;
|
|
3598
|
+
background: hsl(var(--card));
|
|
3599
|
+
}
|
|
3600
|
+
|
|
3601
|
+
.context-tab-content .context-section-title {
|
|
3602
|
+
font-size: 0.9rem;
|
|
3603
|
+
font-weight: 600;
|
|
3604
|
+
color: hsl(var(--foreground));
|
|
3605
|
+
margin-bottom: 0.75rem;
|
|
3606
|
+
display: flex;
|
|
3607
|
+
align-items: center;
|
|
3608
|
+
gap: 0.375rem;
|
|
3609
|
+
}
|
|
3610
|
+
|
|
3611
|
+
.context-tab-content .context-description {
|
|
3612
|
+
font-size: 0.875rem;
|
|
3613
|
+
color: hsl(var(--muted-foreground));
|
|
3614
|
+
line-height: 1.6;
|
|
3615
|
+
margin: 0;
|
|
3616
|
+
}
|
|
3617
|
+
|
|
3618
|
+
.context-tab-content .constraints-list {
|
|
3619
|
+
margin: 0;
|
|
3620
|
+
padding-left: 1.25rem;
|
|
3621
|
+
font-size: 0.875rem;
|
|
3622
|
+
color: hsl(var(--muted-foreground));
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3625
|
+
.context-tab-content .constraints-list li {
|
|
3626
|
+
margin-bottom: 0.375rem;
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
.context-tab-content .path-tags {
|
|
3630
|
+
display: flex;
|
|
3631
|
+
flex-wrap: wrap;
|
|
3632
|
+
gap: 0.5rem;
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3635
|
+
.context-tab-content .path-tag {
|
|
3636
|
+
font-family: monospace;
|
|
3637
|
+
font-size: 0.75rem;
|
|
3638
|
+
padding: 0.25rem 0.5rem;
|
|
3639
|
+
background: hsl(var(--muted));
|
|
3640
|
+
border-radius: 4px;
|
|
3641
|
+
color: hsl(var(--foreground));
|
|
3642
|
+
}
|
|
3643
|
+
|
|
3644
|
+
.context-tab-content .session-id-code {
|
|
3645
|
+
font-family: monospace;
|
|
3646
|
+
font-size: 0.8rem;
|
|
3647
|
+
padding: 0.5rem 0.75rem;
|
|
3648
|
+
background: hsl(var(--muted));
|
|
3649
|
+
border-radius: 4px;
|
|
3650
|
+
display: inline-block;
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3653
|
+
/* Context tab collapsible sections */
|
|
3654
|
+
.context-tab-content .context-section.collapsible-section {
|
|
3655
|
+
padding: 0;
|
|
3656
|
+
overflow: hidden;
|
|
3657
|
+
}
|
|
3658
|
+
|
|
3659
|
+
.context-tab-content .context-section.collapsible-section .collapsible-header {
|
|
3660
|
+
padding: 0.75rem 1rem;
|
|
3661
|
+
background: hsl(var(--card));
|
|
3662
|
+
}
|
|
3663
|
+
|
|
3664
|
+
.context-tab-content .context-section.collapsible-section .collapsible-header:hover {
|
|
3665
|
+
background: hsl(var(--muted) / 0.5);
|
|
3666
|
+
}
|
|
3667
|
+
|
|
3668
|
+
.context-tab-content .context-section.collapsible-section .collapsible-content {
|
|
3669
|
+
padding: 1rem;
|
|
3670
|
+
background: hsl(var(--muted) / 0.3);
|
|
3671
|
+
border-top: 1px solid hsl(var(--border) / 0.5);
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3674
|
+
.context-tab-content .files-list {
|
|
3675
|
+
margin: 0;
|
|
3676
|
+
padding: 0;
|
|
3677
|
+
list-style: none;
|
|
3678
|
+
}
|
|
3679
|
+
|
|
3680
|
+
.context-tab-content .file-item {
|
|
3681
|
+
display: flex;
|
|
3682
|
+
align-items: center;
|
|
3683
|
+
gap: 0.5rem;
|
|
3684
|
+
padding: 0.375rem 0;
|
|
3685
|
+
border-bottom: 1px solid hsl(var(--border) / 0.3);
|
|
3686
|
+
font-size: 0.8rem;
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
.context-tab-content .file-item:last-child {
|
|
3690
|
+
border-bottom: none;
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
.context-tab-content .file-icon {
|
|
3694
|
+
flex-shrink: 0;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.context-tab-content .file-item code {
|
|
3698
|
+
font-family: monospace;
|
|
3699
|
+
font-size: 0.75rem;
|
|
3700
|
+
background: hsl(var(--muted));
|
|
3701
|
+
padding: 0.125rem 0.375rem;
|
|
3702
|
+
border-radius: 3px;
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
.context-tab-content .file-reason {
|
|
3706
|
+
color: hsl(var(--muted-foreground));
|
|
3707
|
+
font-size: 0.75rem;
|
|
3708
|
+
margin-left: auto;
|
|
3709
|
+
}
|
|
3710
|
+
|
|
3711
|
+
.context-tab-content .deps-list {
|
|
3712
|
+
margin: 0;
|
|
3713
|
+
padding-left: 1.25rem;
|
|
3714
|
+
font-size: 0.8rem;
|
|
3715
|
+
color: hsl(var(--foreground));
|
|
3716
|
+
}
|
|
3717
|
+
|
|
3718
|
+
.context-tab-content .deps-list li {
|
|
3719
|
+
margin-bottom: 0.25rem;
|
|
3720
|
+
}
|
|
3721
|
+
|
|
3722
|
+
.context-tab-content .risks-list {
|
|
3723
|
+
margin: 0;
|
|
3724
|
+
padding-left: 1.25rem;
|
|
3725
|
+
}
|
|
3726
|
+
|
|
3727
|
+
.context-tab-content .risk-item {
|
|
3728
|
+
font-size: 0.875rem;
|
|
3729
|
+
color: hsl(var(--warning));
|
|
3730
|
+
margin-bottom: 0.375rem;
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3733
|
+
.context-tab-content .json-content {
|
|
3734
|
+
font-family: monospace;
|
|
3735
|
+
font-size: 0.75rem;
|
|
3736
|
+
line-height: 1.5;
|
|
3737
|
+
margin: 0;
|
|
3738
|
+
white-space: pre-wrap;
|
|
3739
|
+
word-break: break-all;
|
|
3740
|
+
max-height: 400px;
|
|
3741
|
+
overflow-y: auto;
|
|
3742
|
+
background: hsl(var(--background));
|
|
3743
|
+
padding: 0.75rem;
|
|
3744
|
+
border-radius: 4px;
|
|
3745
|
+
}
|
|
3746
|
+
|
|
3443
3747
|
/* ========== Association Section Styles ========== */
|
|
3444
3748
|
.association-section {
|
|
3445
3749
|
margin-bottom: 1.5rem;
|
|
@@ -3621,3 +3925,328 @@
|
|
|
3621
3925
|
}
|
|
3622
3926
|
}
|
|
3623
3927
|
|
|
3928
|
+
/* ===================================
|
|
3929
|
+
Multi-CLI Plan Summary Section
|
|
3930
|
+
=================================== */
|
|
3931
|
+
|
|
3932
|
+
/* Plan Summary Section - card-like styling */
|
|
3933
|
+
.plan-summary-section {
|
|
3934
|
+
background: hsl(var(--card));
|
|
3935
|
+
border: 1px solid hsl(var(--border));
|
|
3936
|
+
border-radius: 0.5rem;
|
|
3937
|
+
padding: 1rem 1.25rem;
|
|
3938
|
+
margin-bottom: 1.25rem;
|
|
3939
|
+
}
|
|
3940
|
+
|
|
3941
|
+
.plan-summary-section:hover {
|
|
3942
|
+
border-color: hsl(var(--purple, 280 60% 50%) / 0.3);
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3945
|
+
/* Plan text styles */
|
|
3946
|
+
.plan-summary-text,
|
|
3947
|
+
.plan-solution-text,
|
|
3948
|
+
.plan-approach-text {
|
|
3949
|
+
font-size: 0.875rem;
|
|
3950
|
+
line-height: 1.6;
|
|
3951
|
+
color: hsl(var(--foreground));
|
|
3952
|
+
margin: 0 0 0.75rem 0;
|
|
3953
|
+
}
|
|
3954
|
+
|
|
3955
|
+
.plan-summary-text:last-child,
|
|
3956
|
+
.plan-solution-text:last-child,
|
|
3957
|
+
.plan-approach-text:last-child {
|
|
3958
|
+
margin-bottom: 0;
|
|
3959
|
+
}
|
|
3960
|
+
|
|
3961
|
+
.plan-summary-text strong,
|
|
3962
|
+
.plan-solution-text strong,
|
|
3963
|
+
.plan-approach-text strong {
|
|
3964
|
+
color: hsl(var(--muted-foreground));
|
|
3965
|
+
font-weight: 600;
|
|
3966
|
+
margin-right: 0.5rem;
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3969
|
+
/* Plan meta badges container */
|
|
3970
|
+
.plan-meta-badges {
|
|
3971
|
+
display: flex;
|
|
3972
|
+
flex-wrap: wrap;
|
|
3973
|
+
gap: 0.5rem;
|
|
3974
|
+
margin-top: 0.75rem;
|
|
3975
|
+
padding-top: 0.75rem;
|
|
3976
|
+
border-top: 1px solid hsl(var(--border) / 0.5);
|
|
3977
|
+
}
|
|
3978
|
+
|
|
3979
|
+
/* Feasibility badge */
|
|
3980
|
+
.feasibility-badge {
|
|
3981
|
+
display: inline-flex;
|
|
3982
|
+
align-items: center;
|
|
3983
|
+
padding: 0.25rem 0.625rem;
|
|
3984
|
+
background: hsl(var(--primary) / 0.1);
|
|
3985
|
+
color: hsl(var(--primary));
|
|
3986
|
+
border-radius: 0.25rem;
|
|
3987
|
+
font-size: 0.75rem;
|
|
3988
|
+
font-weight: 500;
|
|
3989
|
+
}
|
|
3990
|
+
|
|
3991
|
+
/* Effort badge variants */
|
|
3992
|
+
.effort-badge {
|
|
3993
|
+
display: inline-flex;
|
|
3994
|
+
align-items: center;
|
|
3995
|
+
padding: 0.25rem 0.625rem;
|
|
3996
|
+
border-radius: 0.25rem;
|
|
3997
|
+
font-size: 0.75rem;
|
|
3998
|
+
font-weight: 500;
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
.effort-badge.low {
|
|
4002
|
+
background: hsl(var(--success-light, 142 70% 95%));
|
|
4003
|
+
color: hsl(var(--success, 142 70% 45%));
|
|
4004
|
+
}
|
|
4005
|
+
|
|
4006
|
+
.effort-badge.medium {
|
|
4007
|
+
background: hsl(var(--warning-light, 45 90% 95%));
|
|
4008
|
+
color: hsl(var(--warning, 45 90% 40%));
|
|
4009
|
+
}
|
|
4010
|
+
|
|
4011
|
+
.effort-badge.high {
|
|
4012
|
+
background: hsl(var(--destructive) / 0.1);
|
|
4013
|
+
color: hsl(var(--destructive));
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
/* Complexity badge */
|
|
4017
|
+
.complexity-badge {
|
|
4018
|
+
display: inline-flex;
|
|
4019
|
+
align-items: center;
|
|
4020
|
+
padding: 0.25rem 0.625rem;
|
|
4021
|
+
background: hsl(var(--muted));
|
|
4022
|
+
color: hsl(var(--foreground));
|
|
4023
|
+
border-radius: 0.25rem;
|
|
4024
|
+
font-size: 0.75rem;
|
|
4025
|
+
font-weight: 500;
|
|
4026
|
+
}
|
|
4027
|
+
|
|
4028
|
+
/* Time badge */
|
|
4029
|
+
.time-badge {
|
|
4030
|
+
display: inline-flex;
|
|
4031
|
+
align-items: center;
|
|
4032
|
+
padding: 0.25rem 0.625rem;
|
|
4033
|
+
background: hsl(var(--info-light, 220 80% 95%));
|
|
4034
|
+
color: hsl(var(--info, 220 80% 55%));
|
|
4035
|
+
border-radius: 0.25rem;
|
|
4036
|
+
font-size: 0.75rem;
|
|
4037
|
+
font-weight: 500;
|
|
4038
|
+
}
|
|
4039
|
+
|
|
4040
|
+
/* ===================================
|
|
4041
|
+
Multi-CLI Task Item Additional Badges
|
|
4042
|
+
=================================== */
|
|
4043
|
+
|
|
4044
|
+
/* Files meta badge */
|
|
4045
|
+
.meta-badge.files {
|
|
4046
|
+
background: hsl(var(--purple, 280 60% 50%) / 0.1);
|
|
4047
|
+
color: hsl(var(--purple, 280 60% 50%));
|
|
4048
|
+
}
|
|
4049
|
+
|
|
4050
|
+
/* Depends meta badge */
|
|
4051
|
+
.meta-badge.depends {
|
|
4052
|
+
background: hsl(var(--info-light, 220 80% 95%));
|
|
4053
|
+
color: hsl(var(--info, 220 80% 55%));
|
|
4054
|
+
}
|
|
4055
|
+
|
|
4056
|
+
/* Multi-CLI Task Item Full - enhanced padding */
|
|
4057
|
+
.detail-task-item-full.multi-cli-task-item {
|
|
4058
|
+
background: hsl(var(--card));
|
|
4059
|
+
border: 1px solid hsl(var(--border));
|
|
4060
|
+
border-radius: 0.5rem;
|
|
4061
|
+
padding: 0.875rem 1rem;
|
|
4062
|
+
transition: all 0.2s ease;
|
|
4063
|
+
border-left: 3px solid hsl(var(--primary) / 0.5);
|
|
4064
|
+
}
|
|
4065
|
+
|
|
4066
|
+
.detail-task-item-full.multi-cli-task-item:hover {
|
|
4067
|
+
border-color: hsl(var(--primary) / 0.4);
|
|
4068
|
+
border-left-color: hsl(var(--primary));
|
|
4069
|
+
box-shadow: 0 2px 8px hsl(var(--primary) / 0.1);
|
|
4070
|
+
background: hsl(var(--hover));
|
|
4071
|
+
}
|
|
4072
|
+
|
|
4073
|
+
/* Task ID badge enhancement */
|
|
4074
|
+
.task-id-badge {
|
|
4075
|
+
display: inline-flex;
|
|
4076
|
+
align-items: center;
|
|
4077
|
+
justify-content: center;
|
|
4078
|
+
min-width: 2.5rem;
|
|
4079
|
+
padding: 0.25rem 0.5rem;
|
|
4080
|
+
background: hsl(var(--purple, 280 60% 50%));
|
|
4081
|
+
color: white;
|
|
4082
|
+
border-radius: 0.25rem;
|
|
4083
|
+
font-size: 0.75rem;
|
|
4084
|
+
font-weight: 600;
|
|
4085
|
+
flex-shrink: 0;
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4088
|
+
/* Tasks list container */
|
|
4089
|
+
.tasks-list {
|
|
4090
|
+
display: flex;
|
|
4091
|
+
flex-direction: column;
|
|
4092
|
+
gap: 0.625rem;
|
|
4093
|
+
}
|
|
4094
|
+
|
|
4095
|
+
/* Plan section styling (for Plan tab) */
|
|
4096
|
+
.plan-section {
|
|
4097
|
+
background: hsl(var(--muted) / 0.3);
|
|
4098
|
+
border: 1px solid hsl(var(--border));
|
|
4099
|
+
border-radius: 0.5rem;
|
|
4100
|
+
padding: 1rem;
|
|
4101
|
+
margin-bottom: 1rem;
|
|
4102
|
+
}
|
|
4103
|
+
|
|
4104
|
+
.plan-section:last-child {
|
|
4105
|
+
margin-bottom: 0;
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
.plan-section-title {
|
|
4109
|
+
font-size: 0.9rem;
|
|
4110
|
+
font-weight: 600;
|
|
4111
|
+
color: hsl(var(--foreground));
|
|
4112
|
+
margin-bottom: 0.75rem;
|
|
4113
|
+
display: flex;
|
|
4114
|
+
align-items: center;
|
|
4115
|
+
gap: 0.5rem;
|
|
4116
|
+
}
|
|
4117
|
+
|
|
4118
|
+
.plan-tab-content {
|
|
4119
|
+
display: flex;
|
|
4120
|
+
flex-direction: column;
|
|
4121
|
+
gap: 0;
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.tasks-tab-content {
|
|
4125
|
+
display: flex;
|
|
4126
|
+
flex-direction: column;
|
|
4127
|
+
gap: 1rem;
|
|
4128
|
+
}
|
|
4129
|
+
|
|
4130
|
+
/* ===================================
|
|
4131
|
+
Plan Summary Meta Badges
|
|
4132
|
+
=================================== */
|
|
4133
|
+
|
|
4134
|
+
/* Base meta badge style (plan summary) */
|
|
4135
|
+
.plan-meta-badges .meta-badge {
|
|
4136
|
+
display: inline-block;
|
|
4137
|
+
padding: 0.25rem 0.625rem;
|
|
4138
|
+
border-radius: 0.375rem;
|
|
4139
|
+
font-size: 0.75rem;
|
|
4140
|
+
font-weight: 500;
|
|
4141
|
+
white-space: nowrap;
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4144
|
+
/* Feasibility badge */
|
|
4145
|
+
.meta-badge.feasibility {
|
|
4146
|
+
background: hsl(var(--success) / 0.15);
|
|
4147
|
+
color: hsl(var(--success));
|
|
4148
|
+
border: 1px solid hsl(var(--success) / 0.3);
|
|
4149
|
+
}
|
|
4150
|
+
|
|
4151
|
+
/* Effort badges */
|
|
4152
|
+
.meta-badge.effort {
|
|
4153
|
+
background: hsl(var(--muted));
|
|
4154
|
+
color: hsl(var(--foreground));
|
|
4155
|
+
}
|
|
4156
|
+
|
|
4157
|
+
.meta-badge.effort.low {
|
|
4158
|
+
background: hsl(142 70% 50% / 0.15);
|
|
4159
|
+
color: hsl(142 70% 35%);
|
|
4160
|
+
}
|
|
4161
|
+
|
|
4162
|
+
.meta-badge.effort.medium {
|
|
4163
|
+
background: hsl(30 90% 50% / 0.15);
|
|
4164
|
+
color: hsl(30 90% 40%);
|
|
4165
|
+
}
|
|
4166
|
+
|
|
4167
|
+
.meta-badge.effort.high {
|
|
4168
|
+
background: hsl(0 70% 50% / 0.15);
|
|
4169
|
+
color: hsl(0 70% 45%);
|
|
4170
|
+
}
|
|
4171
|
+
|
|
4172
|
+
/* Risk badges */
|
|
4173
|
+
.meta-badge.risk {
|
|
4174
|
+
background: hsl(var(--muted));
|
|
4175
|
+
color: hsl(var(--foreground));
|
|
4176
|
+
}
|
|
4177
|
+
|
|
4178
|
+
.meta-badge.risk.low {
|
|
4179
|
+
background: hsl(142 70% 50% / 0.15);
|
|
4180
|
+
color: hsl(142 70% 35%);
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
.meta-badge.risk.medium {
|
|
4184
|
+
background: hsl(30 90% 50% / 0.15);
|
|
4185
|
+
color: hsl(30 90% 40%);
|
|
4186
|
+
}
|
|
4187
|
+
|
|
4188
|
+
.meta-badge.risk.high {
|
|
4189
|
+
background: hsl(0 70% 50% / 0.15);
|
|
4190
|
+
color: hsl(0 70% 45%);
|
|
4191
|
+
}
|
|
4192
|
+
|
|
4193
|
+
/* Severity badges */
|
|
4194
|
+
.meta-badge.severity {
|
|
4195
|
+
background: hsl(var(--muted));
|
|
4196
|
+
color: hsl(var(--foreground));
|
|
4197
|
+
}
|
|
4198
|
+
|
|
4199
|
+
.meta-badge.severity.low {
|
|
4200
|
+
background: hsl(142 70% 50% / 0.15);
|
|
4201
|
+
color: hsl(142 70% 35%);
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
.meta-badge.severity.medium {
|
|
4205
|
+
background: hsl(30 90% 50% / 0.15);
|
|
4206
|
+
color: hsl(30 90% 40%);
|
|
4207
|
+
}
|
|
4208
|
+
|
|
4209
|
+
.meta-badge.severity.high,
|
|
4210
|
+
.meta-badge.severity.critical {
|
|
4211
|
+
background: hsl(0 70% 50% / 0.15);
|
|
4212
|
+
color: hsl(0 70% 45%);
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
/* Complexity badge */
|
|
4216
|
+
.meta-badge.complexity {
|
|
4217
|
+
background: hsl(var(--muted));
|
|
4218
|
+
color: hsl(var(--muted-foreground));
|
|
4219
|
+
}
|
|
4220
|
+
|
|
4221
|
+
/* Time badge */
|
|
4222
|
+
.meta-badge.time {
|
|
4223
|
+
background: hsl(220 80% 50% / 0.15);
|
|
4224
|
+
color: hsl(220 80% 45%);
|
|
4225
|
+
}
|
|
4226
|
+
|
|
4227
|
+
/* Task item action badge */
|
|
4228
|
+
.meta-badge.action {
|
|
4229
|
+
background: hsl(var(--primary) / 0.15);
|
|
4230
|
+
color: hsl(var(--primary));
|
|
4231
|
+
}
|
|
4232
|
+
|
|
4233
|
+
/* Task item scope badge */
|
|
4234
|
+
.meta-badge.scope {
|
|
4235
|
+
background: hsl(var(--muted));
|
|
4236
|
+
color: hsl(var(--muted-foreground));
|
|
4237
|
+
font-family: var(--font-mono);
|
|
4238
|
+
font-size: 0.7rem;
|
|
4239
|
+
}
|
|
4240
|
+
|
|
4241
|
+
/* Task item impl steps badge */
|
|
4242
|
+
.meta-badge.impl {
|
|
4243
|
+
background: hsl(280 60% 50% / 0.1);
|
|
4244
|
+
color: hsl(280 60% 50%);
|
|
4245
|
+
}
|
|
4246
|
+
|
|
4247
|
+
/* Task item acceptance criteria badge */
|
|
4248
|
+
.meta-badge.accept {
|
|
4249
|
+
background: hsl(var(--success) / 0.1);
|
|
4250
|
+
color: hsl(var(--success));
|
|
4251
|
+
}
|
|
4252
|
+
|