Versioning
Added in
eventcatalog@3.41.0All content in EventCatalog can be versioned. Versioning an agent lets you keep a historic snapshot whenever the agent's model, tools, or message connections change in a meaningful way.
Version an agent
- Create a
/versioneddirectory inside your agent folder if one does not exist yet. - Create a new folder with the version number you are archiving.
- Example:
/agents/FraudReviewAgent/versioned/0.0.1
- Example:
- Copy
index.mdx(and any other files) into that folder.- Example:
/agents/FraudReviewAgent/versioned/0.0.1/index.mdx - The
versioninside this file should match0.0.1.
- Example:
- Bump the
versionin the rootindex.mdxto the next release.- Example: change
version: 0.0.1toversion: 0.0.2in/agents/FraudReviewAgent/index.mdx.
- Example: change
agents/
FraudReviewAgent/
index.mdx ← current version (0.0.2)
versioned/
0.0.1/
index.mdx ← archived snapshot
Navigate versions
EventCatalog creates version links automatically on every agent page. Users can also navigate directly by adding the version to the URL (e.g. /docs/agents/FraudReviewAgent/0.0.1 loads the 0.0.1 snapshot).
When to version
Consider creating a new version when you:
- Upgrade the underlying LLM to a new model or snapshot.
- Add or remove a tool that changes what the agent can reach.
- Change the messages the agent consumes or produces.
Smaller documentation edits (fixing typos, improving descriptions) do not need a new version.