Murmur: An Open-Source Cron Daemon for Automating Claude Code Sessions

Murmur is an open-source cron daemon designed to automate Claude code sessions on a predetermined schedule. You no longer need to manually initiate sessions for routine tasks like checking competitor changelogs or triaging GitHub issues.
Key Details
The setup involves creating a HEARTBEAT.md file that uses YAML frontmatter for configuration, followed by a prompt that outlines the task:
---
name: competitor watch
cron: 0 9 * * MON
agent: claude-code
model: sonnet
timeout: 10m
---
fetch https://competitor.com/changelog.
compare against ~/tracking/competitor-last.md for new entries.
for each new feature, check our issue tracker and think about
whether it makes sense for our product given our roadmap.
only if it genuinely adds value: open an issue with reasoning.
update competitor-last.md. if nothing new, HEARTBEAT_OK.
Murmur reads this configuration file and runs the Claude sessions per the cron schedule. It's not meant to replace CI/CD, but rather it handles tasks where the decision-making is not strictly algorithmic, such as reading, analyzing, and deciding on a course of action.
For installation, you can use the following Homebrew command: brew install t0dorakis/murmur/murmur. Alternatively, set it up with a guided interview using NPX: npx skills add t0dorakis/murmur --skill heartbeat-cron.
Who It's For
Murmur is particularly useful for developers looking to automate routine tasks that require some level of cognitive processing beyond simple scripting.
📖 Read the full source: r/ClaudeAI
👀 See Also

Running OpenClaw and Codex CLI Natively on Android via AnyClaw APK
A developer has packaged OpenClaw and Codex CLI into an Android APK called AnyClaw, enabling the gateway and Control UI to run locally on ARM64 Android 7.0+ devices without root. The project required building dependencies from source and patching multiple components to handle Android-specific constraints.

Claw Voice Feature Adds 11Labs API Support with CarPlay Integration
Claw Voice integrates with CarPlay and allows custom voices via the 11Labs API, enabling natural, free-flowing conversations with your agent while driving.

X-MCP 2.0: MCP Server for X/Twitter API Access from Claude
X-MCP 2.0 is an MCP server that connects Claude Desktop and Claude Code to the X/Twitter API v2 with OAuth 2.0 PKCE authentication, providing 10 tools for posting tweets, searching, getting timelines, liking, retweeting, replying, and viewing profiles.

Remark: A Markdown Annotation Tool for Claude Code Workflows
Remark is a native macOS app that lets developers annotate Markdown files inline for Claude Code review workflows. It exports annotations as JSON for the agent and integrates via a skill installed in the .claude/skills/ directory.