Configure periodic health checks via HEARTBEAT.md and the /heartbeat command.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add espennilsen/pi --skill pi-heartbeat --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pi Heartbeat?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/espennilsen-pi-heartbeat)More formats (shields.io, HTML) on the badges page.
---
name: pi-heartbeat
description: Configure periodic health checks via HEARTBEAT.md and the /heartbeat command.
---
## Pi Heartbeat Extension
Runs a periodic health-check prompt as an isolated subprocess.
### Setup
1. Enable via `--heartbeat` flag, `/heartbeat on`, or settings.json:
```json
{ "pi-heartbeat": { "enabled": true, "intervalMinutes": 15 } }
```
2. Create a `HEARTBEAT.md` in your project root with check items:
```markdown
# Heartbeat Checklist
- [ ] Check git status — any uncommitted changes?
- [ ] Check disk space — anything over 90%?
- [ ] Review td list for blocked tasks
```
3. If the agent responds with `HEARTBEAT_OK`, the result is suppressed. Any other response is treated as an alert and sent via pi-channels.
### Configuration (settings.json)
```json
{
"pi-heartbeat": {
"enabled": false,
"intervalMinutes": 15,
"activeHours": { "start": "08:00", "end": "22:00" },
"route": "ops",
"showOk": false,
"prompt": null
}
}
```
- **enabled**: Start heartbeat on session start
- **intervalMinutes**: Check frequency (default: 15)
- **activeHours**: Only run during these hours (null = always)
- **route**: pi-channels route for alerts (default: "ops")
- **showOk**: Also send HEARTBEAT_OK results to the channel
- **prompt**: Custom prompt (overrides HEARTBEAT.md)
### Commands
- `/heartbeat on` — Start periodic checks
- `/heartbeat off` — Stop checks
- `/heartbeat status` — Show run stats
- `/heartbeat run` — Run a check immediately
### Events
- `heartbeat:check` — Emitted when a check starts
- `heartbeat:result` — Emitted with `{ ok, response, durationMs }`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!