← Back to Skills Marketplace
terrycarter1985

Markdown Table Generator

by terrycarter1985 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
41
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install markdown-table-generator
Description
Generate, format, and manipulate Markdown tables with support for alignment, conversion from CSV/TSV, sorting, and transposition. Use when users need to crea...
README (SKILL.md)

Markdown Table Generator

A comprehensive skill for working with Markdown tables, from quick generation to advanced formatting and manipulation.

Quick Start

Generate a Basic Table

For simple data, create a table directly:

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1   | Cell 2   | Cell 3   |
| Cell 4   | Cell 5   | Cell 6   |

Generate from Data

When given raw data (CSV, TSV, or space-separated):

  1. Parse the input data
  2. Detect headers if present
  3. Determine column widths for proper alignment
  4. Generate a nicely formatted table

Example - CSV to Markdown Table:

Input:

Name,Age,City
Alice,30,New York
Bob,25,London
Charlie,35,Tokyo

Output:

| Name    | Age | City     |
|---------|-----|----------|
| Alice   | 30  | New York |
| Bob     | 25  | London   |
| Charlie | 35  | Tokyo    |

Alignment Options

Left Align (Default)

| Name    | Age | City     |
|:--------|:----|:---------|
| Alice   | 30  | New York |

Right Align

| Name    | Age |     City |
|--------:|----:|---------:|
| Alice   |  30 | New York |

Center Align

|  Name   | Age |   City   |
|:-------:|:---:|:--------:|
|  Alice  | 30  | New York |

Common Operations

Add a Row

Insert at any position; default to end of table.

Add a Column

Specify column name and position; default to end.

Remove a Row/Column

Specify by index, header name, or content match.

Sort Rows

Sort by a specific column in ascending or descending order.

Transpose Table

Convert rows to columns and columns to rows.

Best Practices

  1. Column Widths: Always pad cells so pipes align vertically for readability
  2. Headers: Keep headers descriptive and concise
  3. Empty Cells: Use   or leave empty for visual clarity
  4. Consistency: Use the same alignment style throughout a document
  5. Readability: Prefer left-aligned text, right-aligned numbers, centered short values

Conversion to Other Formats

When needed, convert Markdown tables to:

  • CSV
  • TSV
  • HTML \x3Ctable>
  • JSON array of objects

Always preserve data integrity during conversions.

Usage Guidance
This appears safe to use for Markdown table formatting and conversion. As with any table tool, review generated output for accuracy before publishing or relying on it.
Capability Analysis
Type: OpenClaw Skill Name: markdown-table-generator Version: 1.0.0 The skill bundle consists of a metadata file and a markdown instruction file (SKILL.md) for generating and formatting Markdown tables. It contains no executable code, network requests, or instructions to access sensitive data, focusing entirely on text manipulation and data conversion (CSV/TSV to Markdown).
Capability Assessment
Purpose & Capability
The described capabilities—generating, formatting, sorting, transposing, and converting Markdown tables—match the stated purpose.
Instruction Scope
Instructions are limited to manipulating user-provided table data and do not direct the agent to access external systems, override user intent, or perform hidden actions.
Install Mechanism
There is no install spec, no code, no required binaries, and no required environment variables.
Credentials
The skill does not request local file, network, account, credential, or system access.
Persistence & Privilege
No persistence, background behavior, privileged access, or stored memory is described.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install markdown-table-generator
  3. After installation, invoke the skill by name or use /markdown-table-generator
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release - Generate, format, and manipulate Markdown tables with support for alignment, CSV/TSV conversion, sorting, and transposition
Metadata
Slug markdown-table-generator
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Markdown Table Generator?

Generate, format, and manipulate Markdown tables with support for alignment, conversion from CSV/TSV, sorting, and transposition. Use when users need to crea... It is an AI Agent Skill for Claude Code / OpenClaw, with 41 downloads so far.

How do I install Markdown Table Generator?

Run "/install markdown-table-generator" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Markdown Table Generator free?

Yes, Markdown Table Generator is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Markdown Table Generator support?

Markdown Table Generator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Markdown Table Generator?

It is built and maintained by terrycarter1985 (@terrycarter1985); the current version is v1.0.0.

💬 Comments