aitasks 1.3.6 → 1.4.0

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1890,7 +1890,7 @@ var require_commander = __commonJS((exports) => {
1890
1890
  var require_package = __commonJS((exports, module) => {
1891
1891
  module.exports = {
1892
1892
  name: "aitasks",
1893
- version: "1.3.6",
1893
+ version: "1.4.0",
1894
1894
  description: "CLI task management tool built for AI agents",
1895
1895
  type: "module",
1896
1896
  bin: {
@@ -42503,6 +42503,7 @@ async function startTreeBoard(getTasks) {
42503
42503
  getTasks
42504
42504
  }, undefined, false, undefined, this));
42505
42505
  await waitUntilExit();
42506
+ process.stdout.write("\x1B[2J\x1B[H");
42506
42507
  }
42507
42508
  var STATUS_LABELS = {
42508
42509
  backlog: "BACKLOG",
@@ -42687,6 +42688,7 @@ var boardCommand = new Command("board").description("Show a kanban-style board v
42687
42688
  console.log(renderBoard(listTasks()));
42688
42689
  return;
42689
42690
  }
42691
+ process.stdout.write("\x1B]0;AITasks Board\x07");
42690
42692
  await startTreeBoard(() => listTasks());
42691
42693
  });
42692
42694
 
@@ -43372,4 +43374,4 @@ program2.parseAsync(process.argv).catch((err) => {
43372
43374
  process.exit(1);
43373
43375
  });
43374
43376
 
43375
- //# debugId=5791C0490824449C64756E2164756E21
43377
+ //# debugId=517F4D02BD4703B064756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aitasks",
3
- "version": "1.3.6",
3
+ "version": "1.4.0",
4
4
  "description": "CLI task management tool built for AI agents",
5
5
  "type": "module",
6
6
  "bin": {