Skip to content

Conversation

@cte
Copy link
Collaborator

@cte cte commented Oct 6, 2025

Important

Add isCloudAgent flag to identify cloud tasks in the extension bridge system.

  • Behavior:
    • Add isCloudAgent flag to CloudService to identify cloud tasks.
    • Set isCloudAgent to true if StaticTokenAuthService is used in CloudService.
  • Bridge System:
    • Add isCloudAgent to BaseChannelOptions and BridgeOrchestratorOptions.
    • Pass isCloudAgent to ExtensionChannel and TaskChannel constructors.
  • Models:
    • Add isCloudAgent to ExtensionInstance schema in cloud.ts.
  • Tests:
    • Update ExtensionChannel.test.ts and TaskChannel.test.ts to include isCloudAgent flag.

This description was created by Ellipsis for ffa5bb7. You can customize this summary. It will automatically update as commits are pushed.

@cte cte requested review from jr and mrubens as code owners October 6, 2025 18:46
@dosubot dosubot bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Oct 6, 2025
@dosubot dosubot bot added the lgtm This PR has been approved by a maintainer label Oct 6, 2025
@hannesrudolph hannesrudolph added the Issue/PR - Triage New issue. Needs quick review to confirm validity and assign labels. label Oct 6, 2025
Copy link
Contributor

@roomote roomote bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found some issues that need attention.

private readonly instanceId: string
private readonly appProperties: StaticAppProperties
private readonly gitProperties?: GitProperties
private readonly isCloudAgent?: boolean
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P0] Type mismatch can break build: isCloudAgent is declared as optional on the class (boolean | undefined) but passed to ExtensionChannel/TaskChannel which require a boolean. This allows undefined to flow into a non-optional parameter and will fail type-checking under strictNullChecks. Recommend aligning the class property with the options type: make it non-optional.

Suggested change
private readonly isCloudAgent?: boolean
private readonly isCloudAgent: boolean

this.socketBridgeUrl = options.socketBridgeUrl
this.token = options.token
this.provider = options.provider
this.instanceId = options.sessionId || crypto.randomUUID()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P3] Minor cleanup: sessionId is now required in BridgeOrchestratorOptions, but the constructor still falls back to crypto.randomUUID(). Since callers must provide sessionId, the fallback is redundant. Consider simplifying to direct assignment for clarity.

Suggested change
this.instanceId = options.sessionId || crypto.randomUUID()
this.instanceId = options.sessionId

Copy link
Contributor

@roomote roomote bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found some issues that need attention.

modes: z.array(z.object({ slug: z.string(), name: z.string() })).optional(),
providerProfile: z.string().optional(),
providerProfiles: z.array(z.object({ name: z.string(), provider: z.string().optional() })).optional(),
isCloudAgent: z.boolean().optional(),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P2] Schema default improves robustness: if older clients omit this field, downstream code can always rely on a concrete boolean. Suggest defaulting to false so the property is present after parsing even when not sent.

Suggested change
isCloudAgent: z.boolean().optional(),
isCloudAgent: z.boolean().optional().default(false),

lastHeartbeat: Date.now(),
task: { taskId: "", taskStatus: TaskStatus.None },
taskHistory: [],
isCloudAgent: this.isCloudAgent,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P3] Durability: you set isCloudAgent on initial registration, but updateInstance relies on spreading the prior object to retain it. To make it future‑proof against refactors that rebuild the object, consider explicitly setting isCloudAgent: this.isCloudAgent inside updateInstance as well.

@cte cte merged commit b011b63 into main Oct 9, 2025
12 checks passed
@cte cte deleted the cte/identify-cloud-tasks branch October 9, 2025 03:54
@github-project-automation github-project-automation bot moved this from New to Done in Roo Code Roadmap Oct 9, 2025
@github-project-automation github-project-automation bot moved this from Triage to Done in Roo Code Roadmap Oct 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Issue/PR - Triage New issue. Needs quick review to confirm validity and assign labels. lgtm This PR has been approved by a maintainer size:M This PR changes 30-99 lines, ignoring generated files.

Projects

Archived in project

Development

Successfully merging this pull request may close these issues.

6 participants