Commit Graph

319 Commits

Author SHA1 Message Date
Haitao Pan
59f4baa313 fix: preserve primary bridge auth token 2026-06-18 10:01:19 +08:00
Haitao Pan
de4b71c8a0 fix(settings): update account panel and assistant connection state 2026-06-17 21:01:56 +08:00
Haitao Pan
d546690677 fix: prioritize managed bridge sync state 2026-06-16 06:20:13 +08:00
Haitao Pan
059156c90c feat(assistant): include attachment source paths in gateway prompts 2026-06-12 16:58:24 +08:00
Haitao Pan
d343f34887 chore: remove stale Flutter code 2026-06-12 14:52:23 +08:00
Haitao Pan
15d4a68835 Fix gateway dispatch test pipeline 2026-06-08 15:52:26 +08:00
Haitao Pan
3c2394e848 Stabilize OpenClaw artifact sync 2026-06-08 10:49:09 +08:00
Haitao Pan
a4561b672d fix: accept review bridge token from account sync 2026-06-06 22:08:06 +08:00
Haitao Pan
bf7ea78cc9 fix: unify bridge auth token for desktop connect 2026-06-06 19:24:48 +08:00
Haitao Pan
e7314d48b6 fix: require OpenClaw artifact export before completion 2026-06-06 18:23:05 +08:00
Haitao Pan
38254caa4d fix: keep OpenClaw artifact sync polling 2026-06-06 18:02:13 +08:00
Haitao Pan
5396a682d1 fix: align OpenClaw task key flow 2026-06-06 13:56:03 +08:00
Haitao Pan
941edee480 Merge release/v1.1.4 into main 2026-06-06 11:51:09 +08:00
Haitao Pan
cc7bdca02a refactor: align OpenClaw session key state flow 2026-06-06 11:51:01 +08:00
Haitao Pan
2dab363b68 Merge OpenClaw thin adapter refactor 2026-06-06 07:56:47 +08:00
Haitao Pan
4b6ec9146e Refactor OpenClaw task integration as thin adapter 2026-06-06 07:56:32 +08:00
Haitao Pan
8f8898bc6a refactor: explicitly pass openclawSessionKey in task start 2026-06-06 07:24:59 +08:00
Haitao Pan
1edf6b7b3f refactor/app-thread-key 2026-06-06 06:51:30 +08:00
Haitao Pan
3a548717ba fix(chat): drop root-level expectedArtifactDirs to satisfy chat.send schema
- Remove the unexpected property at the root of gateway task metadata.
  Keep the value nested in xworkmateTaskArtifactContract where the
  OpenClaw chat.send schema allows it (-32002: invalid chat.send params).
- Drop dead local vars and the unused asInt helper in OpenClaw task
  association parsing.
- Remove the obsolete 'sendChatMessage restarts before handling
  OpenClaw artifact guard results' test superseded by the new terminal
  artifact failure test.
2026-06-05 19:12:31 +08:00
Haitao Pan
aeecca0f1c refactor: Remove OpenClaw rigid time limits and false positive no-exported-artifacts judgment 2026-06-05 18:10:34 +08:00
Haitao Pan
596704b6f7 fix: resolve openclaw partial artifacts and eliminate legacy fallback code 2026-06-05 17:30:14 +08:00
Haitao Pan
6219fcd1ee fix: sync openclaw terminal snapshots in app 2026-06-05 17:13:05 +08:00
Haitao Pan
4acc2a6a39 fix(arch): A1-A3 app layer anti-patterns cleanup 2026-06-05 13:05:04 +08:00
Haitao Pan
3b71944c06 fix(webrtc): resolve remote desktop black screen by properly binding remote video tracks and removing legacy Plan B constraints 2026-06-05 12:38:43 +08:00
Cowork 3P
468a2ff088 feat(xworkmate): optimize desktop thread actions and Go task service client 2026-06-05 07:40:25 +08:00
Cowork 3P
8667276894 fix: poll openclaw task handle to terminal snapshot 2026-06-05 06:16:05 +08:00
Cowork 3P
184baf0191 fix: preserve openclaw failure artifacts 2026-06-04 22:59:56 +08:00
Cowork 3P
5fb72adff3 refactor: remove stale runtime fallbacks 2026-06-04 22:38:09 +08:00
Cowork 3P
442fbc5e9f refactor: eliminate dead codex_runtime methods, add anti-fallback policy
codex_runtime.dart (-290 lines):
- Remove 17 dead methods behind UnsupportedError guard
  (findCodexBinary, startStdio, request, startThread, resumeThread,
   sendMessage, interrupt, getAccount, listModels, listSkills, stop,
   dispose, _resolveLaunchConfiguration + 3 @visibleForTesting wrappers)
- Remove 10 dead fields (_process, _state, _pendingRequests, _events, etc.)
- Remove ChangeNotifier mixin (nothing to notify)
- Keep only model types, enums, and standalone helper functions

