SiYue-ZO
1bc7abfb50
feat(providers): add CommonModels for MiMo provider
...
Add mimo-v2.5 (multimodal) and mimo-v2.5-pro to MiMo's CommonModels so
the WebUI recommends vision-capable models by default. mimo-v2.5 supports
image understanding while mimo-v2.5-pro is text-only.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-21 16:36:41 +08:00
lxowalle
e7e21df354
fix(agent): honor explicit thinking off ( #2898 )
...
* fix(agent): honor explicit thinking off
* fix(agent): address thinking off lint failures
* Clarify unset thinking level display
* fix ci
2026-05-21 11:07:39 +08:00
Mauro
33f9d63862
Merge pull request #2891 from SiYue-ZO/feat/factory-reset
...
feat: add reset to factory defaults
2026-05-20 21:59:38 +02:00
LC
b7db059544
feat(chat,seahorse): persist and display model_name across history ( #2897 )
...
* feat(chat,seahorse): persist and display model_name across history
* test(seahorse): fix lint regressions in repair coverage
* fix(pico): preserve model_name in live updates
* fix(pico): preserve model_name through live stream wrappers
2026-05-20 13:42:21 +08:00
LC
548dc15acd
refactor(models): unify provider metadata around backend catalog ( #2896 )
...
* feat(models): unify provider metadata around backend catalog
- Move shared provider metadata and alias normalization into backend-owned provider catalog
- Expose display, fetch, auth, and default model metadata through /api/models provider_options
- Replace frontend static provider registry with catalog-driven selection, validation, grouping, and fallback rendering
- Treat provider default api_base as placeholder and effective fetch/test base while keep submitted api_base separate from derived defaults
- Add model page retry handling, touched locale updates, and provider metadata assertions in backend tests
* fix(models): canonicalize backend provider aliases and common models
* fix(models): restore deepseek common model recommendations
2026-05-20 11:50:34 +08:00
lxowalle
639b32703a
feat: support streaming ( #2892 )
...
* Support streaming
* fix: stream pico reasoning updates
Route Pico reasoning through the active streamer and hide empty thought placeholders.
* fix: harden configured streaming delivery
* fix ci
* fix split issue
2026-05-19 16:38:47 +08:00
LC
941bac2332
feat(web): add chat detail visibility selector ( #2886 )
2026-05-18 14:50:57 +08:00
SiYue-ZO
3f653161e3
feat(frontend): add factory reset button with confirmation dialog
...
Add resetAppConfig API function, AlertDialog-confirmed factory reset
button in config page, and i18n keys for en/zh/pt-br locales.
2026-05-18 13:53:34 +08:00
SiYue-ZO
f53222f6a4
feat(api): add POST /api/config/reset endpoint
...
Add handleResetConfig handler that calls ResetToDefaults, applies
runtime log level, and restarts the gateway if running.
2026-05-18 13:02:45 +08:00
SiYue-ZO
d61902d42a
feat(config): add ResetToDefaults and CLI config reset command
...
Export MakeBackup for external use, add ResetToDefaults function that
backs up current config, creates defaults, and preserves security
credentials. Add `picoclaw config reset` CLI command with --force flag.
2026-05-18 13:01:39 +08:00
sky5454
cb5d33124c
fix(powershell): windows security enhancement, sec deny powershell encoding bypass via iex inje… ( #2836 )
...
* fix(powershell): sec deny powershell encoding bypass via iex injection.
* fix(exec): security guard bypass fixes for PowerShell/CMD encoding and path traversal
- Split deny patterns into defaultDenyPatterns (all platforms) and
windowsDenyPatterns (Windows-only) to avoid false positives
- Add PowerShell encoding bypass detection:
- [Text.Encoding] and [System.Text.Encoding] variants
- -EncodedCommand short forms (-e, -ec, -enc)
- .GetString([byte[]] with whitespace variations
- FromBase64String decoding
- PowerShell variable = [byte[](...) patterns
- Literal \uXXXX Unicode escape sequences
- Expand PowerShell ($env:VAR) and CMD (%VAR%) environment variables
before workspace path checking to prevent $env:USERPROFILE bypass
- Expand ~ to home directory on Windows
- Add .../.../ path traversal variant detection (blocks .../.../, ..../..../)
- Add symlink/junction resolution before workspace check
- Add Windows path normalization for ADS (file.txt:stream) and
extended-length paths (\?\)
- Add comprehensive tests for all new patterns
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com >
* fix(exec): fix -EncodedCommand regex and rename Windows tests with expanded payloads
- Fix -EncodedCommand regex to match all short forms: -e, -ec, -enc, -en
- Rename Windows-specific tests with TestWindows_ prefix for clarity:
- TestWindows_TildeBypassPrevented
- TestWindows_SymlinkBypassPrevented
- TestWindows_PowerShellEncodingBypass
- Expand test payloads:
- [Text.Encoding]: add UTF8 and Unicode variants
- -EncodedCommand: add -enc and -en forms
- Unicode escape: add multiple \uXXXX forms
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com >
* ci: retest
---------
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-18 10:28:03 +08:00
Mauro
68e572f969
fix(config): make load_image configurable ( #2879 )
2026-05-18 10:17:34 +08:00
LC
57876248e2
feat(provider): add SiliconFlow provider support ( #2885 )
2026-05-18 10:16:09 +08:00
LC
789f907f6d
feat(chat): add independent code block copy and collapse controls ( #2882 )
...
* feat(chat): add independent copy and collapse controls for code blocks
* fix(chat): unify code block rendering styles
* fix(chat): refine code block labels
* feat(chat): highlight tool call code blocks as json
2026-05-18 10:01:39 +08:00
Guoguo
feacd84b84
docs: update wechat qrcode ( #2889 )
2026-05-18 09:50:36 +08:00
肆月
604187e312
feat(web,api): test connection with real connectivity verification ( #2833 )
...
* feat(web,api): add fetch models and saved catalog support
Split from PR #2752 (part 2 of 3).
Backend:
- /api/models/catalog endpoint for browsing remote model catalogs
- /api/models/fetch endpoint for fetching available models from providers
- Credential reuse with provider/API base matching for security
- Default API base resolution for providers without explicit base
Frontend:
- FetchModelsDialog for importing models from remote providers
- CatalogDialog for browsing and importing from model catalogs
- Static import for FetchModelsDialog (replaces dynamic import from PR1)
- Dynamic import retained for TestModelDialog (PR3 territory)
* feat(web,api): add test connection with real connectivity verification
Split from PR #2752 (part 3 of 3).
Backend:
- /api/models/{index}/test endpoint for testing saved model configs
- /api/models/test-inline endpoint for testing unsaved form values
- Real network probe (GET /models) for connectivity verification
- Credential reuse with provider/API base matching for security
- Default API base resolution for providers without explicit base
Frontend:
- TestModelDialog for testing model connectivity
- Inline test support for add/edit model sheets
- Static import for TestModelDialog (replaces dynamic import from PR1)
2026-05-18 09:47:44 +08:00
美電球
0df050ff2e
Merge pull request #2766 from SiYue-ZO/docs/v3-config-format-sync
...
docs: sync all documentation to V3 config format
2026-05-15 22:06:08 +08:00
Mauro
6817aa5311
Merge pull request #2811 from afjcjsbx/fix/mcp-streamable-http-support
...
fix(mcp): support streamable HTTP alias, request-response mode and integration tests
2026-05-15 12:55:58 +02:00
lxowalle
412705783d
fix(pico): preserve image media across pico attachments and client ( #2874 )
...
* fix(pico): preserve image media across pico attachments and client
* * fix ci
* fix(pico): preserve text when client media parsing fails
- Skip non-inline Pico attachment URLs instead of treating them as invalid inline media
- Preserve pico_client text messages when malformed media payloads are received
- Add regression coverage for media.create, download attachments, and invalid media payloads
* fix lint
2026-05-15 15:49:07 +08:00
wenjie
bfb2b35f74
chore: update slack-go to v0.23.1 ( #2875 )
...
Adapt Slack media uploads to the renamed UploadFile API.
2026-05-15 13:58:11 +08:00
wenjie
b225629af8
build(deps): update @tailwindcss/vite to 4.3.0 ( #2876 )
2026-05-15 13:58:09 +08:00
美電球
c62a9bf55b
Merge pull request #2862 from lc6464/fix/mimo-reasoning-history-replay
...
fix(openai_compat): align MiMo reasoning replay with DeepSeek
2026-05-15 12:09:52 +08:00
美電球
f7d25c6546
Merge pull request #2741 from lc6464/fix/deepseek-stream-reasoning-content
...
fix(openai_compat): parse reasoning_content in streaming responses
2026-05-15 12:09:26 +08:00
dependabot[bot]
215d98aa78
build(deps): bump tailwindcss from 4.2.4 to 4.3.0 in /web/frontend ( #2872 )
...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss ) from 4.2.4 to 4.3.0.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/tailwindcss )
---
updated-dependencies:
- dependency-name: tailwindcss
dependency-version: 4.3.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 11:23:13 +08:00
dependabot[bot]
dab8391344
build(deps-dev): bump typescript-eslint in /web/frontend ( #2871 )
...
Bumps [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ) from 8.59.1 to 8.59.3.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.3/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.59.3
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 11:08:46 +08:00
dependabot[bot]
a4abbf62e2
build(deps-dev): bump prettier-plugin-tailwindcss in /web/frontend ( #2870 )
...
Bumps [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss ) from 0.7.2 to 0.8.0.
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.7.2...v0.8.0 )
---
updated-dependencies:
- dependency-name: prettier-plugin-tailwindcss
dependency-version: 0.8.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:58:34 +08:00
dependabot[bot]
8ab455171c
build(deps): bump jotai from 2.19.1 to 2.20.0 in /web/frontend ( #2869 )
...
Bumps [jotai](https://github.com/pmndrs/jotai ) from 2.19.1 to 2.20.0.
- [Release notes](https://github.com/pmndrs/jotai/releases )
- [Commits](https://github.com/pmndrs/jotai/compare/v2.19.1...v2.20.0 )
---
updated-dependencies:
- dependency-name: jotai
dependency-version: 2.20.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:46:39 +08:00
dependabot[bot]
eec4436e64
build(deps): bump github.com/adhocore/gronx from 1.19.6 to 1.19.7 ( #2868 )
...
Bumps [github.com/adhocore/gronx](https://github.com/adhocore/gronx ) from 1.19.6 to 1.19.7.
- [Release notes](https://github.com/adhocore/gronx/releases )
- [Changelog](https://github.com/adhocore/gronx/blob/main/CHANGELOG.md )
- [Commits](https://github.com/adhocore/gronx/compare/v1.19.6...v1.19.7 )
---
updated-dependencies:
- dependency-name: github.com/adhocore/gronx
dependency-version: 1.19.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:31:30 +08:00
dependabot[bot]
dc41c9c566
build(deps): bump golang.org/x/net from 0.53.0 to 0.54.0 ( #2867 )
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.53.0 to 0.54.0.
- [Commits](https://github.com/golang/net/compare/v0.53.0...v0.54.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-version: 0.54.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:21:14 +08:00
dependabot[bot]
2f8429f57c
build(deps): bump github.com/mymmrac/telego from 1.8.0 to 1.9.0 ( #2866 )
...
Bumps [github.com/mymmrac/telego](https://github.com/mymmrac/telego ) from 1.8.0 to 1.9.0.
- [Release notes](https://github.com/mymmrac/telego/releases )
- [Commits](https://github.com/mymmrac/telego/compare/v1.8.0...v1.9.0 )
---
updated-dependencies:
- dependency-name: github.com/mymmrac/telego
dependency-version: 1.9.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:13:57 +08:00
dependabot[bot]
d8385ce0a7
build(deps-dev): bump vite from 8.0.10 to 8.0.13 in /web/frontend ( #2865 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 8.0.10 to 8.0.13.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v8.0.13/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 8.0.13
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:08:02 +08:00
dependabot[bot]
89631b8671
build(deps): bump github.com/larksuite/oapi-sdk-go/v3 ( #2864 )
...
Bumps [github.com/larksuite/oapi-sdk-go/v3](https://github.com/larksuite/oapi-sdk-go ) from 3.6.1 to 3.7.5.
- [Release notes](https://github.com/larksuite/oapi-sdk-go/releases )
- [Changelog](https://github.com/larksuite/oapi-sdk-go/blob/v3_main/changelog.md )
- [Commits](https://github.com/larksuite/oapi-sdk-go/compare/v3.6.1...v3.7.5 )
---
updated-dependencies:
- dependency-name: github.com/larksuite/oapi-sdk-go/v3
dependency-version: 3.7.5
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:06:33 +08:00
dependabot[bot]
4db1168962
build(deps): bump modernc.org/sqlite from 1.48.2 to 1.50.1 ( #2863 )
...
Bumps [modernc.org/sqlite](https://gitlab.com/cznic/sqlite ) from 1.48.2 to 1.50.1.
- [Changelog](https://gitlab.com/cznic/sqlite/blob/master/CHANGELOG.md )
- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.48.2...v1.50.1 )
---
updated-dependencies:
- dependency-name: modernc.org/sqlite
dependency-version: 1.50.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 09:57:11 +08:00
肆月
f6190b54de
feat(web,api): fetch models and saved catalog support ( #2832 )
...
* feat(web,api): add fetch models and saved catalog support
Split from PR #2752 (part 2 of 3).
Backend:
- /api/models/catalog endpoint for browsing remote model catalogs
- /api/models/fetch endpoint for fetching available models from providers
- Credential reuse with provider/API base matching for security
- Default API base resolution for providers without explicit base
Frontend:
- FetchModelsDialog for importing models from remote providers
- CatalogDialog for browsing and importing from model catalogs
- Static import for FetchModelsDialog (replaces dynamic import from PR1)
- Dynamic import retained for TestModelDialog (PR3 territory)
* fix(web,api): support bare-array responses in fetchOpenAICompatibleModels
* fix(web,api): tighten maskAPIKeyValue to match maskAPIKey policy
For 9-12 character keys, maskAPIKeyValue exposed first 4 + last 4
chars (only 1 char masked for a 9-char key). Now uses the same
policy as maskAPIKey: first 3 + last 2 for 9-12 chars, first 3 +
last 4 for longer keys. Adds tests covering all key length boundaries.
2026-05-15 09:49:03 +08:00
lc6464
6ae7dc38b9
fix(openai_compat): align MiMo reasoning replay with DeepSeek
2026-05-14 20:59:01 +08:00
lc6464
10f4466a7e
fix(openai_compat): parse SSE events and reasoning variants in streams
2026-05-14 10:20:01 +08:00
Anton Bogdanovich
794eb04f32
feat(providers): add gemini web search provider ( #2763 )
...
* add gemini web search provider
* fix(web): prefer free providers before Gemini in auto mode
* fix(web): expose gemini api key and model settings
* fix(web): prefer configured providers before Gemini in auto mode
* fix(web): satisfy gemini lint checks
* fix(web): address gemini provider review feedback
* test(web): align auto-provider expectations
* fix(web): let gemini ignore search range
2026-05-14 09:50:47 +08:00
afjcjsbx
ffb8243721
fix(integration): docker runner workspace mounts and go command path
2026-05-13 20:03:55 +02:00
afjcjsbx
ec21ddc222
fix lint
2026-05-13 19:57:38 +02:00
afjcjsbx
ffe091d8b2
docs(cli): mention streamable-http in mcp add transport help
2026-05-13 19:56:08 +02:00
afjcjsbx
4edbc73b64
fix(integration): execute suite commands directly in docker runner
2026-05-13 19:54:32 +02:00
afjcjsbx
ffc8bdba36
fix(mcp): normalize streamable-http before config validation
2026-05-13 19:30:59 +02:00
Mauro
eb0653074b
Merge pull request #2857 from afjcjsbx/feat/edit-file-diff-preview
...
feat(tools): show unified diff for edit_file edits
2026-05-13 09:04:32 +02:00
Guoguo
f62de5c0d4
docs: update wechat qrcode ( #2860 )
2026-05-13 11:24:11 +08:00
afjcjsbx
e0370aafcc
fix test
2026-05-12 23:23:26 +02:00
afjcjsbx
56cca3f12f
fix(tools) limit edit diff preview size for user and model
2026-05-12 23:12:37 +02:00
afjcjsbx
87048499ff
fix(tools) diff preview for files without trailing newline
2026-05-12 23:06:43 +02:00
afjcjsbx
4a81f0e740
feat(tools): show unified diff for edit_file edits
2026-05-12 18:06:47 +02:00
lxowalle
223ebdf0c7
docs: add evolution config controls ( #2852 )
...
* docs: add evolution config controls
* docs: address evolution config review
2026-05-12 11:23:06 +08:00
lxowalle
255a67e2da
docs: add LicheeRV-Claw AliExpress news ( #2854 )
...
* docs: add LicheeRV-Claw AliExpress news
* * update picture
* * update multi-language docs
* * update taobao link for readme.zh.md
2026-05-12 10:18:59 +08:00