OfficialPremium lifestyle v1.0.0
Journal
Daily journaling with prompts, mood tracking, and reflection templates.
Early access 📅 Updated 2026-03-20
What it does
A private daily journaling system with prompts, mood tracking, and reflection templates — all managed through your AI agent. Write daily entries by talking to your AI, track your mood over time, and use structured prompts to build a consistent journaling practice.
Ask your AI to start today's journal entry with a gratitude prompt, log your mood and energy level, or show you what you wrote on this day last month. The journal supports free-form entries, structured templates (gratitude, reflection, goals), and mood/energy tracking with historical analysis.
All journal entries are stored as JSON files on your local machine. No Day One subscription, no journaling app with cloud sync, no startup reading your most private thoughts. Your journal stays on your hardware — truly private by design.
Key features
Guided Prompts
Start entries with structured prompts for gratitude, reflection, goal-setting, or free-form writing. Rotate prompts daily.
01Mood Tracking
Log your mood and energy level with each entry. See trends over weeks and months to understand your patterns.
02On This Day
Look back at past entries from the same date in previous months or years. Build a personal time capsule.
03Reflection Analytics
Get insights about your journaling patterns — most common themes, mood trends, and writing frequency over time.
04See it in action
Here's what Journal looks like in the Campshell app.
Try talking to your AI
Just say what you need. Your agent reads and writes Journal data for you.
🦞
Claw
AI Agent · Journal
Start today's journal entry with a gratitude prompt
🦞 Claw · Journal
Done! I've updated your Journal. Try asking:
Under the hood
Your data lives as plain JSON files on your machine. No cloud, no lock-in.
File structure
.campshell/journal/
├── manifest.json
├── skill.md
├── entries/
│ └── 2026/
│ └── 03/
│ ├── 2026-03-18.json
│ ├── 2026-03-19.json
│ └── 2026-03-20.json
├── prompts/
│ ├── gratitude.json
│ ├── reflection.json
│ └── goals.json
└── schema/
└── entry.schema.json Example data
{
"id": "entry-2026-03-20",
"date": "2026-03-20",
"mood": "good",
"energy": "high",
"promptType": "gratitude",
"content": "Today I'm grateful for the progress on the landing page. The design came together faster than expected and the team gave great feedback.\n\nI also had a productive morning routine — meditation, exercise, and focused work before any meetings.",
"tags": ["work", "productivity", "gratitude"],
"wordCount": 45,
"createdAt": "2026-03-20T21:00:00Z"
...