Agent skill

1k-pr-daily-report

Generate a 24-hour PR activity report grouped by module with Chinese summaries. Use when the user asks for PR statistics, daily report, PR summary, or mentions "PR 统计", "每日报告", "PR 汇总", "日报".

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill 1k-pr-daily-report --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/analysis/1k-pr-daily-report/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 24h PR 日报 Generate a PR activity report for the last 24 hours, grouped by module, with Chinese titles and status labels. ## Step 1: Fetch PR data ```bash gh pr list --state all --search "created:>=$(date -v-24H +%Y-%m-%dT%H:%M:%S)" --limit 100 --json number,title,state,isDraft,mergedAt,createdAt,author,labels ``` On Linux, use `date -d '24 hours ago'` instead of `date -v-24H`. ## Step 2: Classify status - **[已完成]**: state is MERGED - **[进行中]**: state is OPEN (regardless of isDraft) ## Step 3: Classify modules Determine the module from the PR title prefix and content: | Module | Matching rules | |--------|---------------| | Desktop | title contains `desktop`, `electron`, `snap`, `serialport` | | iOS | title contains `ios`, `TOCrop`, `EAS` | | Market(行情) | title contains `market` | | Perps(合约交易) | title contains `perps`, `trading` | | 钱包/硬件 | title contains `wallet`, `account`, `keyless`, `pin`, `hardware` | | CI/发布/热更新 | title contains `bundle`, `release`, `workflow`, `ci`, `label` | | Watchlist(关注) | title contains `watchlist`, `watch` | | Refer(推荐) | title contains `refer` | | Network | title contains `network`, `netinfo` | | 依赖/安全 | title contains `bump`, `upgrade`, `security`,

What's inside
Steps it walks through
  1. Step 1: Fetch PR data
  2. Step 2: Classify status
  3. Step 3: Classify modules
  4. Step 4: Output format
Ships with 1 file
  • metadata.json
Commands it runs
gh pr list --state all --search "created:>=$(date -v-24H +%Y-%m-%dT%H:%M:%S)" --limit 100 --json number,title,state,isDraft,mergedAt,createdAt,author,labels
More from claude-skill-registry
All skills →
About this skill
What does the 1k-pr-daily-report skill do?

Generate a 24-hour PR activity report grouped by module with Chinese summaries. Use when the user asks for PR statistics, daily report, PR summary, or mentions "PR 统计", "每日报告", "PR 汇总", "日报".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill 1k-pr-daily-report --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going