journal

Guide for using the AI's persistent journal database

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "journal" with this command: npx skills add maragudk/skills/maragudk-skills-journal

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.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

datastar

No summary provided by upstream source.

Repository SourceNeeds Review
General

marimo

No summary provided by upstream source.

Repository SourceNeeds Review
General

brainstorm

No summary provided by upstream source.

Repository SourceNeeds Review
General

observable-notebooks

No summary provided by upstream source.

Repository SourceNeeds Review