Automations
Schedule recurring AI tasks in Nimbalyst. Automations run on a timer from a markdown file to produce standups, weekly reports, and reviews.
Last updated
/automation summarize my git commits every weekday morning---
automationStatus:
id: standup-summary
title: Daily Standup Summary
enabled: false
schedule:
type: weekly
days: [mon, tue, wed, thu, fri]
time: "09:25"
output:
mode: new-file
location: nimbalyst-local/automations/standup-summary/
fileNameTemplate: "{{date}}-standup.md"
runCount: 0
---
# Daily Standup Summary
Review the git log and recent file changes in this workspace since the previous business day. Summarize:
1. **What was accomplished** - List completed work based on commits and file changes
2. **What's in progress** - Identify files with uncommitted changes or recent branches
3. **Any blockers** - Note any error logs, failing tests, or stale branches
Format as a concise standup update suitable for sharing with the team.schedule:
type: daily
time: "09:00"schedule:
type: weekly
days: [mon, wed, fri]
time: "14:00"schedule:
type: interval
intervalMinutes: 60output:
mode: new-file
location: nimbalyst-local/automations/standup-summary/
fileNameTemplate: "{{date}}-output.md"provider: claude-code # "claude-code", "claude", or "openai"
model: claude-code:sonnet # optional: specific model IDWhat's the run history for my standup-summary automation?---
automationStatus:
id: weekly-status
title: Weekly Project Status
enabled: true
schedule:
type: weekly
days: [fri]
time: "16:00"
output:
mode: new-file
location: nimbalyst-local/automations/weekly-status/
fileNameTemplate: "{{date}}-status.md"
runCount: 0
---
# Weekly Project Status
Generate a weekly status report for this project:
1. **Summary** - One paragraph overview of the week's progress
2. **Completed** - List all merged PRs and completed features this week (check git log)
3. **In Progress** - List open branches and their status
4. **Metrics** - Count commits, files changed, and lines added/removed
5. **Next Week** - Based on open branches and TODOs, suggest priorities
Format as a clean markdown report.