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

Custom Voice Extraction Process for Claude Code with Template
A developer shares a three-pass extraction process to create a custom voice skill for Claude Code, resulting in a 510-line SKILL.md file with ban lists for LLM-isms, anti-performative rules, and format-specific voice modes. The open-source template works with any language using 10+ writing samples.

Blackwell LLM Toolkit: NVFP4 Configs, Wheels, and Benchmarks for TensorRT-LLM on RTX Pro 6000
A community repo provides TensorRT-LLM configs, prebuilt LMCache wheels with sm_120 support, and benchmarks for Blackwell GPUs. Nemotron-3-Nano-Omni V3 hits 270 tok/s at 8k context on a single RTX Pro 6000.

depct: MCP Server Provides Claude with Live Runtime Analysis and Documentation
depct is an MCP server that instruments Node.js applications to capture runtime data, generating structured documentation with confidence levels that Claude can access before coding. The tool updates documentation automatically after Claude makes changes.

Claude Code Best Practice Repo Hits 50k Stars, Built Entirely with AI Agents
A GitHub repository packed with Claude best practices, 100% developed and maintained by autonomous Claude code workflows, crossed 50,000 stars — making it Pakistan's most-starred repo in 2026.