Add star repo onboarding flow (#232)

This commit is contained in:
Nathan Flurry 2026-03-10 23:47:33 -07:00 committed by GitHub
parent d2346bafb3
commit 34a0587cbc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 330 additions and 89 deletions

View file

@ -201,6 +201,17 @@ export const WorkspaceUseInputSchema = z.object({
});
export type WorkspaceUseInput = z.infer<typeof WorkspaceUseInputSchema>;
export const StarSandboxAgentRepoInputSchema = z.object({
workspaceId: WorkspaceIdSchema,
});
export type StarSandboxAgentRepoInput = z.infer<typeof StarSandboxAgentRepoInputSchema>;
export const StarSandboxAgentRepoResultSchema = z.object({
repo: z.string().min(1),
starredAt: z.number().int(),
});
export type StarSandboxAgentRepoResult = z.infer<typeof StarSandboxAgentRepoResultSchema>;
export const HistoryQueryInputSchema = z.object({
workspaceId: WorkspaceIdSchema,
limit: z.number().int().positive().max(500).optional(),