using-streamlit-cli

Run and configure Streamlit apps via CLI with streamlit run and config options.

Updated Jan 27, 2026
One-click install
npx skills add https://github.com/erickfmm/transformer-encoder-frankestein --skill using-streamlit-cli-erickfmm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: using-streamlit-cli
Source: https://github.com/erickfmm/transformer-encoder-frankestein/tree/main/.agents/skills/developing-with-streamlit/skills/using-streamlit-cli
Command: npx skills add https://github.com/erickfmm/transformer-encoder-frankestein --skill using-streamlit-cli-erickfmm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Streamlined control of Streamlit apps via the CLI to reduce setup time and troubleshooting effort.

Core Features & Use Cases

  • Running Streamlit apps with various entrypoints and options (streamlit run, URL, directory, file)
  • Managing runtime configuration using --server.* options and config.toml recommendations
  • Diagnostics, help, and project scaffolding, including uv-based workflows for reproducible environments
  • Example workflows across local development and CI environments for rapid iteration

Quick Start

Launch your first Streamlit app with uv run streamlit run app.py to automatically create and use a virtual environment.

Frequently Asked Questions about using-streamlit-cli

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a Streamlit app from the command line?

You run a Streamlit app via the CLI by executing streamlit run followed by your app file, URL, or directory path to launch the local development server.

What is the best way to manage Streamlit configuration during local development?

Manage Streamlit configuration by applying --server.* CLI options and config.toml recommendations to control runtime settings for development and troubleshooting.

Can I use uv to run Streamlit apps in a reproducible environment?

Yes, you can run Streamlit apps in a reproducible environment using uv run streamlit run app.py, which automatically creates and uses an isolated virtual environment.

Does the Streamlit CLI support diagnostics and troubleshooting workflows?

Yes, the Streamlit CLI supports diagnostics and troubleshooting workflows through built-in help and diagnostic commands to identify and resolve runtime issues during development.

How do I run Streamlit apps in a CI environment?

Run Streamlit apps in a CI environment by applying streamlit run and config options within your CI pipelines to enable automated testing and rapid iteration.