# Get Schedule Comment Context

> Read target remind schedules and recent action_logs (last 3 days) as JSON for agent comment generation.

- Skill: `motoya0118/get-schedule-comment-context` (Agent Skill)
- Install (CLI): `npx skillmds@latest add motoya0118/get-schedule-comment-context`
- Raw SKILL.md: https://api.skillmd.com/api/skills/motoya0118/get-schedule-comment-context/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: motoya0118 (https://skillmd.com/u/motoya0118)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/motoya0118/get-schedule-comment-context

---


# Get Schedule Comment Context

Use `scripts/get_schedule_comment_context.py` to fetch schedule rows and recent behavior logs.

## Run

```bash
uv run scripts/get_schedule_comment_context.py '["schedule-id-1","schedule-id-2"]'
```

```bash
echo '["schedule-id-1","schedule-id-2"]' | uv run scripts/get_schedule_comment_context.py -
```

## Input

- JSON array of schedule IDs
- CLI arg, stdin (`-`), or env `SCHEDULE_IDS_JSON`

## Output

Single-line JSON:

```json
{"schedule_ids":["..."],"schedules":[...],"recent_action_logs":[...]}
```

