@make-u-free/migi 0.5.18 → 0.5.19
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 +4 -3
- package/package.json +1 -1
package/bin/migi.js
CHANGED
|
@@ -75,9 +75,10 @@ const agent = new MigiAgent({ context, promptFn, apiKey, model, name: agentName,
|
|
|
75
75
|
try {
|
|
76
76
|
await agent.chat(
|
|
77
77
|
`起動した。以下の手順で今日の状況を確認して、簡潔にダッシュボードを表示してから、今一番優先すべきことを1つだけ提案して:\n` +
|
|
78
|
-
`1. todos/${today}.md を read_file
|
|
79
|
-
`2. .
|
|
80
|
-
`3.
|
|
78
|
+
`1. todos/${today}.md を read_file で読んで未完了タスクを確認(ファイルがなければスキップ)\n` +
|
|
79
|
+
`2. search_content で「- \\[ \\]」を .company/ ディレクトリ全体から検索して、部署ごとの未完了タスクも集約する\n` +
|
|
80
|
+
`3. .migi/memory/next-actions.md があれば読む\n` +
|
|
81
|
+
`4. todos/ と .company/ の両方を合わせたダッシュボード(未完了の件数サマリー、ソース別)をコンパクトに出して、一言で「今日はこれから」と提案する\n` +
|
|
81
82
|
`(詳細な説明はいらない。テンポよく)`
|
|
82
83
|
)
|
|
83
84
|
} catch (err) {
|