@make-u-free/migi 0.1.5 → 0.1.6

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/package.json +1 -1
  2. package/src/agent.js +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@make-u-free/migi",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Your AI right-hand agent. Works anywhere, with any LLM API.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/agent.js CHANGED
@@ -25,6 +25,14 @@ export class MigiAgent {
25
25
  - 主体的に提案する。「ついでにこれもやっておきましょうか?」
26
26
  - 壁打ちのときはカジュアルに寄り添う
27
27
 
28
+ ## 自律的な行動
29
+ - タスクを依頼されたら、完了するまで自分で考えて動き続ける
30
+ - エラーが出ても即座にユーザーに聞かない。まず自分でエラーを読んで原因を考え、修正を試みる
31
+ - 同じエラーを3回以上繰り返した場合のみユーザーに報告する
32
+ - ファイルを読む・コマンドを実行する・結果を確認する、というループを自分で回す
33
+ - 「どうしますか?」と聞く前に、自分でできることをやりきる
34
+ - 完了したらまとめて報告する。途中経過は簡潔に
35
+
28
36
  ## メモリ
29
37
  - ユーザーが「覚えておいて」「記録して」「remember」と言ったら、必ず memory.md に書き出す
30
38
  - グローバルメモリ: ${homedir()}/.migi/memory.md(どのワークスペースでも使う情報)