great-tables-1-keep-tables-focused

Sub-skill of great-tables: 1. Keep Tables Focused (+3).

5 stars

Best use case

great-tables-1-keep-tables-focused is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Sub-skill of great-tables: 1. Keep Tables Focused (+3).

Teams using great-tables-1-keep-tables-focused should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/1-keep-tables-focused/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/_archive/data/analysis/great-tables/1-keep-tables-focused/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/1-keep-tables-focused/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How great-tables-1-keep-tables-focused Compares

Feature / Agentgreat-tables-1-keep-tables-focusedStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Sub-skill of great-tables: 1. Keep Tables Focused (+3).

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 1. Keep Tables Focused (+3)

## 1. Keep Tables Focused


```python
# GOOD: Select relevant columns
df_display = df[["Name", "Revenue", "Growth"]]
table = GT(df_display)

# AVOID: Displaying too many columns
# table = GT(df)  # If df has 20+ columns
```


## 2. Use Appropriate Formatting


```python
# GOOD: Match format to data type
table = (
    GT(df)
    .fmt_currency(columns="Price", currency="USD")
    .fmt_percent(columns="Growth", decimals=1)
    .fmt_integer(columns="Units", use_seps=True)
)

# AVOID: Generic number format for everything
```


## 3. Limit Rows for Display


```python
# GOOD: Show summary or top N
df_top10 = df.nlargest(10, "Revenue")
table = GT(df_top10)

# AVOID: Displaying thousands of rows
```


## 4. Use Color Sparingly


```python
# GOOD: Highlight key information
table.data_color(
    columns="Performance",
    palette=["#fee2e2", "#dcfce7"],  # Subtle colors
    domain=[0, 100]
)

# AVOID: Rainbow color schemes
```

Related Skills

periodic-skill-ecosystem-housekeeping-audit

5
from vamseeachanta/workspace-hub

Maintain a deterministic recurring skill ecosystem housekeeping audit covering skill content quality, grouping/taxonomy drift, size, waivers, baselines, and local-only GitHub payloads.

ship-dynamics-6dof-6-seakeeping-analysis

5
from vamseeachanta/workspace-hub

Sub-skill of ship-dynamics-6dof: 6. Seakeeping Analysis.

doc-extraction-naval-architecture-structural-scantling-tables

5
from vamseeachanta/workspace-hub

Sub-skill of doc-extraction-naval-architecture: Structural Scantling Tables.

great-tables-great-tables-with-streamlit

5
from vamseeachanta/workspace-hub

Sub-skill of great-tables: Great Tables with Streamlit (+1).

great-tables-6-footnotes-and-annotations

5
from vamseeachanta/workspace-hub

Sub-skill of great-tables: 6. Footnotes and Annotations (+1).

great-tables-5-grouped-rows-and-columns

5
from vamseeachanta/workspace-hub

Sub-skill of great-tables: 5. Grouped Rows and Columns.

great-tables-4-conditional-formatting

5
from vamseeachanta/workspace-hub

Sub-skill of great-tables: 4. Conditional Formatting.

great-tables-3-styling-and-colors

5
from vamseeachanta/workspace-hub

Sub-skill of great-tables: 3. Styling and Colors.

great-tables-1-basic-table-creation

5
from vamseeachanta/workspace-hub

Sub-skill of great-tables: 1. Basic Table Creation.

test-oversized-skill

5
from vamseeachanta/workspace-hub

A test fixture skill that exceeds 200 lines with multiple H2/H3 sections for split testing.

interactive-report-generator

5
from vamseeachanta/workspace-hub

Generate interactive HTML reports with Plotly visualizations from data analysis results. Supports dashboards, charts, and professional styling.

data-validation-reporter

5
from vamseeachanta/workspace-hub

Generate interactive validation reports with quality scoring, missing data analysis, and type checking. Combines Pandas validation, Plotly visualization, and YAML configuration for comprehensive data quality reporting.