ワンクリックで
csv-cleaner
Clean CSV files by trimming whitespace and normalizing column names. WHEN: .
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Clean CSV files by trimming whitespace and normalizing column names. WHEN: .
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Convert local PDF text streams into Markdown bullet points.
Clean CSV files by trimming whitespace and exporting normalized JSON output.
Create, refactor, and package high-quality agent skills with strong trigger metadata, concise SKILL.md instructions, and reusable scripts/references/assets. Use when users ask to build a new skill, improve an existing skill, fix trigger behavior, or prepare a distributable package.
Draft high-clarity internal communication for announcements, incident updates, org changes, all-hands notes, policy rollouts, and leadership messages. Use when users request internal copy for teams or company-wide audiences. Trigger phrases include "internal announcement", "team update", "all-hands", "incident update", "staff update", "org change", and "leadership message".
Design and render visual assets using HTML5 Canvas or node-canvas. Use when users request banners, posters, social graphics, composited images, or canvas-based visuals with explicit dimensions and export formats. Trigger phrases include "canvas design", "html canvas", "draw on canvas", "create banner", "generate graphic", "social image", and "canvas animation".
Extract, normalize, and apply a brand system across UI, docs, and assets. Use when users ask for a brand kit, style guide, design tokens, tone rules, or brand-consistent output. Trigger phrases include "brand guidelines", "brand identity", "brand kit", "style guide", "brand colors", "brand fonts", "design tokens", and "make this on-brand".
| name | csv-cleaner |
| description | Clean CSV files by trimming whitespace and normalizing column names. WHEN: . |
Clean CSV files by trimming whitespace, normalizing column names, removing blank rows, and exporting JSON output.
input_path (string): Path to CSV file to clean (e.g., examples/input.csv)
output_path (string, optional), default=outputs/cleaned.csv: Path where cleaned CSV will be written (e.g., outputs/cleaned.csv)
cleaned_path exists in output payload for success cases.Clean valid CSV file
{
"input_path": "examples/input.csv"
}
Reject missing input file
{
"input_path": "examples/missing.csv"
}
Path traversal attempt (should be blocked)
{
"input_path": "../../../etc/passwd"
}
Empty CSV file
{
"input_path": "examples/empty.csv",
"output_path": "outputs/empty_cleaned.csv"
}