Awesome-omni-skill jetbrains-marketplace-reviews
Fetch and visualize reviews for any JetBrains Marketplace plugin. Use when (1) analyzing plugin review trends, (2) getting review statistics for a time period, (3) visualizing rating distributions, (4) monitoring user feedback. Triggers on requests like "get JetBrains reviews", "copilot plugin feedback", "JetBrains marketplace reviews", "visualize plugin ratings", "analyze JetBrains plugin reviews".
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data-ai/jetbrains-marketplace-reviews" ~/.claude/skills/diegosouzapw-awesome-omni-skill-jetbrains-marketplace-reviews && rm -rf "$T"
skills/data-ai/jetbrains-marketplace-reviews/SKILL.mdJetBrains Marketplace Reviews Skill
Fetch, analyze, and visualize reviews for any plugin on the JetBrains Marketplace.
Well-Known Plugin IDs
| Plugin | ID | Slug |
|---|---|---|
| GitHub Copilot | | |
| JetBrains AI Assistant | | |
To find the ID of any plugin, open its JetBrains Marketplace page — the numeric ID is in the URL:
https://plugins.jetbrains.com/plugin/{ID}-{slug}
Workflow
- Identify the plugin: Determine the plugin ID from user input (default: 17718 for GitHub Copilot)
- Determine time scope: Parse user input for the desired time range (e.g. "last 2 weeks", "all reviews", "since 2025-06-01")
- Fetch reviews: Run the fetch script with the appropriate flags
- Visualize: Run the visualize script against the fetched JSON
- Report: Present summary statistics and the generated chart to the user
Email Reports
When the user requests an email report or wants charts embedded in HTML:
- Fetch reviews as usual
- Render email charts: Use
to generate an HTML report with base64-encoded PNG chart images. Email clients striprender_email_charts.py
tags, so JavaScript-based charting (Chart.js, Plotly) cannot work. This script uses matplotlib to render charts server-side and embeds them as<script>
— universally supported by email clients.<img src="data:image/png;base64,..."> - Send: Pass the HTML output as the email body via the
skillsend-email
Alternatively, use
visualize_reviews.py --base64 to get individual chart images as a JSON dict for custom HTML assembly.
Reference Scripts
The
scripts/ directory contains reference implementations that the AI agent should invoke directly. The scripts accept CLI arguments so the agent can adapt them to any user request without modifying the source.
fetch_reviews.py
Fetches reviews from the JetBrains Marketplace API with full pagination support. Works with any plugin ID.
# Default: GitHub Copilot, last 3 weeks py .github/skills/jetbrains-marketplace-reviews/scripts/fetch_reviews.py \ --output /path/to/reviews.json # Specific plugin, last N weeks py .github/skills/jetbrains-marketplace-reviews/scripts/fetch_reviews.py \ --plugin-id 22282 --plugin-slug ai-assistant \ --weeks 8 --output /path/to/reviews.json # All reviews from the beginning py .github/skills/jetbrains-marketplace-reviews/scripts/fetch_reviews.py \ --plugin-id 17718 --all --output /path/to/reviews.json # Date range with full content py .github/skills/jetbrains-marketplace-reviews/scripts/fetch_reviews.py \ --since 2025-01-01 --until 2025-06-30 --full-content \ --output /path/to/reviews.json
CLI options:
| Flag | Description | Default |
|---|---|---|
| JetBrains plugin numeric ID | |
| Plugin URL slug (for review links) | |
| Fetch every review (paginated) | off |
| Fetch last N weeks | 3 (when no scope given) |
| Start date filter | none |
| End date filter | none |
| Include author name and comment text | off |
| Output JSON file path | |
visualize_reviews.py
Generates visualization charts from the JSON data. Auto-adapts layout and granularity based on the time span of the data:
| Time Span | Granularity | Layout |
|---|---|---|
| ≤ 30 days | Daily | 4-panel (2×2) |
| ≤ 365 days | Weekly | 4-panel (2×2) |
| > 365 days | Monthly | 6-panel (3×2) |
py .github/skills/jetbrains-marketplace-reviews/scripts/visualize_reviews.py \ --input /path/to/reviews.json --output /path/to/chart.png \ --title "My Plugin" --no-show
CLI options:
| Flag | Description | Default |
|---|---|---|
| Input JSON file | |
| Output PNG file | |
| Plugin name shown in chart titles | |
| Skip interactive display | off |
| Output each chart as base64 PNG (JSON dict) instead of a single image file. For email embedding. | off |
When
--base64 is used, the output is a JSON file (same path but .json extension) containing a dict of {chart_name: base64_png_string} pairs. Use these to build custom HTML emails with inline <img> tags.
render_email_charts.py
Renders all review charts as base64-encoded PNG images and outputs a complete HTML report fragment suitable for embedding in email bodies. This is the recommended approach for email reports since email clients strip
<script> tags (making Chart.js/Plotly unusable).
# Generate email-ready HTML report py .github/skills/jetbrains-marketplace-reviews/scripts/render_email_charts.py \ --input /path/to/reviews.json --output /path/to/report.html \ --title "GitHub Copilot" # Also export individual charts as JSON for custom use py .github/skills/jetbrains-marketplace-reviews/scripts/render_email_charts.py \ --input /path/to/reviews.json --output /path/to/report.html \ --title "GitHub Copilot" --json-output /path/to/charts.json
CLI options:
| Flag | Description | Default |
|---|---|---|
| Input JSON file | |
| Output HTML file | |
| Plugin name shown in titles | |
| Also save chart base64 data as JSON | none |
Charts included:
- Rating Distribution (bar chart)
- Average Rating by Year (bar chart, long-range only)
- Monthly Review Volume (bar chart)
- Monthly Average Rating Trend (line chart with 5-bucket moving avg + neutral line)
- Monthly Rating Breakdown (stacked bar)
- Rolling Average Rating (area chart, when enough data)
- Yearly Summary table, KPI cards, recent feedback tables
The output HTML uses inline styles and
<img src="data:image/png;base64,..."> tags, which are universally supported by email clients (Outlook, Gmail, Apple Mail, etc.).
API Details
GET https://plugins.jetbrains.com/api/plugins/{plugin_id}/comments?size=100&page={page}
- API returns max 100 reviews per page; use
for paginationpage=1,2,3… - Reviews are sorted newest-first
JSON Data Schema
Each review object in the output JSON:
{ "id": 134243, "date": "2026-02-10", "rating": 5, "has_replies": false, "link": "https://plugins.jetbrains.com/plugin/17718-.../reviews#review=134243", "author": "Enes Oscar", "comment": "Overall, it provides a great experience..." }
: 0 = no rating given, 1-5 = star ratingrating
andauthor
are only present whencomment
is used--full-content
Usage Examples
- "Get the last 2 weeks of JetBrains Copilot reviews" →
--plugin-id 17718 --weeks 2 - "Fetch all Copilot JetBrains reviews ever" →
--plugin-id 17718 --all - "Show reviews for JetBrains AI Assistant from January 2025" →
--plugin-id 22282 --plugin-slug ai-assistant --since 2025-01-01 --until 2025-01-31 - "Visualize the rating trend for the last 6 months" →
--weeks 26 - "Analyze recent feedback with full review text" →
--weeks 3 --full-content
Dependencies
- Python 3.x (stdlib only for fetching)
- matplotlib, numpy (for visualization)
- scipy (optional, for trend smoothing)
Install:
py -m pip install matplotlib numpy scipy
Notes
- Reviews with
mean the user left a comment without giving a star ratingrating: 0 - The API rate-limits large batch requests; the fetch script paginates responsibly
- For long ranges, the visualize script automatically switches to monthly aggregation and a 6-panel layout with yearly summaries, stacked breakdowns, and rolling averages