name: streamlit-rebase description: Rebase our custom fork of the Streamlit repository onto new upstream Streamlit release disable-model-invocation: true argument-hint: [new-version]
Rebase the stlite customization branch onto a new upstream Streamlit release.
- Navigate to the
/streamlitsubmodule directory - Fetch the latest tags from upstream:
git fetch upstream --tags - Infer the current base branch such as
stlite-1.44.0-4. Our project naming convention isstlite-[upstream-version](-[customization-version])?. Use this to determine the previous upstream version tag, and ask me to confirm it before proceeding. The base Streamlit version tag can be inferred from the current branch name as well.CURRENT_STLITE_BRANCH="INFERRED_BRANCH_NAME_HERE" CURRENT_BASE_STREAMLIT_VERSION_TAG="INFERRED_TAG_NAME_HERE" - Assume
NEW_BASE_STREAMLIT_VERSION_TAGis the tag name of the new upstream release, e.g.,1.45.0.NEW_BASE_STREAMLIT_VERSION_TAG=$ARGUMENTS - Determine the new stlite customized branch name, e.g.,
stlite-1.45.0.NEW_STLITE_BRANCH=stlite-$ARGUMENTS - Create the new stlite customization branch from the current one:
git checkout -b $NEW_STLITE_BRANCH $CURRENT_STLITE_BRANCH - Rebase onto the new upstream tag:
git rebase --onto $NEW_BASE_STREAMLIT_VERSION_TAG $CURRENT_BASE_STREAMLIT_VERSION_TAG $NEW_STLITE_BRANCH - If conflicts occur:
- Run
git statusto identify conflicting files - Read each conflicting file to understand both versions
- Resolve conflicts by preserving stlite customizations while incorporating upstream changes
- If the conflict is so large, ask the developer for review and help
- Run
git addon resolved files - Continue with
git rebase --continue
- Run
- Repeat until rebase completes
- Verify with
git log --onelinethat customization commits are on top of the new tag
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
1.6k
GitHub Forks
83
Created
Mar 2026
Last Updated
3 months ago
tools
tools automation tools
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!