From partme-ai-full-stack-skills
Renders structured data as aligned ASCII tables with column width rules, truncate/wrap overflow, border styles, and compact/readable variants for terminal, log, or email output.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
**CRITICAL TRIGGER RULE**
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
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 表格, 对齐, 列宽, 截断, 换行, 终端, 日志, 工单