원클릭으로
heartbeat-manager
Configure and manage proactive heartbeat checks for autonomous operation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Configure and manage proactive heartbeat checks for autonomous operation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Argue against proposed actions to test judgment quality. Not "is the code correct" but "should we be doing this at all?" Aligned with robustness, not performance.
Orchestrate Claude Code agent teams for parallel multi-agent collaboration
Learn and integrate new APIs, creating permanent skills for external service access.
Create and update CHANGELOG.md with entries that include AI model/CLI attribution, PRD context, and task references.
Audit decisions for judgment quality, compliance bias, and manipulation vulnerability. Inspired by Anthropic's Project Vend Phase 2 finding that helpfulness training creates exploitable attack surface.
Extract visual style from reference UI screenshot and codify into reusable design system.
| name | heartbeat-manager |
| description | Configure and manage proactive heartbeat checks for autonomous operation. |
| category | autonomous |
Important: Instruction Template This skill provides a checklist and configuration format for Claude Code to follow. There is no automatic scheduler - heartbeat checks run only when Claude reads and follows this template during a session. For true automation, integrate with external schedulers (cron, systemd timers) that invoke Claude Code periodically.
Enable proactive agent behavior through scheduled heartbeat checks that run without user prompting.
A heartbeat is a periodic check that allows the agent to:
Key Principle: Silence = all systems normal. Only notify when action is required.
automation/HEARTBEAT.md or .agent/HEARTBEAT.md
# Heartbeat Configuration
## Schedule
- **Interval:** 30m
- **Active Hours:** 08:00 - 22:00
- **Timezone:** America/New_York
## Checks
### Communications
- [ ] Check email for urgent messages
- [ ] Review Slack/Discord for direct mentions
- [ ] Check GitHub notifications
### Monitoring
- [ ] Verify background jobs completed
- [ ] Check for CI/CD failures
- [ ] Monitor system alerts
### Proactive Tasks
- [ ] If idle > 2 hours with pending tasks, remind
- [ ] If PR approved, suggest merge
- [ ] If deadline approaching, alert
## Notification Rules
- **Urgent:** Notify immediately
- **Normal:** Batch and notify at next check
- **Low:** Log only, no notification
Identify Monitoring Needs
Define Checks For each check, specify:
Set Schedule
Configure Notifications
When heartbeat triggers:
Load Configuration Read HEARTBEAT.md for current checks
Execute Checks Run each check in the list:
Process Results
Deliver Notifications If items require attention:
🔔 Heartbeat Check (HH:MM)
## Requires Attention
- [Item 1]
- [Item 2]
## Completed Autonomously
- [Action taken]
Update Memory Log heartbeat results to daily notes
# Developer Heartbeat
## Schedule
- **Interval:** 30m
- **Active Hours:** 09:00 - 18:00
## Checks
### Code Review
- [ ] PRs awaiting my review
- [ ] My PRs with new comments
- [ ] CI failures on my branches
### Tasks
- [ ] Blocked tasks that may be unblocked
- [ ] Approaching deadlines (< 24h)
### Communications
- [ ] Slack mentions in engineering channels
- [ ] GitHub @mentions
## Auto-Actions
- Mark stale PRs for follow-up
- Draft responses to simple questions
# Personal Assistant Heartbeat
## Schedule
- **Interval:** 1h
- **Active Hours:** 07:00 - 22:00
## Checks
### Calendar
- [ ] Upcoming meetings (next 2 hours)
- [ ] Meetings requiring prep
- [ ] Scheduling conflicts
### Email
- [ ] Urgent emails (VIP senders)
- [ ] Emails awaiting response > 24h
### Tasks
- [ ] Overdue items
- [ ] Items due today
## Auto-Actions
- Prepare meeting briefs
- Draft email responses for review
| Feature | Heartbeat | Cron |
|---|---|---|
| Purpose | Monitoring & checking | Scheduled execution |
| Frequency | Regular intervals | Specific times |
| Output | Notify if needed | Always execute task |
| Context | Shares main session | Can be isolated |
| Best For | Awareness tasks | Scheduled reports |
Use heartbeat for: "Check if X needs attention" Use cron for: "Do Y at specific time"
AUTONOMOUS_BOOTUP_SPEC.md for architecturememory-manager for logging patterns