agent-tasks 1.10.8 → 1.10.10

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.
@@ -2,7 +2,7 @@
2
2
  "id": "agent-tasks",
3
3
  "name": "Tasks",
4
4
  "icon": "task_alt",
5
- "version": "1.10.6",
5
+ "version": "1.10.10",
6
6
  "description": "Pipeline task board — kanban, stages, artifacts, dependencies",
7
7
  "ui": "./dist/ui/app.js",
8
8
  "css": "./dist/ui/styles.css",
@@ -2906,3 +2906,166 @@ header {
2906
2906
  overflow-x: auto;
2907
2907
  min-width: 0;
2908
2908
  }
2909
+
2910
+ /* --------------------------------------------------------------------------
2911
+ Mobile Responsive (768px)
2912
+ -------------------------------------------------------------------------- */
2913
+
2914
+ @media (max-width: 768px) {
2915
+ header {
2916
+ flex-wrap: wrap;
2917
+ padding: 6px 12px;
2918
+ gap: 8px;
2919
+ }
2920
+ .header-left {
2921
+ width: 100%;
2922
+ justify-content: space-between;
2923
+ }
2924
+ .header-left h1 {
2925
+ font-size: 14px;
2926
+ }
2927
+ .header-right {
2928
+ width: auto;
2929
+ gap: 6px;
2930
+ }
2931
+ .stats {
2932
+ display: none;
2933
+ }
2934
+
2935
+ /* -- Filter bar: hide orphaned icon, compact layout -- */
2936
+ .filter-bar {
2937
+ padding: 6px 10px;
2938
+ }
2939
+ .filter-icon {
2940
+ display: none;
2941
+ }
2942
+ .filter-group {
2943
+ flex-wrap: wrap;
2944
+ gap: 6px;
2945
+ }
2946
+ .filter-input {
2947
+ flex: 1 1 100%;
2948
+ max-width: none;
2949
+ }
2950
+ .filter-select {
2951
+ flex: 1 1 calc(50% - 3px);
2952
+ min-width: 0;
2953
+ }
2954
+
2955
+ /* -- Kanban: compact empty columns -- */
2956
+ .column-empty {
2957
+ padding: 12px 8px;
2958
+ }
2959
+ .column-empty .material-symbols-outlined {
2960
+ font-size: 22px;
2961
+ }
2962
+ .column-empty .empty-text {
2963
+ font-size: 11px;
2964
+ }
2965
+ .column-empty .empty-cta {
2966
+ font-size: 11px;
2967
+ padding: 3px 8px;
2968
+ }
2969
+ .column-add-btn {
2970
+ padding: 6px;
2971
+ font-size: 12px;
2972
+ }
2973
+
2974
+ /* -- Icon buttons: touch-friendly -- */
2975
+ .icon-btn {
2976
+ min-width: 36px;
2977
+ min-height: 36px;
2978
+ display: inline-flex;
2979
+ align-items: center;
2980
+ justify-content: center;
2981
+ }
2982
+
2983
+ .kanban-board {
2984
+ flex-direction: column;
2985
+ overflow-y: auto;
2986
+ overflow-x: hidden;
2987
+ padding: 8px;
2988
+ gap: 8px;
2989
+ }
2990
+ .kanban-column {
2991
+ min-width: 0;
2992
+ max-width: none;
2993
+ flex: 0 0 auto;
2994
+ max-height: none;
2995
+ width: 100%;
2996
+ }
2997
+ .kanban-column.collapsed {
2998
+ min-width: 0;
2999
+ max-width: none;
3000
+ writing-mode: horizontal-tb;
3001
+ }
3002
+ .kanban-column.collapsed .column-header {
3003
+ writing-mode: horizontal-tb;
3004
+ flex-direction: row;
3005
+ padding: 10px 12px;
3006
+ }
3007
+ .column-body {
3008
+ max-height: none;
3009
+ }
3010
+ .board-wrapper.panel-open .side-panel {
3011
+ position: fixed;
3012
+ inset: 0;
3013
+ width: 100%;
3014
+ min-width: 100%;
3015
+ z-index: 200;
3016
+ border-left: none;
3017
+ box-shadow: none;
3018
+ }
3019
+ .board-wrapper.panel-open .side-panel.panel-wide {
3020
+ width: 100%;
3021
+ }
3022
+ .panel-resize-handle {
3023
+ display: none;
3024
+ }
3025
+ .task-card {
3026
+ padding: 8px 10px;
3027
+ min-width: 0;
3028
+ width: 100%;
3029
+ }
3030
+ .task-card:hover {
3031
+ transform: none;
3032
+ }
3033
+ .modal {
3034
+ width: calc(100% - 16px);
3035
+ max-width: 100%;
3036
+ margin: 8px;
3037
+ max-height: calc(100vh - 16px);
3038
+ }
3039
+ .confirm-dialog {
3040
+ min-width: 0;
3041
+ max-width: calc(100% - 16px);
3042
+ margin: 8px;
3043
+ }
3044
+ .toast-container {
3045
+ left: 8px;
3046
+ right: 8px;
3047
+ top: 8px;
3048
+ }
3049
+ .toast {
3050
+ max-width: none;
3051
+ }
3052
+ .panel-body {
3053
+ padding: 12px;
3054
+ }
3055
+ .panel-grid {
3056
+ grid-template-columns: 80px 1fr;
3057
+ gap: 4px 8px;
3058
+ }
3059
+ .board-empty .empty-steps {
3060
+ flex-direction: column;
3061
+ align-items: center;
3062
+ gap: 12px;
3063
+ }
3064
+ .diff-viewer {
3065
+ flex-direction: column;
3066
+ }
3067
+ .diff-side {
3068
+ flex: none;
3069
+ width: 100%;
3070
+ }
3071
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-tasks",
3
- "version": "1.10.8",
3
+ "version": "1.10.10",
4
4
  "description": "Pipeline-driven task management for AI coding agents — stages, dependencies, artifacts, and multi-agent claiming",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",