Epgstation
Claude Code / Codex / Antigravity 用の Agent Skills 集
npx -y skills add msageha/skills --skill epgstationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
EPGStation TV recording service. Use when: user asks about TV programs, schedules, recordings, or reservations. Controls EPGStation via REST API for browsing what's on TV, searching programs, managing recordings and auto-recording rules.
SKILL.md
1.8 KB, 382 tokens by cl100k_base, as published. Nobody here has run it
EPGStation
Base URL: https://epgstation.msageha.net/api (EPGStation v2.10.0)。
Key facts
- All timestamps are Unix time in milliseconds, not seconds.
- Always pass
isHalfWidth=truefor readable Japanese text. - Default
limitis 24; paginate withlimit/offset. - Genre IDs follow ARIB STD-B10 (see references/api-reference.md for the table).
- Confirm with the user before creating or deleting a reservation/rule.
- Search for a program first and show results before reserving it.
Core operations
| Task | Endpoint |
|---|---|
| Currently broadcasting | GET /schedules/broadcasting |
| Channel list | GET /channels |
| Channel schedule | GET /schedules/{channelId}?days=N |
| Program detail | GET /schedules/detail/{programId} |
| Search programs | POST /schedules/search |
| Reserve (by program or time range) | POST /reserves |
| List / delete reservation | GET, DELETE /reserves/{reserveId} |
| Reservation counts (conflicts/skips) | GET /reserves/cnts |
| Currently recording | GET /recording |
| List / search recorded | GET /recorded |
| Protect / delete recorded | PUT /recorded/{id}/protect, DELETE /recorded/{id} |
| Auto-recording rules | POST /rules, GET /rules, PUT /rules/{id}/enable|disable |
Full request/response schemas and ready-to-run curl examples: see references/api-reference.md and references/commands.md.
What ships with it: 2 files
28.3 KB alongside SKILL.md
references/
- api-reference.md23.8 KB
- commands.md4.5 KB