ワンクリックで
star-history
Show GitHub star history charts. Triggers on star history, star chart, repo popularity, comparing repos by stars.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Show GitHub star history charts. Triggers on star history, star chart, repo popularity, comparing repos by stars.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when 3+ items each need a decision — claim-by-claim synthesis, accept/reject options, multi-point recommendations, 'decide on each'. Skip if 1-2 items, one narrative, or final answer wanted.
Use when searching or reading works by Buddhadasa Bhikkhu (พุทธทาสภิกขุ). Triggers on mentions of Buddhadasa, พุทธทาส, อินทปัญโญ, สวนโมกข์, ธรรมโฆษณ์, BIA archive, BIA reference codes (BIA-...), or requests to search the Buddhadasa Indapanno Archives.
Read files from a GitHub repo via bash. web_fetch on GitHub will fail.
Use when creating new skills, editing existing skills, or reviewing a SKILL.md
Use when a task is open-ended or the user wants to settle on an approach before producing a deliverable. One question at a time, 2-3 alternatives with recommendation, approval before output.
Fetch a specific past chat by timestamp. Triggers when the user pastes "refer-chat YYYY-MM-DDTHH:MMZ" — a minute-level ISO timestamp from their bookmarklet. Also triggers when the user asks how to install the chat timestamp bookmarklet or how to reference past chats precisely.
| name | star-history |
| description | Show GitHub star history charts. Triggers on star history, star chart, repo popularity, comparing repos by stars. |
Show GitHub repository star history as an inline chart with a link to star-history.com.
Accept repos in any of these formats:
owner/repo → use directlyhttps://github.com/owner/repo → extract owner/repohttps://star-history.com/#owner/repo&Date → extract owner/repohttps://star-history.com/#owner/repo1&owner/repo2&Date → extract multiple reposname when owner equals repo name (e.g., star-history → star-history/star-history)python3 SKILL_DIR/scripts/fetch_stars.py owner/repo [owner/repo2 ...] 2>/dev/null > /tmp/star_data.json
Output: JSON array of {repo, total_stars, stars: [{date, cumulative}]}.
The script samples ~20 evenly-spaced pages from the stargazers API (~40 data points per repo), staying within GitHub's 60 req/hr unauthenticated limit.
Use visualize:show_widget to render a pure SVG chart inline.
IMPORTANT: Chart.js does NOT work in the Visualizer sandbox. Use hand-drawn SVG only.
You can use render_chart.py --svg-only to generate the SVG, or construct it directly. Either way, pass the raw SVG string as widget_code.
python3 SKILL_DIR/scripts/render_chart.py -i /tmp/star_data.json --svg-only
Generate a standalone HTML file and open it in the browser:
python3 SKILL_DIR/scripts/render_chart.py -i /tmp/star_data.json -o star-history.html --open
The --open flag calls webbrowser.open() to launch it. On headless environments, skip --open and tell the user the file path.
Star-history.com URL format:
https://star-history.com/#owner/repo&Datehttps://star-history.com/#owner/repo1&owner/repo2&DateInclude the link:
<a>)If constructing SVG directly instead of using render_chart.py:
viewBox="0 0 700 400", chart area (60,30) to (680,330)<polyline> per repo, <polygon> with gradient fill underneath<a> to star-history.com at bottom-rightColor palette (in order): #534AB7 (purple), #1D9E75 (teal), #D85A30 (coral), #378ADD (blue).