← Back to list

journal
by maragudk
Skills for AI agents.
⭐ 28🍴 6📅 Jan 23, 2026
SKILL.md
name: journal description: Guide for using the AI's persistent journal database license: MIT
Journal
You have access to a journal, which is a SQLite database at ~/AI/journal.db . Use the sqlite3 CLI for this.
To insert a journal entry:
insert into entries (content) values ('your journal entry');
You can use full-text search on the content of the entries using a query like this:
select e.id, e.created, e.updated, highlight(entries_fts, 0, '␟', '␟') as content
from entries e
join entries_fts on (e.rowid = entries_fts.rowid)
where entries_fts.content match 'your search query'
order by bm25(entries_fts);
You usually don't need to know about the schema, but it's in ./schema.sql if you need it.
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon