episode

Read and append daily notes to a local Markdown episode file.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/claudeaceae/samara-main --skill episode-claudeaceae
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: episode
Source: https://github.com/claudeaceae/samara-main/tree/main/.claude/skills/episode
Command: npx skills add https://github.com/claudeaceae/samara-main --skill episode-claudeaceae

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps users capture and organize daily episodes into a centralized log, turning scattered notes into a searchable memory journal.

Core Features & Use Cases

  • View today's episode to track daily activities and events.
  • Add notes and events to the current day's episode and append to the log.
  • Review recent episodes to reflect on progress, patterns, and threads.

Quick Start

View Today's Episode: cat ~/.claude-mind/memory/episodes/$(date +%Y-%m-%d).md 2>/dev/null || echo "No episode for today yet" Add to Today's Episode: echo "- [Event] ... " >> ~/.claude-mind/memory/episodes/$(date +%Y-%m-%d).md

Frequently Asked Questions about episode

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I log daily progress and events using Markdown files?

You can log daily progress by appending text events to a local Markdown file named with today's date. This process creates a centralized daily episode log for tracking activities and notes.

What is the best way to maintain a personal journal for daily standups and retrospectives?

Maintaining a personal journal for standups involves organizing daily episodes into morning, afternoon, and evening segments within a single Markdown file per day, allowing you to track events and reflect on progress.

How do I append notes to a daily log file using shell commands?

You append notes to a daily log file by using standard shell commands like `echo` to redirect text into the dated Markdown file. This adds events to the current day's episode without manual file editing.

Does this daily logging approach require any external dependencies or complex setup?

This daily logging approach requires no external dependencies or complex setup. It relies entirely on standard shell commands and local file system paths to read and append to local Markdown files.

Can I review recent episode logs to find patterns in my daily tracking?

You can review recent episode logs to find patterns in your daily tracking by reading the stored Markdown files. This allows you to reflect on past progress and threads across multiple days.

When should I not use a single file per day for journaling?

You should not use a single file per day for journaling if your entries require complex database queries or cross-referencing capabilities, as this method relies on simple flat Markdown files and basic shell commands.