Skip to content

Commit d14ffd4

Browse files
authored
fix(serve): sync E2E baseline capabilities with registry (#4284)
PRs #4249 (workspace memory + agents CRUD) and #4269 (workspace file read routes) added `workspace_memory`, `workspace_agents`, and `workspace_file_read` to `SERVE_CAPABILITY_REGISTRY` and updated the unit-level `EXPECTED_STAGE1_FEATURES` in `packages/cli/src/serve/server.test.ts`, but missed the matching integration-test expectation. The E2E `qwen serve — capabilities envelope > advertises all baseline capabilities` assertion has been failing on `main` since those PRs landed. Append the three tags in the same positions as `SERVE_CAPABILITY_REGISTRY` and the unit-level constant (`workspace_memory` + `workspace_agents` after `workspace_providers`, `workspace_file_read` after `mcp_guardrails`). No production code changes — same shape as #4268.
1 parent 33b2e0d commit d14ffd4

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

integration-tests/cli/qwen-serve-routes.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,16 @@ describe('qwen serve — capabilities envelope', () => {
208208
'workspace_mcp',
209209
'workspace_skills',
210210
'workspace_providers',
211+
'workspace_memory',
212+
'workspace_agents',
211213
'workspace_env',
212214
'workspace_preflight',
213215
'session_context',
214216
'session_supported_commands',
215217
'session_close',
216218
'session_metadata',
217219
'mcp_guardrails',
220+
'workspace_file_read',
218221
]);
219222
});
220223
});

0 commit comments

Comments
 (0)