From 07aafec6980f16ba1c26d24e2a6f3216e387e727 Mon Sep 17 00:00:00 2001 From: nullref Date: Sun, 14 Jun 2026 07:36:05 +0200 Subject: [PATCH] fix(cli): description field in toTaskSchema was set to title instead of description Copy-paste bug: description was assigned item.title instead of item.description, causing task descriptions to be lost and replaced with the task title. --- packages/cli/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index fb169d6..e66d441 100644 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -563,7 +563,7 @@ function toTaskSchema(item: (typeof tasks)[number]) { type: "logicsrc.task", version: "0.1", title: item.title, - description: item.title, + description: item.description, board: item.board, creator_did: "anthony.coinpay", status: item.status,