addressing-pr-review-c…
Address all valid review comments on a PR for the current branch in the streamlit/streamlit repo. Covers both inline review comments and general PR (issue)…
Generates polished website release notes between two git tags for docs.streamlit.io. Use when preparing a new Streamlit release or reviewing changes between versions.
$ npx -y skills add streamlit/streamlit --skill generating-changelog --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/generating-changelogContext preview
The summary Claude sees to decide when to auto-load this skill.
Generates polished website release notes between two git tags for docs.streamlit.io. Use when preparing a new Streamlit release or reviewing changes between versions.
name: generating-changelog description: Generates polished website release notes between two git tags for docs.streamlit.io. Use when preparing a new Streamlit release or reviewing changes between versions.
Generate publish-ready website changelog (docs.streamlit.io format) between two git tags. Uses PR labels (`impact:users`, `impact:internal`, `change:*`) for categorization and rewrites PR titles into user-friendly descriptions.
The GitHub release changelog is auto-generated from `.github/release.yml` — this skill only produces the website format.
**Usage:** `/generating-changelog <previous-tag> <new-tag>` (e.g., `/generating-changelog 1.44.1 1.45.0`)
If only one tag is given, treat it as the new release tag and fetch the previous tag automatically.
gh api repos/streamlit/streamlit/releases/latest --jq '.tag_name'
git rev-parse -q --verify "refs/tags/<tag>" > /dev/null
This command must succeed (exit code 0) for each tag.
git log -1 --format=%ai <new-tag>
Run the fetch script to extract PR numbers from `git log` and batch-fetch metadata via GitHub GraphQL:
uv run python scripts/changelog_fetch_prs.py <prev-tag> <new-tag>
This produces `work-tmp/pr-data.json` — a JSON array of `{number, title, body, labels, author, related_issues, related_issues_truncated}` objects sorted by PR number. The `body` field contains the first 2500 characters of the PR description.
`related_issues` is sourced from the same batched GraphQL query (no per-PR N+1 requests) and includes linked issue numbers plus 👍 counts:
"related_issues": [{"number": 9836, "thumbs_up": 42}]Run the categorization script to exclude noise and categorize PRs by labels:
uv run python scripts/changelog_categorize_prs.py
This reads `work-tmp/pr-data.json`, applies the following rules, and writes `work-tmp/pr-categorized.json`:
**Excluded:** bot authors, release/version/docstring PRs, internal-only PRs (`impact:internal` without `impact:users` — this includes internal features with `change:*` labels).
**External contributors:** Each non-excluded PR includes an `is_external` boolean field. Authors matching `sfc-gh-*` or a known internal set are marked `is_external: false`; all others are `is_external: true`. The summary output lists external contributors separately — use this to attribute contributions without needing to look up GitHub profiles.
**Script categories** (by label priority: `breaking` > `feature` > `bugfix` > other):
| Label | Script Category | | ----------------------------------- | -------------------- | | `change:breaking` | **Breaking Changes** | | `change:feature` | **New Features** | | `change:bugfix` | **Bug Fixes** | | `impact:users` or unrecognized `change:*` labels | **Other Changes** |
PRs with no `impact:*` or `change:*` labels are flagged as **unlabeled** for user review.
Note: `change:*` labels are typically required by release labeling conventions. The "Other Changes" fallback is a defensive catch-all for `impact:users` PRs and non-standard `change:*` values not covered by `breaking`/`feature`/`bugfix`.
**Important:** These script categories are intermediate groupings for triage. The website changelog does **not** have a "Breaking Changes" or "New Features" section. All entries are mapped into the three website tiers below. Breaking changes, deprecations, and removals fold into Notable Changes or Other Changes with appropriate emojis (see Step 6).
Map into three website tiers:
**Before generating final output**, present a summary to the user:
1. Total PR count and count per category 2. List of PRs proposed for "Highlights" tier — allow user to promote/demote 3. Any unlabeled PRs flagged in Step 3, with suggested classifications 4. For borderline Highlights candidates, consider linked issue 👍 counts from `related_issues` as one prioritization signal (not the only signal) 5. External contributors identified by the script (from the `is_external` field) — verify any edge cases but no need to look up GitHub profiles for `sfc-gh-*` or known internal authors 6. Ask the user to confirm or adjust before proceeding
Note: Internal-only feature PRs (e.g., e2e infra, CI workflows, agent skills) are already excluded by the categorize script. You should not need to manually filter these.
Do NOT proceed to Step 6 until the user confirms.
For each user-facing PR in `work-tmp/pr-categorized.json`, read its `body` field before writing the changelog entry. Use the PR description as the primary source of truth for what actually changed — the title alone can be imprecise. Focus on the opening summary paragraph(s) of the body; ignore che
Repo: streamlit/streamlit
Address all valid review comments on a PR for the current branch in the streamlit/streamlit repo. Covers both inline review comments and general PR (issue)…
Assesses whether branch or PR changes are high-risk for externally hosted or embedded Streamlit usage and recommends whether external e2e coverage with…
Validates all code changes before committing by running format, lint, type, and unit test checks. Use after making backend (Python) or frontend (TypeScript)…
Creates a draft pull request on GitHub with proper labels, branch naming, and description formatting. Use when changes are ready to be submitted as a PR to the…
Debug Streamlit frontend and backend changes using make debug with hot-reload. Use when testing code changes, investigating bugs, checking UI behavior, or…
Lists available make commands for Streamlit development. Use for build, test, lint, or format tasks.