feat(agent): add subagent ID fields to devcontainers in manifest#21848
Merged
DanielleMaywood merged 2 commits intomainfrom Feb 3, 2026
Merged
feat(agent): add subagent ID fields to devcontainers in manifest#21848DanielleMaywood merged 2 commits intomainfrom
DanielleMaywood merged 2 commits intomainfrom
Conversation
Update the agent protobuf schema (agent/proto/agent.proto) to include: - subagent_id field in WorkspaceAgentDevcontainer message - id field in CreateSubAgentRequest message Bump the Agent API version from v2.7 to v2.8 and update all client references throughout the codebase (ConnectRPC27 -> ConnectRPC28, DRPCAgentClient27 -> DRPCAgentClient28). This is a schema-only change with no functional modifications.
DanielleMaywood
commented
Feb 2, 2026
|
|
||
| repeated DisplayApp display_apps = 6; | ||
|
|
||
| optional bytes id = 7; |
Contributor
Author
There was a problem hiding this comment.
self-review: This id will be used when the sub agent wants to "create"/upsert an agent that already exists.
DanielleMaywood
commented
Feb 2, 2026
| string workspace_folder = 2; | ||
| string config_path = 3; | ||
| string name = 4; | ||
| optional bytes subagent_id = 5; |
Contributor
Author
There was a problem hiding this comment.
self-review: This is optional as it will only be present for "pre-created" dev containers (i.e. devcontainers that have terraform-attached resources)
johnstcn
approved these changes
Feb 3, 2026
- Add some documentation to agent_drpc_old.go - Fix version number in agentsdk.go
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Closes coder/internal#1242
Update the agent protobuf schema (agent/proto/agent.proto) to include:
Bump the Agent API version from v2.7 to v2.8 and update all client references throughout the codebase (ConnectRPC27 -> ConnectRPC28, DRPCAgentClient27 -> DRPCAgentClient28).
This is a schema-only change with no functional modifications.
Functional modifications are coming in a separate PR #21837