noora-static-and-styled-tables
Installation
SKILL.md
Noora Static And Styled Tables
Use this skill when a Swift CLI needs tabular output that the user reads but does not navigate interactively.
Plain Table Pattern
import Noora
Noora().table(
headers: ["Setting", "Value", "Source"],
rows: [
["project", "demo-app", "prompt"],
["language", "Swift", "package"],
["ui", "Noora", "dependency"],
]
)