skills/ascii-skills/ascii-table-renderer/SKILL.md
Render structured data as aligned ASCII tables (column width rules, truncate/wrap, border styles, compact/readable variants) for terminal/log/email.
npx skillsauth add teachingai/agent-skills ascii-table-rendererInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
CRITICAL TRIGGER RULE
ascii-table-renderer.Trigger phrases include:
+ - |.min(maxColWidth, max(contentWidth))... consistentlyscripts/render_table.py: render tables from JSON stdin (compact/readable)Input: headers=["Name", "Role", "Status"], rows=[["Alice", "Engineer", "Active"], ["Bob", "Designer", "Away"]]
tableCompact:
Name Role Status
Alice Engineer Active
Bob Designer Away
tableReadable:
+-------+----------+--------+
| Name | Role | Status |
+-------+----------+--------+
| Alice | Engineer | Active |
| Bob | Designer | Away |
+-------+----------+--------+
examples/basic.md-English: ascii-table-renderer, ascii table, align, columns, rows, truncate, wrap, terminal, log 中文: ascii-table-renderer, ASCII 表格, 对齐, 列宽, 截断, 换行, 终端, 日志, 工单
development
Guidance for Next.js using the official docs at nextjs.org/docs. Use when the user needs Next.js concepts, configuration, routing, data fetching, or API reference details.
tools
Provides comprehensive guidance for Flask framework including routing, templates, forms, database integration, extensions, and deployment. Use when the user asks about Flask, needs to create web applications, implement routes, or build Python web services.
development
Provides comprehensive guidance for FastAPI framework including routing, request validation, dependency injection, async operations, OpenAPI documentation, and database integration. Use when the user asks about FastAPI, needs to create REST APIs, or build high-performance Python web services.
development
Provides comprehensive guidance for Django framework including models, views, templates, forms, admin, REST framework, and deployment. Use when the user asks about Django, needs to create web applications, implement models and views, or build Django REST APIs.