codexmate 0.0.56 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.md +2 -2
  2. package/README.vi.md +1 -0
  3. package/README.zh.md +2 -2
  4. package/cli/openai-bridge-retry.js +62 -0
  5. package/cli/openai-bridge-runtime.js +1819 -0
  6. package/cli/openai-bridge.js +137 -2048
  7. package/cli.js +749 -133
  8. package/lib/task-orchestrator.js +90 -21
  9. package/lib/task-workspace-chat.js +292 -0
  10. package/package.json +2 -2
  11. package/web-ui/app.js +67 -131
  12. package/web-ui/modules/app.computed.main-tabs.mjs +304 -7
  13. package/web-ui/modules/app.methods.agents.mjs +192 -1
  14. package/web-ui/modules/app.methods.claude-config.mjs +65 -25
  15. package/web-ui/modules/app.methods.navigation.mjs +67 -83
  16. package/web-ui/modules/app.methods.openclaw-editing.mjs +3 -6
  17. package/web-ui/modules/app.methods.providers.mjs +40 -10
  18. package/web-ui/modules/app.methods.session-actions.mjs +1 -12
  19. package/web-ui/modules/app.methods.session-browser.mjs +23 -54
  20. package/web-ui/modules/app.methods.session-trash.mjs +0 -1
  21. package/web-ui/modules/app.methods.startup-claude.mjs +16 -31
  22. package/web-ui/modules/app.methods.task-orchestration.mjs +347 -8
  23. package/web-ui/modules/app.methods.tool-config-permissions.mjs +0 -3
  24. package/web-ui/modules/app.methods.web-ui-preferences.mjs +442 -68
  25. package/web-ui/modules/config-template-confirm-pref.mjs +2 -3
  26. package/web-ui/modules/i18n/locales/en.mjs +181 -30
  27. package/web-ui/modules/i18n/locales/ja.mjs +178 -27
  28. package/web-ui/modules/i18n/locales/vi.mjs +180 -29
  29. package/web-ui/modules/i18n/locales/zh-tw.mjs +181 -30
  30. package/web-ui/modules/i18n/locales/zh.mjs +183 -32
  31. package/web-ui/modules/i18n.mjs +5 -12
  32. package/web-ui/modules/sessions-filters-url.mjs +1 -2
  33. package/web-ui/partials/index/layout-header.html +44 -38
  34. package/web-ui/partials/index/modals-basic.html +26 -0
  35. package/web-ui/partials/index/panel-orchestration.html +489 -282
  36. package/web-ui/partials/index/panel-prompts.html +66 -3
  37. package/web-ui/res/web-ui-render.precompiled.js +1181 -604
  38. package/web-ui/styles/layout-shell.css +157 -1
  39. package/web-ui/styles/modals-core.css +173 -0
  40. package/web-ui/styles/navigation-panels.css +11 -0
  41. package/web-ui/styles/responsive.css +32 -0
  42. package/web-ui/styles/task-orchestration.css +2161 -4
@@ -53,6 +53,19 @@
53
53
  {{ t('field.useBuiltinTransform') }}
54
54
  </label>
55
55
  </div>
56
+ <div class="form-group" v-if="newProvider.useTransform">
57
+ <label class="form-label">{{ t('field.transformMaxRetries') }}</label>
58
+ <input
59
+ v-model.number="newProvider.openaiBridgeMaxRetries"
60
+ type="number"
61
+ min="2"
62
+ max="10"
63
+ step="1"
64
+ :class="['form-input', { invalid: !!providerFieldError('add', 'openaiBridgeMaxRetries') }]"
65
+ @blur="normalizeProviderDraft('add')">
66
+ <div class="form-hint">{{ t('hint.transformMaxRetries') }}</div>
67
+ <div v-if="providerFieldError('add', 'openaiBridgeMaxRetries')" class="form-hint form-error">{{ providerFieldError('add', 'openaiBridgeMaxRetries') }}</div>
68
+ </div>
56
69
 
57
70
  <div class="btn-group">
58
71
  <button class="btn btn-cancel" @click="closeAddModal">{{ t('common.cancel') }}</button>
@@ -91,6 +104,19 @@
91
104
  </button>
92
105
  </div>
93
106
  </div>
107
+ <div class="form-group" v-if="editingProvider.useTransform">
108
+ <label class="form-label">{{ t('field.transformMaxRetries') }}</label>
109
+ <input
110
+ v-model.number="editingProvider.openaiBridgeMaxRetries"
111
+ type="number"
112
+ min="2"
113
+ max="10"
114
+ step="1"
115
+ :class="['form-input', { invalid: !!providerFieldError('edit', 'openaiBridgeMaxRetries') }]"
116
+ @blur="normalizeProviderDraft('edit')">
117
+ <div class="form-hint">{{ t('hint.transformMaxRetries') }}</div>
118
+ <div v-if="providerFieldError('edit', 'openaiBridgeMaxRetries')" class="form-hint form-error">{{ providerFieldError('edit', 'openaiBridgeMaxRetries') }}</div>
119
+ </div>
94
120
 
95
121
  <div class="btn-group">
96
122
  <button class="btn btn-cancel" @click="closeEditModal">{{ t('common.cancel') }}</button>