一键导入
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