0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

雑に書いたメモをローカルAIで整理するようにした

0
Last updated at Posted at 2026-04-27

最近は ChatGPT や Claude でもできるけど、
メモを外に出したくなかった(仕事での付き合い先などが含まれることもあるので、外部に投げるのは避けたい)というのと、
ラフな入力をそのまま処理したかったのでローカルで動かしている。

タスク管理ツールがあまり続かないので、
雑に書いたメモをそのまま整理する形にしてみた。

あとは、タスク管理ツールがあまり続かないので、
雑に書いたメモをそのまま整理する形にしてみた。

Before

watchどうする
homepod画面ほしい
音楽リストめんどい
秘書改善したい
AIエージェントやる?

After

■ TODO
・[A] homepod画面ほしい
・[B] watchどうする
・[C] 音楽リストめんどい

■ 今日やる3つ
1. homepod画面ほしい
2. watchどうする

■ 保留
・AIエージェントやる?
・秘書改善したい

ローカルLLM(Ollama)で整形しているだけ。

ついでにコマンドを忘れるので履歴検索も少し楽にした。

h() {
  if [ -z "$1" ]; then
    history 0 | tail -20
  else
    history 0 | tail -r | grep -i "$*" | awk '!seen[$0]++'
  fi
}

しばらくこれで運用してみる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?