aizuchi 0.5.0 → 0.7.2

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.
@@ -4,8 +4,8 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>AIzuchi — AI進捗管理ボード</title>
7
- <script type="module" crossorigin src="/assets/index-C3mZwbO4.js"></script>
8
- <link rel="stylesheet" crossorigin href="/assets/index-QsPhBKSP.css">
7
+ <script type="module" crossorigin src="/assets/index-U2se0dzu.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-CiZ-pdUZ.css">
9
9
  </head>
10
10
  <body>
11
11
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aizuchi",
3
- "version": "0.5.0",
3
+ "version": "0.7.2",
4
4
  "description": "AI進捗管理カンバンダッシュボード — CLI型AIエージェントのタスク進捗をローカルのカンバンボードで管理する",
5
5
  "keywords": [
6
6
  "kanban",
@@ -44,7 +44,9 @@
44
44
  "test:watch": "vitest",
45
45
  "typecheck": "npm run typecheck:server && npm run typecheck:web",
46
46
  "typecheck:server": "tsc --noEmit",
47
- "typecheck:web": "tsc -p web/tsconfig.json --noEmit"
47
+ "typecheck:web": "tsc -p web/tsconfig.json --noEmit",
48
+ "lint": "biome check .",
49
+ "format": "biome format --write ."
48
50
  },
49
51
  "dependencies": {
50
52
  "@hono/node-server": "^1.13.0",
@@ -69,6 +71,7 @@
69
71
  "tsx": "^4.19.0",
70
72
  "typescript": "^5.5.0",
71
73
  "vite": "^6.0.0",
72
- "vitest": "^3.0.0"
74
+ "vitest": "^3.0.0",
75
+ "@biomejs/biome": "^1.9.0"
73
76
  }
74
77
  }
@@ -19,8 +19,13 @@
19
19
  npx aizuchi task move TASK-013 in_progress # status 変更
20
20
  npx aizuchi task done TASK-013 # 完了 (move のショートカット)
21
21
  npx aizuchi task block TASK-013 --type decision --reason "RYU のレビュー待ち" # 保留
22
+ npx aizuchi task revise TASK-013 --reason "受け入れ条件を満たしていない" # 差し戻し (done/in_progress/pending → todo)
22
23
  npx aizuchi task log TASK-013 "既存 validator を調査" --member {{MEMBER_ID}} # 作業ログ追記
23
24
  npx aizuchi task comment TASK-013 "@member1 確認お願いします" --member {{MEMBER_ID}} # やりとり追記
25
+
26
+ npx aizuchi task list [--status todo] [--assignee {{MEMBER_ID}}] # 一覧 (絞り込み可・読取専用)
27
+ npx aizuchi task show TASK-013 # 詳細 (frontmatter要約 + 本文。無ければ archive も検索)
28
+ npx aizuchi task next # 次に着手できるタスク (依存解決済み・クリティカルパス優先。読取専用)
24
29
  ```
25
30
  `--json` で機械可読出力。終了コード: 0 成功 / 1 入力エラー / 2 タスク不在 / 3 競合。
26
31
  `.kanban/config.json` の `aiTaskCreation` が `proposal` の場合、CLI の `task add` も `--status proposed` を付けて起票し、承認前に作業を進めないでください (規約 6 参照)。`--status` を省くと `todo` で起票されます。