@7n/tauri-components 0.10.0 → 0.10.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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,81 @@
1
+ # Changelog
2
+
3
+ ## [0.10.1] - 2026-07-16
4
+
5
+ ### Changed
6
+
7
+ - chore(lint): дозаповнено cspell-словник, авто-fix markdownlint у docs/
8
+
9
+ ## [0.10.0] - 2026-07-16
10
+
11
+ ### Added
12
+
13
+ - core/acp-agent-presets.js — CODEX_ACP_AGENT_PRESET: спільний для всіх застосунків-споживачів пресет запуску codex через ACP (npx @agentclientprotocol/codex-acp — гола назва "codex-acp" не опублікована), MIN/AVG/MAX тіри за схемою назв релізів codex (gpt-5.6-luna/terra/sol) через CODEX_CONFIG. Експортовано з npm/src/index.js.
14
+
15
+ ## [0.9.0] - 2026-07-15
16
+
17
+ ### Added
18
+
19
+ - core/acp-agent.js — ACP-сесії (spawn/prompt/cancel), стрім session/update у форму runAgent(), перший крок міграції з прямих omlx-викликів на Agent Client Protocol
20
+ - core/acp-kit.js — ACP-версія createAgentKit: класифікація/dispatch домен-каталогу через MCP tools/call (acp://mcp-tool-call), дзеркалення нативних ACP permission-request у той самий pendingApproval-контракт, що і approve()/AuditDialog вже розуміють. Одна активна сесія за раз.
21
+ - vue/use-acp-agent.js — Vue-composабл useAcpAgent(): резолвинг дефолтного агента через ACP_DEFAULT_AGENT (per-машина), MIN/AVG/MAX модель-тіри на пресет (per-агент), запуск domain MCP-моста при loadEnv(). Паралельний до useAgent(), старий шлях не чіпали.
22
+
23
+ ## [0.8.0] - 2026-07-05
24
+
25
+ ### Added
26
+
27
+ - useUpdater() у @7n/tauri-components/vue — спільна перевірка/встановлення оновлень через tauri-plugin-updater з Quasar-діалогом, винесена з mlmail/myshare/myllm/task (усі чотири мали ідентичну копію).
28
+
29
+ ## [0.7.0] - 2026-07-02
30
+
31
+ ### Added
32
+
33
+ - Фолбек на myllm-проксі: loadEnv() у useOmlx пробує `:8088/health` (timeout 400ms, кеш 12с) і, коли проксі живий, веде трафік через нього замість прямого `:8000` — runtime-only override, localStorage і кастомні baseUrl не чіпаються. Нові core-експорти: resolveOmlxBaseUrl / resolveOmlxBaseUrlCached / isDirectOmlxUrl / DIRECT_OMLX_BASE_URL / PROXY_OMLX_BASE_URL.
34
+
35
+ ## [0.6.0] - 2026-06-22
36
+
37
+ ### Changed
38
+
39
+ - Додано пропс promptHint до AgentDialog.vue
40
+
41
+ ## [0.5.0] - 2026-06-19
42
+
43
+ ### Added
44
+
45
+ - testing subpath (mountQuasar/mountWithQuasar vitest helpers); omlx model listing (listOmlxModels/resolveModel) + a model dropdown in AgentDialog populated from the server
46
+
47
+ ## [0.4.1] - 2026-06-19
48
+
49
+ ### Fixed
50
+
51
+ - useOmlx no longer crashes when localStorage is unavailable (component tests / SSR) — guarded reads/writes
52
+
53
+ ## [0.4.0] - 2026-06-19
54
+
55
+ ### Added
56
+
57
+ - createDispatch preserves a backend error.kind on the io envelope; useAgent accepts a transport override (route some tools to JS/OPFS handlers)
58
+
59
+ ## [0.3.0] - 2026-06-16
60
+
61
+ ### Changed
62
+
63
+ - Винесено логіку відображення статусу в StatePill компонент
64
+
65
+ ## [0.2.0] - 2026-06-16
66
+
67
+ ### Changed
68
+
69
+ - journal/omlx commands now invoked as plugin:agent|* — apps must register tauri-plugin-agent and grant agent:default
70
+
71
+ ## [0.1.1] - 2026-06-16
72
+
73
+ ### Fixed
74
+
75
+ - npm provenance: add repository metadata so publish passes sigstore validation
76
+
77
+ ## [0.1.0] - 2026-06-16
78
+
79
+ ### Added
80
+
81
+ - LLM agent engine (createAgentKit, scoped tool surface) + Vue/Quasar UI (AgentDialog, AuditDialog) for Tauri apps
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7n/tauri-components",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "type": "module",
5
5
  "description": "Shared LLM agent engine + Vue/Quasar UI for Tauri apps (chat, journal, trust-tier approval).",
6
6
  "license": "MIT",
@@ -25,6 +25,7 @@
25
25
  "files": [
26
26
  "src",
27
27
  "types",
28
+ "CHANGELOG.md",
28
29
  "!**/*.test.*",
29
30
  "!**/*.spec.*",
30
31
  "!**/__tests__/**",
@@ -17,6 +17,7 @@
17
17
  <q-select
18
18
  v-model="model"
19
19
  :options="models"
20
+ @filter="(_, update) => update()"
20
21
  :loading="modelsLoading"
21
22
  use-input
22
23
  fill-input
@@ -27,7 +28,6 @@
27
28
  outlined
28
29
  label="model"
29
30
  hint="завантажені моделі omlx; можна вписати свою"
30
- @filter="(_, update) => update()"
31
31
  />
32
32
  <q-input v-model="apiKey" dense outlined label="API key" type="password" />
33
33
  <q-separator class="q-my-sm" />