AGENTS.md (+21 lines):
- Add Fallback and Dead Code Elimination Policy section
- Forbidden: cascading fallbacks, lingering DEPRECATED code,
  dead code behind guards, silent catch blocks, redundant indirection,
  excessive JSON key probing
- Required: inline WHY comments on every retained fallback chain

Additional cleanup:
- gateway_acp_client.dart: remove unused _GatewayAcpSessionUpdate class
- runtime_controllers_entities.dart: replace _canRefreshThroughRuntime
  with runtimeInternal.isConnected
- runtime_models_gateway_entities.dart: relocate CollaborationAttachment
2026-06-04 07:13:29 +00:00
Cowork 3P
cdd80d002a docs: rewrite README — fix repo name, remove stale multi-agent refs, add dependencies
- Title: XWorkmate → xworkmate-app
- Remove references to deleted multi-agent orchestration
- Fix download links: xworkmate.svc.plus → xworkmate-app
- Replace machine-specific /Users/shenlan/... paths with relative links
- Add Dependencies section: xworkmate-bridge, xworkspace-core-skills,
  openclaw-multi-session-plugins, playbooks
- Consolidate Learn More links to repo-relative paths
2026-06-04 07:01:18 +00:00
Cowork 3P
c84843d617 refactor: remove multi-agent orchestration subsystem (Path B)
Remove the entire multi-agent collaboration execution path, including:
- MultiAgentOrchestrator and its 4-phase pipeline (Architect→Engineer→Tester→Iteration)
- ARIS framework preset and mount infrastructure
- Hardcoded model defaults (kimi-k2.5, minimax-m2.7, glm-5)
- Deprecated runCliPromptInternal() and its fallback call chain
- All related types: MultiAgentConfig, AgentWorkerConfig, MultiAgentRole, etc.

This collapses the architecture to a single clean path:
Flutter → GoTaskServiceClient → ACP Transport → Go Bridge → Remote Execution

2886 lines removed across 41 files.
2026-06-04 05:34:58 +00:00
Cowork 3P
49bce7e166 refactor(skills): fix allowErrorPayload validation, improve auto-refresh guard 2026-06-04 04:26:03 +00:00
Cowork 3P
f73dac3449 refactor(skills): clean Path B, add retry + auto-refresh, fix silent failures
- Remove Path B (direct WebSocket RPC), unify skills loading via ACP bridge sessionClient
- Delete skillsStatusPayloadInternal fragile nested-key parsing
- SkillsController: explicit error when offline (no more silent empty), auto-retry with 2s/4s backoff
- Auto-refresh on gateway connect via ChangeNotifier listener
- Gateway connect: concurrent Future.wait for independent controller refreshes
- UI: retry button in skill picker empty/error states
- Clean up skillsController from relayChildChangeInternal listeners
2026-06-04 03:48:29 +00:00
Haitao Pan
f30b1e2eda refactor(ui): eliminate unowned helper sprawl in assistant skill picker 2026-06-04 10:08:02 +08:00
Haitao Pan
008b97b170 fix(runtime): restore skills loading and group rendering 2026-06-04 09:40:16 +08:00
Haitao Pan
9afcfb289e Merge: resolve conflict in gateway_runtime_bridge_skills_test 2026-06-04 09:15:10 +08:00
Haitao Pan
0dce7096d4 fix: WebRTC remote desktop connection, cleanup local fallback, and ignore .gradle cache 2026-06-04 09:12:08 +08:00
Haitao Pan
f5c85d4137 fix: load nested bridge skills status 2026-06-03 16:53:51 +08:00
Haitao Pan
4763a69e3b chore: prepare release v1.1.4 (app store compliance, remote desktop fixes, ci verification) 2026-06-03 15:52:44 +08:00
Haitao Pan
1212f8cb41 feat: Remote Desktop UI and Client WebRTC Integration 2026-06-03 10:50:06 +08:00
Haitao Pan
4bb846c674 Reassociate OpenClaw tasks through Bridge control plane 2026-06-02 11:58:40 +08:00
Haitao Pan
e262ecf247 fix(openclaw): keep long artifact recovery synced 2026-06-02 07:36:05 +08:00
Haitao Pan
78ca2dbd6a fix(openclaw): recover final task snapshots 2026-06-02 04:24:00 +08:00
Haitao Pan
dff3fee221 fix(openclaw): keep artifact runs session scoped 2026-06-02 00:48:56 +08:00
Haitao Pan
9e62cbe0d2 fix: use OpenClaw gateway protocol 4 2026-06-01 13:48:39 +08:00
Haitao Pan
b710d21173 Fix manual bridge save runtime config 2026-06-01 13:11:30 +08:00
Haitao Pan
bc6c2844a2 fix: repair bridge login sync runtime state 2026-06-01 10:02:13 +08:00
Haitao Pan
539888826f fix: isolate openclaw e2e artifacts 2026-05-29 10:41:46 +08:00
Haitao Pan
7797d988d4 chore: prepare v1.1.3 release metadata 2026-05-28 13:20:57 +08:00
Haitao Pan
e8daf436d2 Remove OpenClaw direct ACP route 2026-05-26 11:06:22 +08:00