PhoenixClaw: Zero-Tag Passive Journaling
PhoenixClaw automatically distills daily conversations into meaningful reflections using semantic intelligence.
Automatically identifies journal-worthy moments, patterns, and growth opportunities.
🛠️ Core Workflow
[!critical] MANDATORY: Complete Workflow Execution
This 9-step workflow MUST be executed in full regardless of invocation method:
- Cron execution (10 PM nightly)
- Manual invocation ("Show me my journal", "Generate today's journal", etc.)
- Regeneration requests ("Regenerate my journal", "Update today's entry")
Never skip steps. Partial execution causes:
- Missing images (session logs not scanned)
- Missing finance data (Ledger plugin not triggered)
- Incomplete journals (plugins not executed)
PhoenixClaw follows a structured pipeline to ensure consistency and depth:
- User Configuration: Check for
~/.phoenixclaw/config.yaml. If missing, initiate the onboarding flow defined in references/user-config.md.
- Context Retrieval:
- Scan memory files (NEW): Read
memory/YYYY-MM-DD.md and memory/YYYY-MM-DD-*.md files for manually recorded daily reflections. These files contain personal thoughts, emotions, and context that users explicitly ask the AI to remember via commands like "记一下" (remember this). CRITICAL: Do not skip these files - they contain explicit user reflections that session logs may miss.
- Scan session logs: Call
memory_get for the current day's memory, then CRITICAL: Scan ALL raw session logs and filter by message timestamp. Session files are often split across multiple files. Do NOT classify images by session file mtime:# Read all session logs from ALL known OpenClaw locations, then filter by per-message timestamp
# Use timezone-aware epoch range to avoid UTC/local-day mismatches.
TARGET_DAY="$(date +%Y-%m-%d)"
TARGET_TZ="${TARGET_TZ:-Asia/Shanghai}"
read START_EPOCH END_EPOCH < <(
python3 - <<'PY' "$TARGET_DAY" "$TARGET_TZ"
from datetime import datetime, timedelta
from zoneinfo import ZoneInfo
import sys
day, tz = sys.argv[1], sys.argv[2]
start = datetime.strptime(day, "%Y-%m-%d").replace(tzinfo=ZoneInfo(tz))
end = start + timedelta(days=1)
print(int(start.timestamp()), int(end.timestamp()))
PY
)
for dir in "$HOME/.openclaw/sessions" \
"$HOME/.openclaw/agents" \
"$HOME/.openclaw/cron/runs" \
"$HOME/.agent/sessions"; do
[ -d "$dir" ] || continue
find "$dir" -name "*.jsonl" -print0
done |
xargs -0 jq -cr --argjson start "$START_EPOCH" --argjson end "$END_EPOCH" '
(.timestamp // .created_at // empty) as $ts
| ($ts | fromdateiso8601?) as $epoch
| select($epoch != null and $epoch >= $start and $epoch < $end)
'
```
Read **all matching files** regardless of their numeric naming (e.g., file_22, file_23 may be earlier in name but still contain today's messages).
- **EXTRACT IMAGES FROM SESSION LOGS**: Session logs contain `type: "image"` entries with file paths. You MUST:
1. Find all image entries (e.g., `"type":"image"`)
2. Keep only entries where message `timestamp` is in the target date range
3. Extract the `file_path` or `url` fields
4. Copy files into `assets/YYYY-MM-DD/`
5. Rename with descriptive names when possible
- **Why session logs are mandatory**: `memory_get` returns **text only**. Image metadata, photo references, and media attachments are **only available in session logs**. Skipping session logs = missing all photos.
- **Activity signal quality**: Do not treat heartbeat/cron system noise as user activity. Extract user/assistant conversational content and media events first, then classify moments.
- **FILTER HEARTBEAT MESSAGES (CRITICAL)**: Session logs contain system heartbeat messages that MUST be excluded from journaling. When scanning messages, SKIP any message matching these criteria:
1. **User heartbeat prompts**: Messages containing "Read HEARTBEAT.md" AND "reply HEARTBEAT_OK"
2. **Assistant heartbeat responses**: Messages containing ONLY "HEARTBEAT_OK" (with optional leading/trailing whitespace)
3. **Cron system messages**: Messages with role "system" or "cron" containing job execution summaries (e.g., "Cron job completed", "A cron job")
Example jq filter to exclude heartbeats:
```jq
# Exclude heartbeat messages
| select(
(.message.content? | type == "array" and
(.message.content | map(.text?) | join("") |
test("Read HEARTBEAT\.md"; "i") | not))
and
(.message.content? | type == "array" and
(.message.content | map(.text?) | join("") |
test("^\\s*HEARTBEAT_OK\\s*$"; "i") | not))
)
```
- **Edge case - Midnight boundary**: For late-night activity that spans midnight, expand the **timestamp** range to include spillover windows (for example, previous day 23:00-24:00) and still filter per-message by `timestamp`.
- Merge sources: Combine content from both memory files and session logs. Memory files capture explicit user reflections; session logs capture conversational flow and media. Use both to build complete context.
- Fallback: If memory is sparse, reconstruct context from session logs, then update memory so future runs use the enriched memory. Incorporate historical context via
memory_search (skip if embeddings unavailable)
Moment Identification: Identify "journal-worthy" content: critical decisions, emotional shifts, milestones, or shared media. See references/media-handling.md for photo processing. This step generates the moments data structure that plugins depend on.
Image Processing (CRITICAL):
- For each extracted image, generate descriptive alt-text via Vision Analysis
- Categorize images (food, selfie, screenshot, document, etc.)
Filter Finance Screenshots (NEW):
Payment screenshots (WeChat Pay, Alipay, etc.) should NOT be included in the journal narrative. These are tool images, not life moments.
Detection criteria (check any):
- OCR keywords: "支付成功", "支付完成", "微信支付", "支付宝", "订单号", "交易单号", "¥" + amount
- Context clues: Image sent with nearby text containing "记账", "支付", "付款", "转账"
- Visual patterns: Standard payment app UI layouts (green WeChat, blue Alipay)
Handling rules:
Mark as finance_screenshot type
Route to Ledger plugin (if enabled) for transaction recording
EXCLUDE from journal main narrative unless explicitly described as part of a life moment (e.g., "今天请朋友吃饭" with payment screenshot)
Never include raw payment screenshots in daily journal images section
Match images to moments (e.g., breakfast photo → breakfast moment)
Store image metadata with moments for journal embedding
Pattern Recognition: Detect recurring themes, mood fluctuations, and energy levels. Map these to growth opportunities using references/skill-recommendations.md.
Plugin Execution: Execute all registered plugins at their declared hook points. See references/plugin-protocol.md for the complete plugin lifecycle:
pre-analysis → before conversation analysis
post-moment-analysis → Ledger and other primary plugins execute here
post-pattern-analysis → after patterns detected
journal-generation → plugins inject custom sections
post-journal → after journal complete
Journal Generation: Synthesize the day's events into a beautiful Markdown file using assets/daily-template.md. Follow the visual guidelines in references/visual-design.md. Include all plugin-generated sections at their declared section_order positions.
- Embed curated images only, not every image. Prioritize highlights and moments.
- Route finance screenshots to Ledger sections (receipts, invoices, transaction proofs).
- Use Obsidian format from
references/media-handling.md with descriptive captions.
- Generate image links from filesystem truth: compute the image path relative to the current journal file directory. Never output absolute paths.
- Do not hardcode path depth (
../ or ../../): calculate dynamically from daily_file_path and image_path.
- Use copied filename as source of truth: if asset file is
image_124917_2.jpg, the link must reference that exact filename.
Timeline Integration: If significant events occurred, append them to the master index in timeline.md using the format from assets/timeline-template.md and references/obsidian-format.md.
Growth Mapping: Update growth-map.md (based on assets/growth-map-template.md) if new behavioral patterns or skill interests are detected.
Profile Evolution: Update the long-term user profile (profile.md) to reflect the latest observations on values, goals, and personality traits. See references/profile-evolution.md and assets/profile-template.md.
⏰ Cron & Passive Operation
PhoenixClaw is designed to run without user intervention. It utilizes OpenClaw's built-in cron system to trigger its analysis daily at 10:00 PM local time (0 22 * * *).
- Setup details can be found in
references/cron-setup.md.
- Mode: Primarily Passive. The AI proactively summarizes the day's activities without being asked.
Rolling Journal Window (NEW)
To solve the 22:00-24:00 content loss issue, PhoenixClaw now supports a rolling journal window mechanism:
Problem: Fixed 24-hour window (00:00-22:00) misses content between 22:00-24:00 when journal is generated at 22:00.
Solution: scripts/rolling-journal.js scans from last journal time → now instead of fixed daily boundaries.
Features:
- Configurable schedule hour (default: 22:00, customizable via
~/.phoenixclaw/config.yaml)
- Rolling window: No content loss even if generation time varies
- Backward compatible with existing
late-night-supplement.js
Configuration (~/.phoenixclaw/config.yaml):
schedule:
hour: 22 # Journal generation time
minute: 0
rolling_window: true # Enable rolling window (recommended)
Usage:
# Default: generate from last journal to now
node scripts/rolling-journal.js
# Specific date
node scripts/rolling-journal.js 2026-02-12
💬 Explicit Triggers
While passive by design, users can interact with PhoenixClaw directly using these phrases:
- "Show me my journal for today/yesterday."
- "What did I accomplish today?"
- "Analyze my mood patterns over the last week."
- "Generate my weekly/monthly summary."
- "How am I doing on my personal goals?"
- "Regenerate my journal." / "重新生成日记"
[!warning] Manual Invocation = Full Pipeline
When users request journal generation/regeneration, you MUST execute the complete 9-step Core Workflow above. This ensures:
- Photos are included (via session log scanning)
- Ledger plugin runs (via
post-moment-analysis hook)
- All plugins execute (at their respective hook points)
Common mistakes to avoid:
- ❌ Only calling
memory_get (misses photos)
- ❌ Skipping moment identification (plugins never trigger)
- ❌ Generating journal directly without plugin sections
📚 Documentation Reference
References (references/)
user-config.md: Initial onboarding and persistence settings.
cron-setup.md: Technical configuration for nightly automation.
plugin-protocol.md: Plugin architecture, hook points, and integration protocol.
media-handling.md: Strategies for extracting meaning from photos and rich media.
session-day-audit.js: Diagnostic utility for verifying target-day message coverage across session logs.
visual-design.md: Layout principles for readability and aesthetics.
obsidian-format.md: Ensuring compatibility with Obsidian and other PKM tools.
profile-evolution.md: How the system maintains a long-term user identity.
skill-recommendations.md: Logic for suggesting new skills based on journal insights.
Assets (assets/)
daily-template.md: The blueprint for daily journal entries.
weekly-template.md: The blueprint for high-level weekly summaries.
profile-template.md: Structure for the profile.md persistent identity file.
timeline-template.md: Structure for the timeline.md chronological index.
growth-map-template.md: Structure for the growth-map.md thematic index.
1---2name: phoenixclaw3description: Passive journaling skill that scans daily conversations via cron to generate markdown journals using semantic understanding. Use when: - User requests journaling ("Show me my journal", "What did I do today?") - User asks for pattern analysis ("Analyze my patterns", "How am I doing?") - User requests summaries ("Generate weekly/monthly summary")4---5
6# PhoenixClaw: Zero-Tag Passive Journaling
7
8PhoenixClaw automatically distills daily conversations into meaningful reflections using semantic intelligence.
9
10Automatically identifies journal-worthy moments, patterns, and growth opportunities.
11
12## 🛠️ Core Workflow
13
14> [!critical] **MANDATORY: Complete Workflow Execution**
15> This 9-step workflow MUST be executed in full regardless of invocation method:
16> - **Cron execution** (10 PM nightly)
17> - **Manual invocation** ("Show me my journal", "Generate today's journal", etc.)
18> - **Regeneration requests** ("Regenerate my journal", "Update today's entry")
19>
20> **Never skip steps.** Partial execution causes:
21> - Missing images (session logs not scanned)
22> - Missing finance data (Ledger plugin not triggered)
23> - Incomplete journals (plugins not executed)
24
25PhoenixClaw follows a structured pipeline to ensure consistency and depth:
26
271. **User Configuration:** Check for `~/.phoenixclaw/config.yaml`. If missing, initiate the onboarding flow defined in `references/user-config.md`.
282. **Context Retrieval:**
29 - **Scan memory files (NEW):** Read `memory/YYYY-MM-DD.md` and `memory/YYYY-MM-DD-*.md` files for manually recorded daily reflections. These files contain personal thoughts, emotions, and context that users explicitly ask the AI to remember via commands like "记一下" (remember this). **CRITICAL**: Do not skip these files - they contain explicit user reflections that session logs may miss.
30 - **Scan session logs:** Call `memory_get` for the current day's memory, then **CRITICAL: Scan ALL raw session logs and filter by message timestamp**. Session files are often split across multiple files. Do NOT classify images by session file `mtime`:
31 ```bash
32 # Read all session logs from ALL known OpenClaw locations, then filter by per-message timestamp
33 # Use timezone-aware epoch range to avoid UTC/local-day mismatches.
34 TARGET_DAY="$(date +%Y-%m-%d)"
35 TARGET_TZ="${TARGET_TZ:-Asia/Shanghai}"
36 read START_EPOCH END_EPOCH < <(
37 python3 - <<'PY' "$TARGET_DAY" "$TARGET_TZ"
38from datetime import datetime, timedelta
39from zoneinfo import ZoneInfo
40import sys
41
42day, tz = sys.argv[1], sys.argv[2]
43start = datetime.strptime(day, "%Y-%m-%d").replace(tzinfo=ZoneInfo(tz))
44end = start + timedelta(days=1)
45print(int(start.timestamp()), int(end.timestamp()))
46PY
47 )
48
49 for dir in "$HOME/.openclaw/sessions" \
50 "$HOME/.openclaw/agents" \
51 "$HOME/.openclaw/cron/runs" \
52 "$HOME/.agent/sessions"; do
53 [ -d "$dir" ] || continue
54 find "$dir" -name "*.jsonl" -print0
55 done |
56 xargs -0 jq -cr --argjson start "$START_EPOCH" --argjson end "$END_EPOCH" '
57 (.timestamp // .created_at // empty) as $ts
58 | ($ts | fromdateiso8601?) as $epoch
59 | select($epoch != null and $epoch >= $start and $epoch < $end)
60 '
61 ```
62 Read **all matching files** regardless of their numeric naming (e.g., file_22, file_23 may be earlier in name but still contain today's messages).
63 - **EXTRACT IMAGES FROM SESSION LOGS**: Session logs contain `type: "image"` entries with file paths. You MUST:
64 1. Find all image entries (e.g., `"type":"image"`)
65 2. Keep only entries where message `timestamp` is in the target date range
66 3. Extract the `file_path` or `url` fields
67 4. Copy files into `assets/YYYY-MM-DD/`
68 5. Rename with descriptive names when possible
69 - **Why session logs are mandatory**: `memory_get` returns **text only**. Image metadata, photo references, and media attachments are **only available in session logs**. Skipping session logs = missing all photos.
70 - **Activity signal quality**: Do not treat heartbeat/cron system noise as user activity. Extract user/assistant conversational content and media events first, then classify moments.
71 - **FILTER HEARTBEAT MESSAGES (CRITICAL)**: Session logs contain system heartbeat messages that MUST be excluded from journaling. When scanning messages, SKIP any message matching these criteria:
72 1. **User heartbeat prompts**: Messages containing "Read HEARTBEAT.md" AND "reply HEARTBEAT_OK"
73 2. **Assistant heartbeat responses**: Messages containing ONLY "HEARTBEAT_OK" (with optional leading/trailing whitespace)
74 3. **Cron system messages**: Messages with role "system" or "cron" containing job execution summaries (e.g., "Cron job completed", "A cron job")
75
76 Example jq filter to exclude heartbeats:
77 ```jq
78 # Exclude heartbeat messages
79 | select(
80 (.message.content? | type == "array" and
81 (.message.content | map(.text?) | join("") |
82 test("Read HEARTBEAT\.md"; "i") | not))
83 and
84 (.message.content? | type == "array" and
85 (.message.content | map(.text?) | join("") |
86 test("^\\s*HEARTBEAT_OK\\s*$"; "i") | not))
87 )
88 ```
89 - **Edge case - Midnight boundary**: For late-night activity that spans midnight, expand the **timestamp** range to include spillover windows (for example, previous day 23:00-24:00) and still filter per-message by `timestamp`.
90 - **Merge sources:** Combine content from both memory files and session logs. Memory files capture explicit user reflections; session logs capture conversational flow and media. Use both to build complete context.
91 - **Fallback:** If memory is sparse, reconstruct context from session logs, then update memory so future runs use the enriched memory. Incorporate historical context via `memory_search` (skip if embeddings unavailable)
92
933. **Moment Identification:** Identify "journal-worthy" content: critical decisions, emotional shifts, milestones, or shared media. See `references/media-handling.md` for photo processing. This step generates the `moments` data structure that plugins depend on.
94 **Image Processing (CRITICAL)**:
95 - For each extracted image, generate descriptive alt-text via Vision Analysis
96 - Categorize images (food, selfie, screenshot, document, etc.)
97
98 **Filter Finance Screenshots (NEW)**:
99 Payment screenshots (WeChat Pay, Alipay, etc.) should NOT be included in the journal narrative. These are tool images, not life moments.
100
101 Detection criteria (check any):
102 1. **OCR keywords**: "支付成功", "支付完成", "微信支付", "支付宝", "订单号", "交易单号", "¥" + amount
103 2. **Context clues**: Image sent with nearby text containing "记账", "支付", "付款", "转账"
104 3. **Visual patterns**: Standard payment app UI layouts (green WeChat, blue Alipay)
105
106 Handling rules:
107 - Mark as `finance_screenshot` type
108 - Route to Ledger plugin (if enabled) for transaction recording
109 - **EXCLUDE from journal main narrative** unless explicitly described as part of a life moment (e.g., "今天请朋友吃饭" with payment screenshot)
110 - Never include raw payment screenshots in daily journal images section
111
112 - Match images to moments (e.g., breakfast photo → breakfast moment)
113 - Store image metadata with moments for journal embedding
1144. **Pattern Recognition:** Detect recurring themes, mood fluctuations, and energy levels. Map these to growth opportunities using `references/skill-recommendations.md`.
115
1165. **Plugin Execution:** Execute all registered plugins at their declared hook points. See `references/plugin-protocol.md` for the complete plugin lifecycle:
117 - `pre-analysis` → before conversation analysis
118 - `post-moment-analysis` → **Ledger and other primary plugins execute here**
119 - `post-pattern-analysis` → after patterns detected
120 - `journal-generation` → plugins inject custom sections
121 - `post-journal` → after journal complete
122
123
1246. **Journal Generation:** Synthesize the day's events into a beautiful Markdown file using `assets/daily-template.md`. Follow the visual guidelines in `references/visual-design.md`. **Include all plugin-generated sections** at their declared `section_order` positions.
125 - **Embed curated images only**, not every image. Prioritize highlights and moments.
126 - **Route finance screenshots to Ledger** sections (receipts, invoices, transaction proofs).
127 - Use Obsidian format from `references/media-handling.md` with descriptive captions.
128 - **Generate image links from filesystem truth**: compute the image path relative to the current journal file directory. Never output absolute paths.
129 - **Do not hardcode path depth** (`../` or `../../`): calculate dynamically from `daily_file_path` and `image_path`.
130 - **Use copied filename as source of truth**: if asset file is `image_124917_2.jpg`, the link must reference that exact filename.
131
1327. **Timeline Integration:** If significant events occurred, append them to the master index in `timeline.md` using the format from `assets/timeline-template.md` and `references/obsidian-format.md`.
133
1348. **Growth Mapping:** Update `growth-map.md` (based on `assets/growth-map-template.md`) if new behavioral patterns or skill interests are detected.
135
1369. **Profile Evolution:** Update the long-term user profile (`profile.md`) to reflect the latest observations on values, goals, and personality traits. See `references/profile-evolution.md` and `assets/profile-template.md`.
137
138## ⏰ Cron & Passive Operation
139PhoenixClaw is designed to run without user intervention. It utilizes OpenClaw's built-in cron system to trigger its analysis daily at 10:00 PM local time (0 22 * * *).
140- Setup details can be found in `references/cron-setup.md`.
141- **Mode:** Primarily Passive. The AI proactively summarizes the day's activities without being asked.
142
143### Rolling Journal Window (NEW)
144To solve the 22:00-24:00 content loss issue, PhoenixClaw now supports a **rolling journal window** mechanism:
145
146**Problem**: Fixed 24-hour window (00:00-22:00) misses content between 22:00-24:00 when journal is generated at 22:00.
147
148**Solution**: `scripts/rolling-journal.js` scans from **last journal time → now** instead of fixed daily boundaries.
149
150**Features**:
151- Configurable schedule hour (default: 22:00, customizable via `~/.phoenixclaw/config.yaml`)
152- Rolling window: No content loss even if generation time varies
153- Backward compatible with existing `late-night-supplement.js`
154
155**Configuration** (`~/.phoenixclaw/config.yaml`):
156```yaml
157schedule:
158 hour: 22 # Journal generation time
159 minute: 0
160 rolling_window: true # Enable rolling window (recommended)
161```
162
163**Usage**:
164```bash
165# Default: generate from last journal to now
166node scripts/rolling-journal.js
167
168# Specific date
169node scripts/rolling-journal.js 2026-02-12
170```
171
172## 💬 Explicit Triggers
173
174While passive by design, users can interact with PhoenixClaw directly using these phrases:
175- *"Show me my journal for today/yesterday."*
176- *"What did I accomplish today?"*
177- *"Analyze my mood patterns over the last week."*
178- *"Generate my weekly/monthly summary."*
179- *"How am I doing on my personal goals?"*
180- *"Regenerate my journal."* / *"重新生成日记"*
181
182> [!warning] **Manual Invocation = Full Pipeline**
183> When users request journal generation/regeneration, you MUST execute the **complete 9-step Core Workflow** above. This ensures:
184> - **Photos are included** (via session log scanning)
185> - **Ledger plugin runs** (via `post-moment-analysis` hook)
186> - **All plugins execute** (at their respective hook points)
187>
188> **Common mistakes to avoid:**
189> - ❌ Only calling `memory_get` (misses photos)
190> - ❌ Skipping moment identification (plugins never trigger)
191> - ❌ Generating journal directly without plugin sections
192
193## 📚 Documentation Reference
194### References (`references/`)
195- `user-config.md`: Initial onboarding and persistence settings.
196- `cron-setup.md`: Technical configuration for nightly automation.
197- `plugin-protocol.md`: Plugin architecture, hook points, and integration protocol.
198- `media-handling.md`: Strategies for extracting meaning from photos and rich media.
199- `session-day-audit.js`: Diagnostic utility for verifying target-day message coverage across session logs.
200- `visual-design.md`: Layout principles for readability and aesthetics.
201- `obsidian-format.md`: Ensuring compatibility with Obsidian and other PKM tools.
202- `profile-evolution.md`: How the system maintains a long-term user identity.
203- `skill-recommendations.md`: Logic for suggesting new skills based on journal insights.
204
205### Assets (`assets/`)
206- `daily-template.md`: The blueprint for daily journal entries.
207- `weekly-template.md`: The blueprint for high-level weekly summaries.
208- `profile-template.md`: Structure for the `profile.md` persistent identity file.
209- `timeline-template.md`: Structure for the `timeline.md` chronological index.
210- `growth-map-template.md`: Structure for the `growth-map.md` thematic index.
211
212---