Persist top-level agent description - #650
Open
bhaveshpatel640 wants to merge 11 commits into
Open
Conversation
🦋 Changeset detectedLatest commit: 4dee7fe The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
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
bhaveshpatel640
force-pushed
the
AGE-2120
branch
from
September 11, 2026 06:43
44d165f to
0cd3b70
Compare
bhaveshpatel640
force-pushed
the
AGE-2120
branch
from
September 11, 2026 06:57
3e9b8e6 to
a29bca9
Compare
bhaveshpatel640
force-pushed
the
AGE-2120
branch
from
September 11, 2026 07:06
177bee0 to
98fbb22
Compare
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 00210d3. Configure here.
harshil-2096
added this pull request to stack #708
September 11, 2026 09:57
heerambavi1998
approved these changes
Sep 11, 2026
| * } | ||
| */ | ||
| export interface CreateAgentRequest { | ||
| /** Short summary of what the agent does. */ |
Contributor
There was a problem hiding this comment.
don't need comment here
| * } | ||
| */ | ||
| export interface UpdateAgentRequest { | ||
| /** Short summary of what the agent does. */ |
bhaveshpatel640
force-pushed
the
AGE-2120
branch
from
September 11, 2026 11:31
00210d3 to
77664b5
Compare
bhaveshpatel640
removed this pull request from stack #708
September 11, 2026 11:50
bhaveshpatel640
force-pushed
the
AGE-2120
branch
from
September 11, 2026 12:15
1858551 to
4dee7fe
Compare
bhaveshpatel640
added this pull request to stack #712
September 11, 2026 12:19
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
Requires a DB migration and a breaking API/SDK contract on create; ServiceFoundry sync behavior changes on agent create/update, with existing dual-write failure modes still possible.
Overview
Adds a required top-level
descriptionon agents (1–1024 chars, trimmed) across the public API, persistence, and generated SDK. Create must include it; update can change it optionally while still requiring a full manifest replacement.Storage: Postgres and SQLite migrations add a non-null
descriptioncolumn and backfill existing rows fromname. Agent stores read/writedescriptionon create and patch.ServiceFoundry:
TrueFoundryAgentStorenow sends the stored description on remote create/update (falling back tonamewhen blank, capped at 1024) instead of always using the agent name.Breaking API change: Clients must pass
descriptionon agent create; list/get responses include it. OpenAPI, docs, and@truefoundry/trueforge-sdkare regenerated accordingly. Import path setsdescriptionto the imported agent’s name.Reviewed by Cursor Bugbot for commit 4dee7fe. Bugbot is set up for automated code reviews on this repo. Configure here.