Cloud|

@k2b/ui

Logs

Semantic timestamped log entries with structured metadata.

LogEntriesTable@k2b/ui

Timestamped log entries with semantic levels, sources, messages, and optional structured metadata.

Level
Source (2)
Message
Time
info
build
Package compiled
28 Jul 2026, 09:42
warn
preview
One optional font was not loaded
28 Jul 2026, 09:43

TSX

Copy
<LogEntriesTable entries={entries} />

LogEntriesTable renders application-owned log records with stable timestamp, level, source, message, and metadata columns.

Use logs

Use the table for compact operational evidence. Fetching, filtering, pagination, retention, and permission checks remain application responsibilities.

Import

tsx
import { LogEntriesTable, type LogTableEntry } from "@k2b/ui";

Accessibility

Levels combine text, icon, and color. Messages should remain understandable without opening metadata.

Runtime

Rows render on the server. The component does not fetch or subscribe to logs.

Example

tsx
<LogEntriesTable
  entries={[{
    id: "42",
    level: "warn",
    source: "build",
    message: "Retry scheduled",
    metadata: { attempt: 2 },
    createdAt: "2026-07-28T09:43:00Z",
  }]}
/>

Connect a coding agent

The Cloud skill provides compact working instructions. MCP supplies exact current documentation when details matter.

CLI command
bunx skills add https://docs.example.com

This command installs the working instructions published by this website in the selected coding agent.

For exact, current details, also connect the MCP server through one of the agent tabs.

Installation uses the open-source Vercel Skills CLI.

The skill and MCP complement each other: the skill describes workflows, while MCP supplies current documentation.