Skip to main content

Changelog Entry

Each agent gets its own changelog displayed on a tab of its detail page.

Schema (agent_changelog)

ColumnTypeNotes
idUUIDPK
agentIdUUIDFK → agents
versiontextFree-form, e.g. v1.2.0, 2026-05-14
summarytextOne-paragraph release note
publishedAttimestamptzDisplay sort key (newest first)

Endpoints

VerbPathGuard
GET/agents/:agentId/changelogpublic
POST/agents/:agentId/changelogplatform_admin
DELETE/agents/:agentId/changelog/:entryIdplatform_admin

DTO

type ChangelogEntryDto = {
id: string;
version: string;
summary: string;
publishedAt: string;
};

Conventions

Keep the summary short (≤ 200 chars). The detail page renders the whole list inline. For deep release notes, link out to the agent's external changelog URL (the agents.changelogUrl field).

Not to be confused with

  • Marketplace release notes — the docs site has its own changelog at /12-changelog/release-notes covering the platform itself. Per-agent changelog is separate.