원클릭으로
jrnl
Capture notes into your daily journal using the jrnl CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Capture notes into your daily journal using the jrnl CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a Google Task via the IFTTT JSON webhook
Create a git commit using the message format below
Split working tree changes into up to five atomic commits, each with a message generated using the git-commit skill
Use Bun's shell API ($ from "bun") when writing or editing scripts that run shell commands in src/. Use when adding or changing subprocess/shell usage under src/, or when the user asks for shell execution in this project. Prefer Bun Shell over child_process or execSync.
Polish text by refining clarity, coherence, and conciseness
Add GitHub Actions workflow for publishing Rust crates using trusted publishing (OIDC). Use when setting up automated crate publishing, configuring crates.io trusted publishing, or when the user mentions crate publishing workflow.
| name | jrnl |
| description | Capture notes into your daily journal using the jrnl CLI |
Use the jrnl CLI to append entries to your daily journal. The journal is a
Markdown file named Journal YYYY-MM-DD.md stored in ~/Dropbox/Brain/journal/,
~/Brain/journal/, or ~/.journal/ (first found wins).
jrnl <title> — Read stdin and append a timestamped entry with the given title.
Prefer a temp file or HEREDOC for the body to avoid escaping issues:
cat <<'EOF' | jrnl "Auth refactor"
Finished refactoring the auth module.
Notes with "quotes" and $vars stay literal.
EOF
# or write body to a temp file, then:
jrnl "Auth refactor" < /tmp/jrnl-body.md
jrnl -c <title> — Same as above, but reads the body from the clipboard
instead of stdin.
jrnl -e — Open today's journal file in $EDITOR (defaults to nvim). The
file is created with a template if it doesn't exist.
jrnl -p — Print the path to today's journal file and exit.
Entries are appended under an h3 heading (### HH:MM <title>). Format the body
in Markdown. Because each entry starts at h3, use h4 (####) or deeper for any
headings within the body.