원클릭으로
journal-scribe
Saves journal entries to the-red-book repository in journals/YYYY/MM/DD/entry-title.md format. Auto-commits and pushes to git.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Saves journal entries to the-red-book repository in journals/YYYY/MM/DD/entry-title.md format. Auto-commits and pushes to git.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
A project and task management system for tracking work across the Abraxas system.
The Sovereign Vault for verified truth fragments and historical provenance tracking.
Soter is the Risk Sensing & Triggering pillar of the Sovereign Brain. It monitors for linguistic sycophancy and mechanistic attention sinks to trigger an Epistemic Crisis (T=1) and assign a Risk Score (R[0-5]).
The core governance and system integrity layer of the Abraxas sovereign environment.
The ingestion and filtration loop for external data entering the Abraxas system.
The Void Mapper for identifying and resolving epistemic gaps.
| name | journal-scribe |
| description | Saves journal entries to the-red-book repository in journals/YYYY/MM/DD/entry-title.md format. Auto-commits and pushes to git. |
Saves personal journal entries to the-red-book repository with date-based folder structure.
This skill is scoped to the-red-book repository only.
Target directory: /root/.openclaw/workspace/projects/the-red-book/journals/
journals/YYYY/MM/DD/entry-title.md
Example: journals/2026/04/12/golden-light-trail.md
Every journal entry includes:
---
date: YYYY-MM-DD
time: HH:MM MST (or your timezone)
location: [optional - where this happened]
people: ["Name1", "Name2"] # optional
mood: [optional - emotional tone]
---
# Entry Title
*Date — Time of day*
---
[Journal content follows]
---
*Journal entry saved via journal-scribe skill*
python3 /root/.openclaw/workspace/skills/journal-scribe/scripts/save-journal.py \
--title "Golden Light on the Trail" \
--content "Today I watched Dylan and Marilia walk down a trail..." \
--date "2026-04-12" \
--time "17:50" \
--location "Trail walk" \
--people "Dylan, Marilia" \
--mood "Peaceful, magical"
This will:
journals/YYYY/MM/DD/entry-title.md with metadata headerpython3 /root/.openclaw/workspace/skills/journal-scribe/scripts/save-journal.py --status
| Flag | Description |
|---|---|
--title | Entry title (used for filename) |
--content | Journal entry text |
--date | Date in YYYY-MM-DD format (default: today) |
--time | Time in HH:MM format (default: current time) |
--location | Where this happened (optional) |
--people | Comma-separated list of people (optional) |
--mood | Emotional tone (optional) |
--no-commit | Save file only, don't commit/push |
--status | Check skill status |
When auto-commit is enabled (default), the script will:
Add journal entry: {title} (YYYY-MM-DD)origin/mainGit config needed:
git config user.email "tyler@tylergarlick.com"
git config user.name "Tyler Garlick"
python3 /root/.openclaw/workspace/skills/journal-scribe/scripts/save-journal.py \
--title "Golden Light on the Trail" \
--content "Today I watched Dylan and Marilia walk down a trail in the later afternoon hours. The golden light on the trail was magical. The sunset was hues of blue and pink." \
--date "2026-04-12" \
--time "17:50" \
--location "Trail walk" \
--people "Dylan, Marilia" \
--mood "Peaceful, magical"
Output:
Journal saved to: /root/.openclaw/workspace/projects/the-red-book/journals/2026/04/12/golden-light-trail.md
Committed and pushed to origin/main
journals/
├── 2026/
│ ├── 04/
│ │ ├── golden-light-trail.md
│ │ └── 12/
│ │ └── morning-reflection.md
│ └── 03/
│ └── evening-walk.md
└── 2025/
└── 12/
└── year-end-reflections.md
Skill version: 1.0 Created: 2026-04-12