View today's auto-generated hourly activity reports.
Scanned 5/27/2026
Install to Claude Code
npx -y skills add cyrus-cai/claude-cobrain --skill hourly --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Hourly?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyrus-cai-hourly)More formats (shields.io, HTML) on the badges page.
---
name: hourly
description: View today's auto-generated hourly activity reports.
---
# hourly
Display today's hourly activity reports generated automatically by the daemon.
## Steps
1. Resolve output directory (direct python mode):
```bash
OUTPUT_DIR="${OUTPUT_DIR:-$HOME/.claude/cobrain}"
echo "$OUTPUT_DIR"
```
2. Build today's hourly file path and check existence:
```bash
OUTPUT_DIR="${OUTPUT_DIR:-$HOME/.claude/cobrain}"
HOURLY_FILE="$OUTPUT_DIR/$(date +%Y%m%d)-hourly.md"
test -f "$HOURLY_FILE" && echo "exists" || echo "missing"
```
3. If the file does not exist or is empty, report:
- "No hourly reports generated yet today. Reports are created automatically at each hour boundary when the daemon is running."
- Stop here.
4. Read and display the full contents of the hourly file using the `Read` tool.
5. Present the content as-is — these are pre-generated summaries, no further analysis needed.
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.