memcode docs
AgentsExamples

Morning briefing

Headlines and overnight activity in your repos, delivered before you sit down.

Every morning your agent gathers what changed while you slept — activity in your registered projects plus headlines on the topics you care about — and sends one message to your chat.

What you need

  • A connected channel (Telegram works well for this)
  • The gateway running (memcode gateway, or install it as a service)

Set it up

memcode gateway schedule add briefing --cron "0 7 * * *" \
  --to telegram:123456789 \
  "Give me a morning briefing: summarize overnight commits, PRs, and issues in my projects, then the top AI and dev-tools headlines. Keep it under 15 lines."

Or the same thing in ~/.config/memcode/gateway.yaml:

schedules:
  - name: briefing
    cron: "0 7 * * *"
    task: "Give me a morning briefing: summarize overnight commits, PRs, and issues in my projects, then the top AI and dev-tools headlines. Keep it under 15 lines."
    deliver_to: "telegram:123456789"

Replace 123456789 with your own chat's conversation id (the gateway prints it when you message the bot).

Make it yours

The task is plain language — edit it like you'd brief a person. Add "include my site's uptime", drop the headlines, or change the tone. Tell memcode admin "make my briefing shorter and move it to 6:30" and it updates the schedule for you.

On this page