一键导入
repo-metrics
Track GitHub repo metrics over time — stars, forks, watches, issues, PRs, traffic. JSON storage + trends.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Track GitHub repo metrics over time — stars, forks, watches, issues, PRs, traffic. JSON storage + trends.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Use when: (1) Setting up a team of 2+ agents with different specializations, (2) Defining task routing and lifecycle (inbox → spec → build → review → done), (3) Creating handoff protocols between agents, (4) Establishing review and quality gates, (5) Managing async communication and artifact sharing between agents.
Look up any arxiv paper on alphaxiv.org to get a structured AI-generated overview
Socratic questioning protocol + user communication. MANDATORY for complex requests, new features, or unclear requirements. Includes progress reporting and error handling.
Lighthouse-style efficiency audit for OpenClaw. Scores your instance A+ to F across 6 categories (context injection, cron health, session bloat, config, skills, transcripts). Identifies wasted tokens, bloated sessions, misconfigured crons, and model right-sizing opportunities. Zero dependencies (Python stdlib only).
Make your AI agent learn and improve automatically. Reviews sessions, extracts learnings, updates memory files, and compounds knowledge over time. Set up nightly review loops that make your agent smarter every day.
A multi-agent deliberation hub with 3 core agents and extensible extended agents. Can call user workspace skills when needed.
| name | repo-metrics |
| description | Track GitHub repo metrics over time — stars, forks, watches, issues, PRs, traffic. JSON storage + trends. |
Track GitHub repository metrics over time. Stars, forks, watchers, issues, PRs, traffic data. Store as JSON, generate trend reports.
mkdir -p repo-metrics
cd repo-metrics
touch metrics.json
# Single repo
REPO="adelpro/open-mushaf"
gh api repos/$REPO --jq '{
stars: .stargazers_count,
forks: .forks_count,
watchers: .subscribers_count,
open_issues: .open_issues_count,
language: .language,
updated: .updated_at
}' > metrics/$(date +%Y-%m-%d)-${REPO##*/}.json
# All your repos
gh repo list adelpro --json name,stargazers_count,forks_count,pushed_at --limit 100
# Append daily snapshot to JSONL file
echo $(date -I):$(gh api repos/{owner}/{repo} --jq '.stargazers_count') >> stars-history.jsonl
# Stars growth over last 30 days
cat stars-history.jsonl | \
jq -r 'split(":")[0] + " " + split(":")[1]' | \
awk '{print NR, $2}' | \
gnuplot -e "set terminal png; set output 'stars-trend.png'; plot '-' with lines"
📊 REPO METRICS — Week of March 14-21, 2026
open-mushaf
Stars: 25 (+3 this week)
Forks: 8
Issues: 3 open / 12 closed
open-tarteel
Stars: 21 (+2 this week)
Forks: 5
Issues: 1 open / 4 closed
quran-search-engine
Stars: 13 (+1 this week)
Forks: 3
Issues: 0 open / 7 closed
# Every day at 9 AM
0 9 * * * SKILL:repo-metrics && gh api graphql --paginate ... >> repo-metrics/metrics.jsonl
| Skill | Purpose |
|---|---|
table-image-generator | Render metrics as PNG |
github | GitHub API queries |
weekly-recap | Weekly digest |
github-insights skillgithub skill