Persist top-level agent description - #650
Open
bhaveshpatel640 wants to merge 4 commits into
Open
Conversation
🦋 Changeset detectedLatest commit: 44d165f The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
bhaveshpatel640
marked this pull request as ready for review
September 9, 2026 12:56
bhaveshpatel640
requested review from
chiragjn,
debajyoti-truefoundry,
heerambavi1998,
sr07asthana and
thesujai
as code owners
September 9, 2026 12:56
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 6a11cf2. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Persist top-level agent description
Note
Medium Risk
Adds a required API field and DB migration with ServiceFoundry sync changes on create/update; backward-compatible for clients via defaults and backfill, but remote sync behavior changes when description is set.
Overview
Adds a top-level
descriptionon agents (up to 1024 characters, trimmed on create) alongside name and manifest. Create accepts an optional description (defaults to empty); update can change it without resending description when only the manifest changes. Responses and the SDK/OpenAPI types now includedescriptionas a required field onAgent.Storage and migration: Postgres and SQLite gain a non-null
descriptioncolumn; existing rows are backfilled fromname. Agent stores read/write the column on create and patch update.ServiceFoundry sync:
TrueFoundryAgentStoresends the stored description on remote create/update (falling back tonamewhen blank, capped at 1024 chars) instead of always using the agent name. Description-only or manifest+description updates trigger the same remote sync path as manifest-only updates did before.Agent update API docs are broadened from “replaces manifest only” to general agent update wording.
Reviewed by Cursor Bugbot for commit 44d165f. Bugbot is set up for automated code reviews on this repo. Configure here.