table-output — community table-output, philly-evict, jfish-fishj, community, ai agent skill, ide skills, agent automation, AI agent skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Data Analysis Agents needing advanced table output capabilities in LaTeX and CSV formats. Create and present analysis tables consistently. Use when writing R analysis outputs with coefficients or summary statistics; prefer LaTeX table artifacts on disk and present key numeric results as te

jfish-fishj jfish-fishj
[0]
[0]
Updated: 3/12/2026

Quality Score

Top 5%
48
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add jfish-fishj/philly-evict/table-output
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The table-output skill by jfish-fishj is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Data Analysis Agents needing advanced table output capabilities in LaTeX and CSV formats.

Core Value

Empowers agents to generate machine-readable tables in .csv format and publication-ready tables in .tex format using libraries like fixest, knitr, or gt, while keeping output paths config-driven with p_out(cfg, ...).

Capabilities Granted for table-output

Generating model results in LaTeX tables
Producing group summaries in CSV format
Updating analysis scripts to include table output
Creating publication-ready tables with key meta information

! Prerequisites & Limits

  • Requires R scripting environment
  • Output paths must be config-driven
  • LaTeX output preferred in R scripts
Project
SKILL.md
1.7 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

When to use

  • Produce model results (coefficients, marginal effects, event-study/LP estimates).
  • Produce group summaries (means, shares, counts, rates).
  • Update an analysis script that currently writes only free-form text.

Rules

  • Write a machine-readable table to disk (.csv) and a publication table to disk (.tex).
  • Prefer LaTeX output in R scripts (fixest::etable, knitr::kable, or gt).
  • Keep output paths config-driven (p_out(cfg, ...)), never hardcoded.
  • Include key metadata columns when relevant: sample, spec, outcome, reference group, FE/cluster notes.
  • Keep column names stable and explicit (estimate, std_error, p_value, n_obs).

R patterns

  • Prefer fixest::etable(..., tex = TRUE) for regression tables.
  • Prefer a paired coefficients CSV extracted from summary(model)$coeftable.
  • Use knitr::kable(..., format = "latex", booktabs = TRUE) or gt::as_latex() for non-regression tables.
r
1# Regression table (LaTeX) 2tex_lines <- capture.output(fixest::etable(list(m1, m2), se.below = TRUE, digits = 3, tex = TRUE)) 3writeLines(tex_lines, con = p_out(cfg, "tables", "model_main.tex")) 4 5# Coefficient CSV 6ct <- data.table::as.data.table(summary(m1)$coeftable, keep.rownames = "term") 7data.table::setnames(ct, c("Estimate", "Std. Error", "Pr(>|t|)"), c("estimate", "std_error", "p_value")) 8data.table::fwrite(ct, p_out(cfg, "tables", "model_main_coefficients.csv"))

Terminal presentation

  • Present key results as a compact Markdown table in terminal responses.
  • Show at minimum: term/group, estimate, standard error, p-value, and sample/spec label.
  • State reference category directly above or below the table.
  • Round for readability (typically 3-4 decimals) while preserving sign and significance.

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is table-output?

Perfect for Data Analysis Agents needing advanced table output capabilities in LaTeX and CSV formats. Create and present analysis tables consistently. Use when writing R analysis outputs with coefficients or summary statistics; prefer LaTeX table artifacts on disk and present key numeric results as te

How do I install table-output?

Run the command: npx killer-skills add jfish-fishj/philly-evict/table-output. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for table-output?

Key use cases include: Generating model results in LaTeX tables, Producing group summaries in CSV format, Updating analysis scripts to include table output, Creating publication-ready tables with key meta information.

Which IDEs are compatible with table-output?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for table-output?

Requires R scripting environment. Output paths must be config-driven. LaTeX output preferred in R scripts.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add jfish-fishj/philly-evict/table-output. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use table-output immediately in the current project.

Related Skills

Looking for an alternative to table-output or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
AI

antd-commit-msg

Logo of ant-design
ant-design

Generate a single-line commit message for ant-design by reading the projects git staged area and recent commit style. Use when the user asks for a commit message, says msg, commit msg, 写提交信息, or wants

97.8k
0
Design