For AI agents: the complete documentation index is available at https://docs.flezise.com/llms.txt, the full documentation bundle is available at https://docs.flezise.com/llms-full.txt, and this page is available as Markdown at https://docs.flezise.com/artifacts/activity.md.

Activity

The Activity sheet holds three views of what happened to an artifact: the agent's working transcript, the audit event timeline, and LLM call traces. Open it from the artifact overflow menu by choosing Worklog, Events, or Traces. Each choice opens the sheet at that tab; you can switch between tabs without closing and reopening.

Worklog

The Worklog tab shows the agent's transcript for the current artifact. While a generation is running, the tab shows a live feed. After the run completes, it shows the finished transcript so you can review what the agent did and why.

Events

The Events tab shows the artifact's audit event timeline. Each entry records a state change, approval action, version operation, or other lifecycle event. A chain verified badge appears at the top when the hash-chain integrity check passes, confirming the timeline has not been tampered with.

The timeline merges two sources: the stored audit log (GET /artifacts/{id}/timeline) and any agent run events tied to this artifact. Together they give a continuous record from creation through to the current state.

Traces

The Traces tab is labeled Artifact LLM Traces in the sheet header. It lists every generation run that produced output for this artifact, newest first. Each generation run card shows:

FieldWhat it shows
ModelThe model that ran the call
Tokens inNew input tokens sent
Tokens cachedPrompt tokens served from cache
Tokens outOutput tokens generated
CostEstimated spend based on AI gateway pricing
LatencyTime to complete the call

Click a generation run card to open the call detail sheet for that run.

The same traces are reachable from the Agent Cost row in the properties sidebar. Clicking the cost figure opens the Activity sheet at the Traces tab.

Next steps