Skip to content
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
af2a833
fix(daemon): surface AMR OpenCode stall context (#6040)
Siri-Ray Jul 29, 2026
b6b23b7
test(e2e): parallelize restoration group (#6169)
PerishCode Jul 29, 2026
7f5abbd
feat(landing-page): sharpen the Codex agent page for "codex ui" inten…
joeylee12629-star Jul 29, 2026
f9d42f4
Add Clone Audit plugin (#5687)
bestthanapon Jul 29, 2026
00041bc
fix(e2e): bound tools-dev runtime lifecycle (#6204)
PerishCode Jul 29, 2026
30501a2
test(e2e): refresh full-pool UI fixtures (#6211)
PerishCode Jul 29, 2026
7c8c7b7
fix(web): allow skipping required chat questions (#6177)
open-design-crew[bot] Jul 29, 2026
45a3600
docs(tools-pack): add build cache contract (#6207)
PerishCode Jul 29, 2026
7af539b
docs(landing-page): add 0.16.0 release post, localize and re-cover 0.…
joeylee12629-star Jul 29, 2026
809d45f
feat(integrations): add the local Open Design Cloud flow for Codex (#…
open-design-crew[bot] Jul 30, 2026
b323a28
test: strengthen E2E coverage and fixtures (#6150)
AmyShang-alt Jul 30, 2026
4f3a0b3
fix(daemon): continue stalled post-tool sessions (#6237)
Siri-Ray Jul 30, 2026
2097115
fix(tools-pack): carry workspace build key into tarballs (#6235)
PerishCode Jul 30, 2026
8518ec8
fix(amr): recover late login failures and trace auth stages (#5986)
Siri-Ray Jul 30, 2026
176fae3
ci: constrain Actions cache writes (#6270)
PerishCode Jul 30, 2026
9757b25
fix(daemon): auto-mint assistantMessageId when clients omit pin (#6107)
mrcfps Jul 30, 2026
1da4f9e
fix(web): persist browser preview viewport (#4899)
HD-L Jul 30, 2026
4d4a659
fix(daemon): honor Kiro ACP turn completion (#6268)
Siri-Ray Jul 30, 2026
7d7c56a
fix(daemon): isolate plugin-started Local Codex runs (#6273)
open-design-crew[bot] Jul 30, 2026
0d5a972
fix(landing): accept signed Vela team plan leads (#6283)
lefarcen Jul 30, 2026
ebcba70
feat(prompts): introduce on-demand discovery in SP v2.0 (#6223)
open-design-crew[bot] Jul 31, 2026
4a6c2da
fix(web): surface BYOK migration validation errors (#6280)
open-design-crew[bot] Jul 31, 2026
2cbb2e4
fix(ui): improve dark-mode contrast for off-state toggles (#5825)
xxiaoxiong Jul 31, 2026
dac2729
fix(web): keep Azure deployment names editable (#6034)
mturac Jul 31, 2026
0c5f98e
chore(plugin-previews): refresh baked preview manifest (#6293)
open-design-release-bot[bot] Jul 31, 2026
45d1c7f
fix(byok): withdraw Windows DPAPI backend (#6308)
PerishCode Jul 31, 2026
517f39a
fix(web): dismiss stale todo after continuation starts (#6307)
Siri-Ray Jul 31, 2026
3d2b733
Merge main 517f39ac into feat/workspace-team
lefarcen Aug 2, 2026
c1c20b7
Merge feat/workspace-team 4f662dd after main sync
lefarcen Aug 2, 2026
a902042
Merge workspace dashboard scope fix into main sync
lefarcen Aug 2, 2026
56e0c0b
Merge latest workspace viewer fix into main sync
lefarcen Aug 2, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions e2e/ui/entry-chrome-flows.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { readFileSync } from 'node:fs';
import { expect, test } from '@/playwright/suite';
import { ensureRailOpen, openNewProjectModal } from '@/playwright/rail';
import { settingsSurface } from '@/playwright/amr';
import { expectStableCount } from '@/playwright/assertions';
import { openHomeTemplateMenu, pickHomeTemplate } from '@/playwright/home-hero';
import type {
WorkspaceCollabContext,
Expand Down Expand Up @@ -420,9 +421,13 @@ test('[P1] onboarding lands on the home composer without a recommended-start str
await expect(page.getByTestId('home-recommendation')).toHaveCount(0);
await expect(page.getByTestId('home-recommendation-start')).toHaveCount(0);

await page.waitForTimeout(500);
expect(createdBodies).toHaveLength(0);
expect(runBodies).toHaveLength(0);
await expectStableCount(() => createdBodies.length, 0, {
timeout: T.short,
message: 'finishing onboarding should not create a project automatically',
});
await runRequests.expectNone({
message: 'finishing onboarding should not start a run automatically',
});
});

test('[P1] entry top navigation matches the current home tab structure', async ({ page }) => {
Expand Down
Loading