Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add claude-dev-suite/claude-dev-suite --skill streamlitgit clone --depth 1 https://github.com/claude-dev-suite/claude-dev-suiteWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/claude-dev-suite/claude-dev-suite/streamlit)<a href="https://agentmods.dev/skills/claude-dev-suite/claude-dev-suite/streamlit"><img src="https://agentmods.dev/badge/skills/claude-dev-suite/claude-dev-suite/streamlit.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00107 | $0.01754 |
| Opus 5 | $0.00053 | $0.00877 |
| Sonnet 5 | $0.00021 | $0.00351 |
| Haiku 4.5 | $0.00011 | $0.00175 |
Grade A, and why
streamlit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 281 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Streamlit Core Knowledge
Installation & Run
pip install streamlit
streamlit run app.py
streamlit run app.py --server.port 8080
Core Concepts
App Execution Model
Streamlit re-runs the entire script top-to-bottom on every user interaction. Use caching and session_state to avoid redundant work.
Session State
import streamlit as st
# Initialize (always check first)
if "data" not in st.session_state:
st.session_state.data = []
# Read and write
st.session_state.data.append(item)
st.write(st.session_state.data)
# Callback pattern (preferred for widget interactions)
def on_submit():
st.session_state.result = process(st.session_state.input_val)
st.text_input("Input", key="input_val")
st.button("Submit", on_click=on_submit)
Caching
# @st.cache_data — serializable return values (DataFrames, dicts, lists)
@st.cache_data(ttl=600) # cache expires in 10 min
def load_dataset(path: str) -> pd.DataFrame:
return pd.read_csv(path)
# @st.cache_resource — non-serializable (DB connections, ML models)
@st.cache_resource
def get_model():
return load_ml_model("model.pkl")
# Clear cache programmatically
load_dataset.clear()
Layout & Components
Columns
col1, col2 = st.columns(2) # equal width
col1, col2, col3 = st.columns([3, 1, 1]) # weighted
with col1:
st.metric("Revenue", "$12,345", delta="+5%")
with col2:
st.image("logo.png")
Tabs
tab1, tab2, tab3 = st.tabs(["Overview", "Details", "Export"])
with tab1:
show_overview()
with tab2:
show_details()
Sidebar
with st.sidebar:
selected = st.selectbox("Area", options=["11301", "11090", "27301"])
date_range = st.date_input("Date range", value=(start, end))
Expander
with st.expander("Advanced Options", expanded=False):
threshold = st.slider("Threshold", 0.0, 1.0, 0.5)
Input Widgets
# Text
name = st.text_input("Name", placeholder="Enter tag name")
text = st.text_area("Description", height=100)
# Numbers
n = st.number_input("Count", min_value=0, max_value=1000, value=10, step=1)
ratio = st.slider("Ratio", 0.0, 1.0, 0.5)
# Selection
choice = st.selectbox("Type", ["Motor", "Valve", "Analog"])
choices = st.multiselect("Areas", ["11301", "11090"])
flag = st.checkbox("Include alarms", value=True)
option = st.radio("Export format", ["CSV", "Excel", "JSON"])
# File upload
uploaded = st.file_uploader("Upload Excel", type=["xlsx", "xls"])
if uploaded:
df = pd.read_excel(uploaded)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 281 lines · 107 tokens per session scan A 94c2caef10b4
streamlit is a skill published in the GitHub repository claude-dev-suite/claude-dev-suite (31 stars, last pushed 2d ago), licensed MIT. It adds 107 tokens to every session and 1,754 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
ci-tests
Run the test suite for the current repo, auto-detecting Python (pytest/uv), Node (vitest/pnpm), or Rust (cargo test).
pypi-release
This skill should be used when releasing tunacode-cli to PyPI. It keeps the existing local release checks, then hands the actual PyPI upload to a GitHub Actions workflow that uses the repository's PYPIAPITOKEN secret.
pytorch-training
PyTorch model-building conventions and a neural-net training debug checklist. Use this skill whenever writing or reviewing PyTorch code that defines a model (nn.Linear, nn.Conv2d, BatchNorm) or trains one (training loop, optimizer, LR schedule), and ESPECIALLY when debugging training problems — loss not converging…
pydantic
Python data validation using type hints and runtime type checking with Pydantic v2's Rust-powered core for high-performance validation in FastAPI, Django, and configuration management. Use when working with API request/response validation, settings management, ORM model validation, data parsing and serialization, or…
python-docs
Create, update, and sync Python project documentation from source code. Use when asked to document a module, generate API references, create architecture diagrams with Mermaid, update docs after code changes, or keep documentation in sync with source. Triggers include "document", "write docs", "update docs", "sync…
code-refactor
Refactor Python code to match this repo's coding standards and style. Use when the user asks to "refactor", "clean up", "fix coding standards", or "apply best practices" to a module, file, or directory in this repo. Applies python-best-practices, pydantic v2, pytorch-lightning, and python-docs conventions as relevant…