designing-real-world-ai-agents-workshop: Skill for Claude Code

.agents/skills/developing-with-streamlit/skills/displaying-streamlit-data/SKILL.md

displaying-streamlit-data is a skill for Claude Code, Codex from iusztinpaul/designing-real-world-ai-agents-workshop. It costs 47 tokens per session (1,603 once invoked), scanned A, original, MIT.

A guide to showing charts, tables, dataframes, and key metrics in Streamlit, a Python tool for building data apps. It covers Streamlit's built-in charts, Altair charts, and table column settings.

In plain words
What is it for?
Use it to display interactive or editable tables, static tables, KPIs, JSON data, line charts, bar charts, scatter plots, area charts, and sparklines.
Why use it?
It helps choose a suitable display for exploration, editing, static viewing, or reporting, while keeping labels understandable. It also reduces the need to build custom visualizations for simple cases.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is iusztinpaul/designing-real-world-ai-agents-workshop's own configuration. It tells Claude Code and Codex how to work on designing-real-world-ai-agents-workshop itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything designing-real-world-ai-agents-workshop configures →

Reuse

Borrowing it

Nothing to install: this file belongs to iusztinpaul/designing-real-world-ai-agents-workshop. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/iusztinpaul/designing-real-world-ai-agents-workshop/main/.agents/skills/developing-with-streamlit/skills/displaying-streamlit-data/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/iusztinpaul/designing-real-world-ai-agents-workshop

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for displaying-streamlit-data

README.md
[![agentmods](https://agentmods.dev/badge/skills/iusztinpaul/designing-real-world-ai-agents-workshop/displaying-streamlit-data/github.svg)](https://agentmods.dev/skills/iusztinpaul/designing-real-world-ai-agents-workshop/displaying-streamlit-data)
Your own site
<a href="https://agentmods.dev/skills/iusztinpaul/designing-real-world-ai-agents-workshop/displaying-streamlit-data"><img src="https://agentmods.dev/badge/skills/iusztinpaul/designing-real-world-ai-agents-workshop/displaying-streamlit-data/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for displaying-streamlit-data

Your own site · 80×15
<a href="https://agentmods.dev/skills/iusztinpaul/designing-real-world-ai-agents-workshop/displaying-streamlit-data"><img src="https://agentmods.dev/badge/skills/iusztinpaul/designing-real-world-ai-agents-workshop/displaying-streamlit-data.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,603 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00047 $0.01603
Opus 5 $0.00023 $0.00801
Sonnet 5 $0.00009 $0.00321
Haiku 4.5 $0.00005 $0.00160

Measured 12d ago against content hash 6bfe721b4756, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

displaying-streamlit-data 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 12d 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.

.agents/skills/developing-with-streamlit/skills/displaying-streamlit-data/SKILL.md · 200 lines

How it starts

The opening of the file, as written. The whole thing — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Streamlit charts & data

Present data clearly.

Choosing display elements

Element Use Case
st.dataframe Interactive exploration, sorting, filtering
st.data_editor User-editable tables
st.table Static display, no interaction needed
st.metric KPIs with delta indicators
st.json Structured data inspection

Native charts first

Prefer Streamlit's native charts for simple cases.

st.line_chart(df, x="date", y="revenue")
st.bar_chart(df, x="category", y="count")
st.scatter_chart(df, x="age", y="salary")
st.area_chart(df, x="date", y="value")

Native charts support additional parameters: color for series grouping, stack for bar/area stacking, size for scatter point sizing, horizontal for horizontal bars. See the chart API reference for full options.

Human-readable labels

Use clear labels—not column names or abbreviations. Skip x_label/y_label if the column names are already readable.

# BAD: cryptic column names without labels
st.line_chart(df, x="dt", y="rev")

# GOOD: readable columns, no labels needed
st.line_chart(df, x="date", y="revenue")

# GOOD: cryptic columns, add labels
st.line_chart(df, x="dt", y="rev", x_label="Date", y_label="Revenue")

Altair for complex charts

Use Altair when you need more control. Altair is bundled with Streamlit (no extra install), while Plotly requires an additional package. Pick one and stay consistent throughout your app.

import altair as alt

chart = alt.Chart(df).mark_line().encode(
    x=alt.X("date:T", title="Date"),
    y=alt.Y("revenue:Q", title="Revenue ($)"),
    color="region:N"
)
st.altair_chart(chart)

When to use Altair:

  • Custom axis formatting
  • Multiple series with legends
  • Interactive tooltips
  • Layered visualizations

Dataframe column configuration

Use column_config where it adds value—formatting currencies, showing progress bars, displaying links or images. Don't add config just for labels or tooltips that don't meaningfully improve readability. Works with both st.dataframe and st.data_editor.

Read the full file on GitHub · 200 lines

Changes

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.

  1. 12d ago First seen · 200 lines · 47 tokens per session scan A 6bfe721b4756

Subscribe to this mod's changes

displaying-streamlit-data is a skill published in the GitHub repository iusztinpaul/designing-real-world-ai-agents-workshop (505 stars, last pushed 3mo ago), licensed MIT. It adds 47 tokens to every session and 1,603 once invoked, about $0.0002 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-08-30.