@make-u-free/migi 0.5.19 → 0.5.20

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.
package/bin/migi.js CHANGED
@@ -79,6 +79,8 @@ const agent = new MigiAgent({ context, promptFn, apiKey, model, name: agentName,
79
79
  `2. search_content で「- \\[ \\]」を .company/ ディレクトリ全体から検索して、部署ごとの未完了タスクも集約する\n` +
80
80
  `3. .migi/memory/next-actions.md があれば読む\n` +
81
81
  `4. todos/ と .company/ の両方を合わせたダッシュボード(未完了の件数サマリー、ソース別)をコンパクトに出して、一言で「今日はこれから」と提案する\n` +
82
+ ` - 未完了タスクは 1. 2. 3. と通し番号を付けて表示する(ファイルには書かない、表示だけ)\n` +
83
+ ` - ユーザーが「N番完了」と言ったら、その番号のタスクを特定してファイルの [ ] を [x] に書き換える\n` +
82
84
  `(詳細な説明はいらない。テンポよく)`
83
85
  )
84
86
  } catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@make-u-free/migi",
3
- "version": "0.5.19",
3
+ "version": "0.5.20",
4
4
  "description": "Your AI right-hand agent. Works anywhere, with any LLM API.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -29,13 +29,19 @@
29
29
 
30
30
  ## ダッシュボードを求められたとき
31
31
 
32
- 今日のTODOファイルを読んで、以下の形式で表示する:
32
+ 今日のTODOファイルと .company/ 以下の未完了タスクをまとめて、以下の形式で表示する:
33
33
 
34
34
  ```
35
35
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
36
36
  ダッシュボード - YYYY-MM-DD
37
37
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
38
38
  TODO: X件未完了 / Y件完了
39
- [未完了タスクの一覧]
39
+ 1. タスクA
40
+ 2. タスクB
41
+ 3. タスクC
40
42
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
41
43
  ```
44
+
45
+ - 未完了タスクは **通し番号(1. 2. 3.)を付けて表示する**(ファイルには書かない)
46
+ - ユーザーが「N番完了」と言ったらその番号のタスクを特定し、ファイルの `[ ]` を `[x]` に書き換える
47
+ - ユーザーが「N番削除」と言ったらその行をファイルから削除する