The Streamlit roadmap is a Streamlit app itself 🤯!
The app reads roadmap data from the public
streamlit/streamlit repository:
- Open, dated milestones provide upcoming versions and target release dates.
- Closed, dated milestones and their issues load lazily in a past-releases history.
- The
Plannedmilestone provides other near-term projects. - Open, non-draft pull requests labeled
change:specprovide specs in review. - Issue captions use the generated open-issues summary CSV and are omitted when a generated summary is unavailable.
- Issue title icons use an explicit mapping of every current
feature:andarea:label, with generic feature-request and bug icons as fallbacks.
GitHub data is cached globally for four hours. After expiry, Streamlit serves the cached roadmap while refreshing it in the background.
Create the environment and install dependencies with uv:
uv venv
uv pip install -r requirements.txt
source .venv/bin/activate
streamlit run streamlit_app.pyThe app can read this public data without authentication. For a higher GitHub API
rate limit, add a token to .streamlit/secrets.toml (which is gitignored):
[github]
token = "your-github-token"Check out the deployed app: