# Monitor Gh

> Monitor GitHub repositories for new commits or releases in the last 24 hours. Use when this capability is needed.

- Skill: `tomevault-io/monitor-gh` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/monitor-gh`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/monitor-gh/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/monitor-gh

---


# GitHub Monitor

Check for activity on repositories you care about.

## Usage

### 1. Check Recent Commits
To check commits in the last 24 hours:
```bash
# Get current time in ISO8601 minus 24h (GNU/Linux compatible)
SINCE=$(date -u --date="24 hours ago" +"%Y-%m-%dT%H:%M:%SZ")
gh api repos/[owner]/[repo]/commits --jq '.[] | select(.commit.author.date > "'"$SINCE"'") | {sha: .sha[0:7], author: .commit.author.name, message: .commit.message, date: .commit.author.date}'
```

### 2. Check Recent Releases
```bash
gh api repos/[owner]/[repo]/releases --jq '.[] | select(.published_at > "'"$SINCE"'") | {tag: .tag_name, name: .name, date: .published_at}'
```

## Targets
- **Core**: `weiwei929/mypicoclaw`
- **Other Interests**: As specified by the user.

## Setup
Requires `gh` CLI to be authenticated.

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/weiwei929) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-15 -->

