fix(KB-290): explicitly set column to triage in task_create tool

- Add changeset for patch release
- Update store.ts with column handling improvements
- Explicitly set column: 'triage' in executor task_create tool
This commit is contained in:
gsxdsm
2026-03-31 09:26:56 -07:00
parent c6b5757b1d
commit 349fc3b107
2 changed files with 11 additions and 0 deletions

View File

@@ -675,6 +675,7 @@ export class TaskExecutor {
const task = await store.createTask({
description: params.description,
dependencies: params.dependencies,
column: "triage",
});
const deps = task.dependencies.length ? ` (depends on: ${task.dependencies.join(", ")})` : "";
return {