agent-tasks 1.9.12 → 1.9.13

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.9.11",
5
+ "version": "1.9.13",
6
6
  "description": "Pipeline task board — kanban, stages, artifacts, dependencies",
7
7
  "ui": "./dist/ui/app.js",
8
8
  "css": "./dist/ui/styles.css",
@@ -59,9 +59,9 @@
59
59
  --radius-lg: 16px;
60
60
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
61
61
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
62
- --column-min: 240px;
62
+ --column-min: 180px;
63
63
  --column-max: 320px;
64
- --panel-width: 560px;
64
+ --panel-width: 440px;
65
65
 
66
66
  --shadow-0: none;
67
67
  --shadow-1: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
@@ -659,6 +659,9 @@ header {
659
659
  text-transform: uppercase;
660
660
  letter-spacing: 0.5px;
661
661
  color: var(--text-muted);
662
+ overflow: hidden;
663
+ text-overflow: ellipsis;
664
+ white-space: nowrap;
662
665
  }
663
666
 
664
667
  .column-count {
@@ -974,6 +977,7 @@ header {
974
977
  padding: 10px 12px;
975
978
  cursor: pointer;
976
979
  position: relative;
980
+ min-width: 120px;
977
981
  box-shadow: var(--shadow-1);
978
982
  transition:
979
983
  border-color var(--transition-fast),
@@ -1034,6 +1038,10 @@ header {
1034
1038
  line-height: 1.35;
1035
1039
  word-break: break-word;
1036
1040
  color: var(--text);
1041
+ display: -webkit-box;
1042
+ -webkit-line-clamp: 3;
1043
+ -webkit-box-orient: vertical;
1044
+ overflow: hidden;
1037
1045
  }
1038
1046
 
1039
1047
  .task-card-title[contenteditable='true'] {
@@ -1512,7 +1520,7 @@ header {
1512
1520
  }
1513
1521
 
1514
1522
  .board-wrapper.panel-open .side-panel.panel-wide {
1515
- --panel-width: min(720px, 55vw);
1523
+ --panel-width: min(560px, 45vw);
1516
1524
  }
1517
1525
 
1518
1526
  /* ---- Panel resize handle ---- */
@@ -22,7 +22,7 @@ function formatDate(iso) {
22
22
  if (!iso) return '\u2014';
23
23
  try {
24
24
  const d = new Date(iso + 'Z');
25
- return d.toLocaleString(undefined, {
25
+ return d.toLocaleString('en-US', {
26
26
  month: 'short',
27
27
  day: 'numeric',
28
28
  hour: '2-digit',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-tasks",
3
- "version": "1.9.12",
3
+ "version": "1.9.13",
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",