Community연구 & 데이터 분석github.com

suifeng156/skillport

Cross-platform compatibility tester for Agent Skills — run one SKILL.md on Claude Code, Codex, and Gemini CLI; see where they diverge.

skillport란 무엇인가요?

skillport is a Claude Code agent skill that cross-platform compatibility tester for Agent Skills — run one SKILL.md on Claude Code, Codex, and Gemini CLI; see where they diverge.

지원 대상Claude CodeCodex CLI~CursorGemini CLI
npx skills add suifeng156/skillport

Installed? Explore more 연구 & 데이터 분석 skills: obra/superpowers, affaan-m/quarkus-verification, affaan-m/uspto-database · View all 6 →

즐겨 사용하는 AI에게 물어보기

이 에이전트 스킬이 미리 로드된 새 채팅을 엽니다.

문서

CSV Summarizer

When the user asks you to summarize or profile a CSV file, follow this protocol.

1. Identify the file

If the user names a specific file, use that. Otherwise list .csv files in the working directory and use the most recently modified one. Report the filename you chose.

2. Read and analyze

Read the file (or its first 1000 rows if very large). Compute:

  • Row count — total rows excluding the header.
  • Column count — from the header row.
  • Per-column:
    • Inferred type: integer, decimal, date, boolean, string, or mixed.
    • Distinct value count for low-cardinality columns (< 20 distinct).
    • A representative sample value.
  • Data quality flags — missing values, type inconsistencies inside a column, suspicious outliers, malformed dates, duplicated rows.

3. Report format

Produce a single response with:

  1. A one-line header: csv-summarizer: <filename> (N rows × M columns).
  2. A markdown table of columns: | name | inferred type | sample | notes |.
  3. A short paragraph titled "Data quality" describing any flags found, or "No issues detected" if none.

Do not modify the file. Read-only.

관련 스킬