fix(HAI-029): show full description in task show header

This commit is contained in:
Dustin Byrne
2026-03-25 22:19:13 -04:00
parent 4bb1651e8d
commit b863d098b9

View File

@@ -106,7 +106,7 @@ export async function runTaskShow(id: string) {
const task = await store.getTask(id);
console.log();
console.log(` ${task.id}: ${task.title || task.description.slice(0, 60)}`);
console.log(` ${task.id}: ${task.title || task.description}`);
console.log(` Column: ${COLUMN_LABELS[task.column]}${task.size ? ` · Size: ${task.size}` : ""}${task.reviewLevel !== undefined ? ` · Review: ${task.reviewLevel}` : ""}`);
if (task.dependencies.length) {
console.log(` Dependencies: ${task.dependencies.join(", ")}`);