@meshxdata/fops 0.1.52 → 0.1.54

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 (86) hide show
  1. package/CHANGELOG.md +559 -0
  2. package/package.json +2 -6
  3. package/src/agent/agent.js +6 -0
  4. package/src/commands/setup.js +34 -0
  5. package/src/fleet-registry.js +38 -2
  6. package/src/plugins/__test-fixtures__/fake-plugin.js +2 -0
  7. package/src/plugins/__test-fixtures__/no-register-plugin.js +2 -0
  8. package/src/plugins/__test-fixtures__/with-register/index.js +2 -0
  9. package/src/plugins/__test-fixtures__/without-register/index.js +2 -0
  10. package/src/plugins/api.js +4 -0
  11. package/src/plugins/builtins/docker-compose.js +65 -0
  12. package/src/plugins/bundled/fops-plugin-azure/index.js +4 -0
  13. package/src/plugins/bundled/fops-plugin-azure/lib/azure-aks-core.js +44 -53
  14. package/src/plugins/bundled/fops-plugin-azure/lib/azure-aks-storage.js +2 -2
  15. package/src/plugins/bundled/fops-plugin-azure/lib/azure-cost.js +52 -22
  16. package/src/plugins/bundled/fops-plugin-azure/lib/azure-helpers.js +6 -2
  17. package/src/plugins/bundled/fops-plugin-azure/lib/azure-ops.js +113 -7
  18. package/src/plugins/bundled/fops-plugin-azure/lib/azure-provision-init.js +13 -4
  19. package/src/plugins/bundled/fops-plugin-azure/lib/azure-provision.js +91 -14
  20. package/src/plugins/bundled/fops-plugin-azure/lib/azure-service.js +507 -0
  21. package/src/plugins/bundled/fops-plugin-azure/lib/azure-sync.js +146 -7
  22. package/src/plugins/bundled/fops-plugin-azure/lib/azure.js +1 -1
  23. package/src/plugins/bundled/fops-plugin-azure/lib/commands/vm-cmds.js +61 -0
  24. package/src/plugins/bundled/fops-plugin-cloud/api.js +712 -0
  25. package/src/plugins/bundled/fops-plugin-cloud/fops.plugin.json +6 -0
  26. package/src/plugins/bundled/fops-plugin-cloud/index.js +208 -0
  27. package/src/plugins/bundled/fops-plugin-cloud/lib/azure-provider.js +81 -0
  28. package/src/plugins/bundled/fops-plugin-cloud/lib/provider.js +50 -0
  29. package/src/plugins/bundled/fops-plugin-cloud/ui/dist/assets/favicon-C49brna2.svg +15 -0
  30. package/src/plugins/bundled/fops-plugin-cloud/ui/dist/assets/index-CVqQ_kKW.js +65 -0
  31. package/src/plugins/bundled/fops-plugin-cloud/ui/dist/assets/index-DZetahP3.css +1 -0
  32. package/src/plugins/bundled/fops-plugin-cloud/ui/dist/index.html +28 -0
  33. package/src/plugins/bundled/fops-plugin-cloud/ui/index.html +27 -0
  34. package/src/plugins/bundled/fops-plugin-cloud/ui/package-lock.json +2634 -0
  35. package/src/plugins/bundled/fops-plugin-cloud/ui/package.json +29 -0
  36. package/src/plugins/bundled/fops-plugin-cloud/ui/postcss.config.cjs +5 -0
  37. package/src/plugins/bundled/fops-plugin-cloud/ui/src/App.jsx +32 -0
  38. package/src/plugins/bundled/fops-plugin-cloud/ui/src/api/client.js +114 -0
  39. package/src/plugins/bundled/fops-plugin-cloud/ui/src/api/queries.js +111 -0
  40. package/src/plugins/bundled/fops-plugin-cloud/ui/src/components/LogPanel.jsx +162 -0
  41. package/src/plugins/bundled/fops-plugin-cloud/ui/src/components/ThemeToggle.jsx +46 -0
  42. package/src/plugins/bundled/fops-plugin-cloud/ui/src/css/additional-styles/utility-patterns.css +147 -0
  43. package/src/plugins/bundled/fops-plugin-cloud/ui/src/css/style.css +138 -0
  44. package/src/plugins/bundled/fops-plugin-cloud/ui/src/favicon.svg +15 -0
  45. package/src/plugins/bundled/fops-plugin-cloud/ui/src/lib/utils.ts +19 -0
  46. package/src/plugins/bundled/fops-plugin-cloud/ui/src/main.jsx +25 -0
  47. package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/Audit.jsx +164 -0
  48. package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/Costs.jsx +305 -0
  49. package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/CreateResource.jsx +285 -0
  50. package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/Fleet.jsx +307 -0
  51. package/src/plugins/bundled/fops-plugin-cloud/ui/src/pages/Resources.jsx +229 -0
  52. package/src/plugins/bundled/fops-plugin-cloud/ui/src/partials/Header.jsx +132 -0
  53. package/src/plugins/bundled/fops-plugin-cloud/ui/src/partials/Sidebar.jsx +174 -0
  54. package/src/plugins/bundled/fops-plugin-cloud/ui/src/partials/SidebarLinkGroup.jsx +21 -0
  55. package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/AuthContext.jsx +170 -0
  56. package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/Info.jsx +49 -0
  57. package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/ThemeContext.jsx +37 -0
  58. package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/Transition.jsx +116 -0
  59. package/src/plugins/bundled/fops-plugin-cloud/ui/src/utils/Utils.js +63 -0
  60. package/src/plugins/bundled/fops-plugin-cloud/ui/vite.config.js +23 -0
  61. package/src/plugins/bundled/fops-plugin-foundation/test-helpers.js +65 -0
  62. package/src/plugins/loader.js +34 -1
  63. package/src/plugins/registry.js +15 -0
  64. package/src/plugins/schemas.js +17 -0
  65. package/src/project.js +1 -1
  66. package/src/serve.js +196 -2
  67. package/src/shell.js +21 -1
  68. package/src/web/admin.html.js +236 -0
  69. package/src/web/api.js +73 -0
  70. package/src/web/dist/assets/index-BphVaAUd.css +1 -0
  71. package/src/web/dist/assets/index-CSckLzuG.js +129 -0
  72. package/src/web/dist/index.html +2 -2
  73. package/src/web/frontend/index.html +16 -0
  74. package/src/web/frontend/src/App.jsx +445 -0
  75. package/src/web/frontend/src/components/ChatView.jsx +910 -0
  76. package/src/web/frontend/src/components/InputBox.jsx +523 -0
  77. package/src/web/frontend/src/components/Sidebar.jsx +410 -0
  78. package/src/web/frontend/src/components/StatusBar.jsx +37 -0
  79. package/src/web/frontend/src/components/TabBar.jsx +87 -0
  80. package/src/web/frontend/src/hooks/useWebSocket.js +412 -0
  81. package/src/web/frontend/src/index.css +78 -0
  82. package/src/web/frontend/src/main.jsx +6 -0
  83. package/src/web/frontend/vite.config.js +21 -0
  84. package/src/web/server.js +64 -1
  85. package/src/web/dist/assets/index-NXC8Hvnp.css +0 -1
  86. package/src/web/dist/assets/index-QH1N4ejK.js +0 -112
package/CHANGELOG.md CHANGED
@@ -1,3 +1,562 @@
1
+ # Changelog
2
+
3
+ All notable changes to @meshxdata/fops (Foundation Operator CLI) are documented here.
4
+
5
+ ## [0.1.54] - 2026-03-26
6
+
7
+ - feat(azure): add 'fops azure reconcile <name>' command for VM drift fix (79ba6e2)
8
+ - fix(otel,loki): remove duplicate spanmetrics dimensions, use .env for loki S3 creds (e3d1def)
9
+ - fix(loki): pass S3 credentials from .env so loki works without vault-init (c57906d)
10
+ - fix(azure): improve VM provisioning reliability (2ddd669)
11
+ - cluster discovery (009257d)
12
+ - feat(storage): add loki container to provisioning (898c544)
13
+ - feat(azure): add ping command to check backend health (8336825)
14
+ - operator cli bump 0.1.52 (f052cb5)
15
+ - fix(doctor): set KUBECONFIG for k3s kubectl commands (db9359b)
16
+ - fix(azure): move --landscape to test run command, not separate subcommand (4b9b089)
17
+ - feat(azure): add test integration command with landscape support (b2990a0)
18
+ - fix(fleet): skip VMs without public IPs in fleet exec (39acbaa)
19
+ - feat(azure): detect and fix External Secrets identity issues (f907d11)
20
+ - operator cli bump 0.1.51 (db55bdc)
21
+ - feat: add postgres-exporter and Azure tray menu improvements (2a337ac)
22
+ - operator cli plugin fix (4dae908)
23
+ - operator cli plugin fix (25620cc)
24
+ - operator cli test fixes (1d1c18f)
25
+ - feat(test): add setup-users command for QA test user creation (b929507)
26
+ - feat(aks): show HA standby clusters with visual grouping (8fb640c)
27
+ - refactor(provision): extract VM provisioning to dedicated module (af321a7)
28
+ - refactor(provision): extract post-start health checks to dedicated module (6ed5f2d)
29
+ - fix: ping timeout 15s, fix prometheus sed escaping (d11ac14)
30
+ - refactor(vm): extract terraform HCL generation to dedicated module (896a64b)
31
+ - refactor(keyvault): extract key operations to dedicated module (716bbe4)
32
+ - refactor(azure): extract swarm functions to azure-fleet-swarm.js (4690e34)
33
+ - refactor(azure): extract SSH/remote functions to azure-ops-ssh.js (e62b8f0)
34
+ - refactor(azure): split azure-ops.js into smaller modules (4515425)
35
+ - feat(aks): add --ha flag for full cross-region HA setup (ece68c5)
36
+ - feat(fops): inject ENVIRONMENT_NAME on VM provisioning (6ef2a27)
37
+ - fix(postgres): disable SSL mode to fix connection issues (c789ae9)
38
+ - feat(trino): add caching configuration for docker-compose (3668224)
39
+ - fix(fops-azure): run pytest directly instead of missing scripts (29f8410)
40
+ - add -d detach option for local frontend dev, remove hive cpu limits (3306667)
41
+ - release 0.1.49 (dcca32b)
42
+ - release 0.1.48 (9b195e5)
43
+ - stash on updates (2916c01)
44
+ - stash on updates (b5c14df)
45
+ - stash on updates (d0453d1)
46
+ - frontend dev fixes (0ca7b00)
47
+ - fix: update azure test commands (77c81da)
48
+ - default locust to CLI mode, add --web for UI (ca35bff)
49
+ - add locust command for load testing AKS clusters (1278722)
50
+ - update spot node pool default autoscaling to 1-20 (617c182)
51
+ - module for aks (3dd1a61)
52
+ - add hive to PG_SERVICE_DBS for fops pg-setup (afccb16)
53
+ - feat(azure): enhance aks doctor with ExternalSecrets and PGSSLMODE checks (8b14861)
54
+ - add foundation-postgres ExternalName service to reconciler (ea88e11)
55
+ - new flux templates (0e2e372)
56
+ - feat(azure): add storage-engine secrets to Key Vault (a4f488e)
57
+ - feat(azure-aks): add AUTH0_DOMAIN to template rendering variables (216c37e)
58
+ - feat(azure): add storage account creation per cluster (aa1b138)
59
+ - bump watcher (ab24473)
60
+ - fix: concurrent compute calls (#66) (03e2edf)
61
+ - bump backend version (5058ff5)
62
+ - bump fops to 0.1.44 (8c0ef5d)
63
+ - Mlflow and azure plugin fix (176881f)
64
+ - fix lifecycle (a2cb9e7)
65
+ - callback url for localhost (821fb94)
66
+ - disable 4 scaffolding plugin by default. (bfb2b76)
67
+ - jaccard improvements (b7494a0)
68
+ - refactor azure plugin (68dfef4)
69
+ - refactor azure plugin (b24a008)
70
+ - fix trino catalog missing (4928a55)
71
+ - v36 bump and changelog generation on openai (37a0440)
72
+ - v36 bump and changelog generation on openai (a3b02d9)
73
+ - bump (a990058)
74
+ - status bar fix and new plugin for ttyd (27dde1e)
75
+ - file demo and tray (1a3e704)
76
+ - electron app (59ad0bb)
77
+ - compose and fops file plugin (1cf0e81)
78
+ - bump (346ffc1)
79
+ - localhost replaced by 127.0.0.1 (82b9f30)
80
+ - .29 (587b0e1)
81
+ - improve up down and bootstrap script (b79ebaf)
82
+ - checksum (22c8086)
83
+ - checksum (96b434f)
84
+ - checksum (15ed3c0)
85
+ - checksum (8a6543a)
86
+ - bump embed trino linksg (8440504)
87
+ - bump data (765ffd9)
88
+ - bump (cb8b232)
89
+ - broken tests (c532229)
90
+ - release 0.1.18, preflight checks (d902249)
91
+ - fix compute display bug (d10f5d9)
92
+ - cleanup packer files (6330f18)
93
+ - plan mode (cb36a8a)
94
+ - bump to 0.1.16 - agent ui (41ac1a2)
95
+ - bump to 0.1.15 - agent ui (4ebe2e1)
96
+ - bump to 0.1.14 (6c3a7fa)
97
+ - bump to 0.1.13 (8db570f)
98
+ - release 0.1.12 (c1c79e5)
99
+ - bump (11aa3b0)
100
+ - git keep and bump tui (be1678e)
101
+ - skills, index, rrf, compacted context (100k > 10k) (7b2fffd)
102
+ - cloudflare and token consumption, graphs indexing (0ad9eec)
103
+ - bump storage default (22c83ba)
104
+ - storage fix (68a22a0)
105
+ - skills update (7f56500)
106
+ - v9 bump (3864446)
107
+ - bump (c95eedc)
108
+ - rrf (dbf8c95)
109
+ - feat: warning when running predictions (95e8c52)
110
+ - feat: support for local predictions (45cf26b)
111
+ - feat: wip support for predictions + mlflow (3457052)
112
+ - add Reciprocal Rank Fusion (RRF) to knowledge and skill retrieval (61549bc)
113
+ - validate CSV headers in compute_run readiness check (a8c7a43)
114
+ - fix corrupted Iceberg metadata: probe tables + force cleanup on re-apply (50578af)
115
+ - enforce: never use foundation_apply to fix broken products (2e049bf)
116
+ - update SKILL.md with complete tool reference for knowledge retrieval (30b1924)
117
+ - add storage read, input DP table probe, and compute_run improvements (34e6c4c)
118
+ - skills update (1220385)
119
+ - skills update (bb66958)
120
+ - some tui improvement andd tools apply overwrite (e90c35c)
121
+ - skills update (e9227a1)
122
+ - skills update (669c4b3)
123
+ - fix plugin pre-flight checks (f741743)
124
+ - increase agent context (6479aaa)
125
+ - skills and init sql fixes (5fce35e)
126
+ - checksum (3518b56)
127
+ - penging job limit (a139861)
128
+ - checksum (575d28c)
129
+ - bump (92049ba)
130
+ - fix bug per tab status (0a33657)
131
+ - fix bug per tab status (50457c6)
132
+ - checksumming (0ad842e)
133
+ - shot af mardkwon overlapping (51f63b9)
134
+ - add spark dockerfile for multiarch builds (95abbd1)
135
+ - fix plugin initialization (16b9782)
136
+ - split index.js (50902a2)
137
+ - cloudflare cidr (cc4e021)
138
+ - cloduflare restrictions (2f6ba2d)
139
+ - sequential start (86b496e)
140
+ - sequential start (4930fe1)
141
+ - sequential start (353f014)
142
+ - qa tests (2dc6a1a)
143
+ - bump sha for .85 (dc2edfe)
144
+ - preserve env on sudo (7831227)
145
+ - bump sha for .84 (6c052f9)
146
+ - non interactive for azure vms (0aa8a2f)
147
+ - keep .env if present (d072450)
148
+ - bump (7a8e732)
149
+ - ensure opa is on compose if not set (f4a5228)
150
+ - checksum bump (a2ccc20)
151
+ - netrc defensive checks (a0b0ccc)
152
+ - netrc defensive checks (ae37403)
153
+ - checksum (ec45d11)
154
+ - update sync and fix up (7f9af72)
155
+ - expand test for azure and add new per app tag support (388a168)
156
+ - checksum on update (44005fc)
157
+ - cleanup for later (15e5313)
158
+ - cleanup for later (11c9597)
159
+ - switch branch feature (822fecc)
160
+ - add pull (d1c19ab)
161
+ - Bump hono from 4.11.9 to 4.12.0 in /operator-cli (ad25144)
162
+ - tests (f180a9a)
163
+ - cleanup (39c49a3)
164
+ - registry (7b7126a)
165
+ - reconcile kafka (832d0db)
166
+ - gh login bug (025886c)
167
+ - cleanup (bb96cab)
168
+ - strip envs from process (2421180)
169
+ - force use of gh creds not tokens in envs var (fff7787)
170
+ - resolve import between npm installs and npm link (79522e1)
171
+ - fix gh scope and azure states (afd846c)
172
+ - refactoring (da50352)
173
+ - split fops repo (d447638)
174
+ - aks (b791f8f)
175
+ - refactor azure (67d3bad)
176
+ - wildcard (391f023)
177
+ - azure plugin (c074074)
178
+ - zap (d7e6e7f)
179
+ - fix knock (cf89c05)
180
+ - azure (4adec98)
181
+ - Bump tar from 7.5.7 to 7.5.9 in /operator-cli (e41e98e)
182
+ - azure stack index.js split (de12272)
183
+ - Bump ajv from 8.17.1 to 8.18.0 in /operator-cli (76da21f)
184
+ - packer (9665fbc)
185
+ - remove stack api (db0fd4d)
186
+ - packer cleanup (fe1bf14)
187
+
188
+ ## [0.1.45] - 2026-03-12
189
+
190
+ - bump fops to 0.1.44 (8c0ef5d)
191
+ - Mlflow and azure plugin fix (176881f)
192
+ - fix lifecycle (a2cb9e7)
193
+ - callback url for localhost (821fb94)
194
+ - disable 4 scaffolding plugin by default. (bfb2b76)
195
+ - jaccard improvements (b7494a0)
196
+ - refactor azure plugin (68dfef4)
197
+ - refactor azure plugin (b24a008)
198
+ - fix trino catalog missing (4928a55)
199
+ - v36 bump and changelog generation on openai (37a0440)
200
+ - v36 bump and changelog generation on openai (a3b02d9)
201
+ - bump (a990058)
202
+ - status bar fix and new plugin for ttyd (27dde1e)
203
+ - file demo and tray (1a3e704)
204
+ - electron app (59ad0bb)
205
+ - compose and fops file plugin (1cf0e81)
206
+ - bump (346ffc1)
207
+ - localhost replaced by 127.0.0.1 (82b9f30)
208
+ - .29 (587b0e1)
209
+ - improve up down and bootstrap script (b79ebaf)
210
+ - checksum (22c8086)
211
+ - checksum (96b434f)
212
+ - checksum (15ed3c0)
213
+ - checksum (8a6543a)
214
+ - bump embed trino linksg (8440504)
215
+ - bump data (765ffd9)
216
+ - bump (cb8b232)
217
+ - broken tests (c532229)
218
+ - release 0.1.18, preflight checks (d902249)
219
+ - fix compute display bug (d10f5d9)
220
+ - cleanup packer files (6330f18)
221
+ - plan mode (cb36a8a)
222
+ - bump to 0.1.16 - agent ui (41ac1a2)
223
+ - bump to 0.1.15 - agent ui (4ebe2e1)
224
+ - bump to 0.1.14 (6c3a7fa)
225
+ - bump to 0.1.13 (8db570f)
226
+ - release 0.1.12 (c1c79e5)
227
+ - bump (11aa3b0)
228
+ - git keep and bump tui (be1678e)
229
+ - skills, index, rrf, compacted context (100k > 10k) (7b2fffd)
230
+ - cloudflare and token consumption, graphs indexing (0ad9eec)
231
+ - bump storage default (22c83ba)
232
+ - storage fix (68a22a0)
233
+ - skills update (7f56500)
234
+ - v9 bump (3864446)
235
+ - bump (c95eedc)
236
+ - rrf (dbf8c95)
237
+ - feat: warning when running predictions (95e8c52)
238
+ - feat: support for local predictions (45cf26b)
239
+ - feat: wip support for predictions + mlflow (3457052)
240
+ - add Reciprocal Rank Fusion (RRF) to knowledge and skill retrieval (61549bc)
241
+ - validate CSV headers in compute_run readiness check (a8c7a43)
242
+ - fix corrupted Iceberg metadata: probe tables + force cleanup on re-apply (50578af)
243
+ - enforce: never use foundation_apply to fix broken products (2e049bf)
244
+ - update SKILL.md with complete tool reference for knowledge retrieval (30b1924)
245
+ - add storage read, input DP table probe, and compute_run improvements (34e6c4c)
246
+ - skills update (1220385)
247
+ - skills update (bb66958)
248
+ - some tui improvement andd tools apply overwrite (e90c35c)
249
+ - skills update (e9227a1)
250
+ - skills update (669c4b3)
251
+ - fix plugin pre-flight checks (f741743)
252
+ - increase agent context (6479aaa)
253
+ - skills and init sql fixes (5fce35e)
254
+ - checksum (3518b56)
255
+ - penging job limit (a139861)
256
+ - checksum (575d28c)
257
+ - bump (92049ba)
258
+ - fix bug per tab status (0a33657)
259
+ - fix bug per tab status (50457c6)
260
+ - checksumming (0ad842e)
261
+ - shot af mardkwon overlapping (51f63b9)
262
+ - add spark dockerfile for multiarch builds (95abbd1)
263
+ - fix plugin initialization (16b9782)
264
+ - split index.js (50902a2)
265
+ - cloudflare cidr (cc4e021)
266
+ - cloduflare restrictions (2f6ba2d)
267
+ - sequential start (86b496e)
268
+ - sequential start (4930fe1)
269
+ - sequential start (353f014)
270
+ - qa tests (2dc6a1a)
271
+ - bump sha for .85 (dc2edfe)
272
+ - preserve env on sudo (7831227)
273
+ - bump sha for .84 (6c052f9)
274
+ - non interactive for azure vms (0aa8a2f)
275
+ - keep .env if present (d072450)
276
+ - bump (7a8e732)
277
+ - ensure opa is on compose if not set (f4a5228)
278
+ - checksum bump (a2ccc20)
279
+ - netrc defensive checks (a0b0ccc)
280
+ - netrc defensive checks (ae37403)
281
+ - checksum (ec45d11)
282
+ - update sync and fix up (7f9af72)
283
+ - expand test for azure and add new per app tag support (388a168)
284
+ - checksum on update (44005fc)
285
+ - cleanup for later (15e5313)
286
+ - cleanup for later (11c9597)
287
+ - switch branch feature (822fecc)
288
+ - add pull (d1c19ab)
289
+ - Bump hono from 4.11.9 to 4.12.0 in /operator-cli (ad25144)
290
+ - tests (f180a9a)
291
+ - cleanup (39c49a3)
292
+ - registry (7b7126a)
293
+ - reconcile kafka (832d0db)
294
+ - gh login bug (025886c)
295
+ - cleanup (bb96cab)
296
+ - strip envs from process (2421180)
297
+ - force use of gh creds not tokens in envs var (fff7787)
298
+ - resolve import between npm installs and npm link (79522e1)
299
+ - fix gh scope and azure states (afd846c)
300
+ - refactoring (da50352)
301
+ - split fops repo (d447638)
302
+ - aks (b791f8f)
303
+ - refactor azure (67d3bad)
304
+ - wildcard (391f023)
305
+ - azure plugin (c074074)
306
+ - zap (d7e6e7f)
307
+ - fix knock (cf89c05)
308
+ - azure (4adec98)
309
+ - Bump tar from 7.5.7 to 7.5.9 in /operator-cli (e41e98e)
310
+ - azure stack index.js split (de12272)
311
+ - Bump ajv from 8.17.1 to 8.18.0 in /operator-cli (76da21f)
312
+ - packer (9665fbc)
313
+ - remove stack api (db0fd4d)
314
+ - packer cleanup (fe1bf14)
315
+ - force refresh token (3a3d7e2)
316
+ - provision shell (2ad505f)
317
+ - azure vm management (91dcb31)
318
+ - azure specific (2b0cca8)
319
+ - azure packer (12175b8)
320
+ - init hashed pwd (db8523c)
321
+ - packer (5b5c7c4)
322
+ - doctor for azure vm (ed524fa)
323
+ - packer and 1pwd (c6d053e)
324
+ - split big index.js (dc85a1b)
325
+ - kafka volume update (21815ec)
326
+ - fix openai azure tools confirmation and flow (0118cd1)
327
+ - nighly fixx, test fix (5e0d04f)
328
+ - open ai training (cdc494a)
329
+ - openai integration in azure (1ca1475)
330
+ - ci (672cea9)
331
+ - refresh ghcr creds (4220c48)
332
+ - cleaned up version (1a0074f)
333
+ - traefik on ghcr and templates (8e31a05)
334
+ - apply fcl (e78911f)
335
+ - demo landscape (dd205fe)
336
+ - smarter login and schema (1af514f)
337
+ - no down before up unless something broke (56b1132)
338
+ - dai, reconcile failed containers (12907fa)
339
+ - reconcile dead container (7da75e4)
340
+ - defensive around storage buckets dir (b98871d)
341
+ - defensive around storage buckets dir (e86e132)
342
+ - gear in for multiarch (bf3fa3e)
343
+ - up autofix (99c7f89)
344
+ - autofix stale containers on up (43c7d0f)
345
+ - shared sessions fix (5de1359)
346
+ - share sessions between ui and tui (8321391)
347
+ - fix chat view display details (e263996)
348
+ - fix chat view display details (9babdda)
349
+ - tui up fixes (86e9f17)
350
+ - fix commands init (442538b)
351
+ - enable k3s profile (b2dcfc8)
352
+ - test up till job creation (656d388)
353
+ - tui fixes (0599779)
354
+ - cleanup (27731f0)
355
+ - train (90bf559)
356
+ - training (f809bf6)
357
+ - training (ba2b836)
358
+ - training (6fc5267)
359
+ - training (4af8ac9)
360
+ - fix build script (bd82836)
361
+ - infra test (5b79815)
362
+ - infra test (3a0ac05)
363
+ - infra test (e5c67b5)
364
+ - tests (ae7b621)
365
+ - tests (c09ae6a)
366
+ - update tui (4784153)
367
+ - training (0a5a330)
368
+ - tui (df4dd4a)
369
+ - pkg builds (4dc9993)
370
+ - also source env for creds (9a17d8f)
371
+ - fcl support (e8a5743)
372
+
373
+ # Changelog
374
+
375
+ All notable changes to @meshxdata/fops (Foundation Operator CLI) are documented here.
376
+
377
+ ## [0.1.53] - 2026-03-25
378
+
379
+ - cluster discovery (009257d)
380
+ - feat(storage): add loki container to provisioning (898c544)
381
+ - feat(azure): add ping command to check backend health (8336825)
382
+ - operator cli bump 0.1.52 (f052cb5)
383
+ - fix(doctor): set KUBECONFIG for k3s kubectl commands (db9359b)
384
+ - fix(azure): move --landscape to test run command, not separate subcommand (4b9b089)
385
+ - feat(azure): add test integration command with landscape support (b2990a0)
386
+ - fix(fleet): skip VMs without public IPs in fleet exec (39acbaa)
387
+ - feat(azure): detect and fix External Secrets identity issues (f907d11)
388
+ - operator cli bump 0.1.51 (db55bdc)
389
+ - feat: add postgres-exporter and Azure tray menu improvements (2a337ac)
390
+ - operator cli plugin fix (4dae908)
391
+ - operator cli plugin fix (25620cc)
392
+ - operator cli test fixes (1d1c18f)
393
+ - feat(test): add setup-users command for QA test user creation (b929507)
394
+ - feat(aks): show HA standby clusters with visual grouping (8fb640c)
395
+ - refactor(provision): extract VM provisioning to dedicated module (af321a7)
396
+ - refactor(provision): extract post-start health checks to dedicated module (6ed5f2d)
397
+ - fix: ping timeout 15s, fix prometheus sed escaping (d11ac14)
398
+ - refactor(vm): extract terraform HCL generation to dedicated module (896a64b)
399
+ - refactor(keyvault): extract key operations to dedicated module (716bbe4)
400
+ - refactor(azure): extract swarm functions to azure-fleet-swarm.js (4690e34)
401
+ - refactor(azure): extract SSH/remote functions to azure-ops-ssh.js (e62b8f0)
402
+ - refactor(azure): split azure-ops.js into smaller modules (4515425)
403
+ - feat(aks): add --ha flag for full cross-region HA setup (ece68c5)
404
+ - feat(fops): inject ENVIRONMENT_NAME on VM provisioning (6ef2a27)
405
+ - fix(postgres): disable SSL mode to fix connection issues (c789ae9)
406
+ - feat(trino): add caching configuration for docker-compose (3668224)
407
+ - fix(fops-azure): run pytest directly instead of missing scripts (29f8410)
408
+ - add -d detach option for local frontend dev, remove hive cpu limits (3306667)
409
+ - release 0.1.49 (dcca32b)
410
+ - release 0.1.48 (9b195e5)
411
+ - stash on updates (2916c01)
412
+ - stash on updates (b5c14df)
413
+ - stash on updates (d0453d1)
414
+ - frontend dev fixes (0ca7b00)
415
+ - fix: update azure test commands (77c81da)
416
+ - default locust to CLI mode, add --web for UI (ca35bff)
417
+ - add locust command for load testing AKS clusters (1278722)
418
+ - update spot node pool default autoscaling to 1-20 (617c182)
419
+ - module for aks (3dd1a61)
420
+ - add hive to PG_SERVICE_DBS for fops pg-setup (afccb16)
421
+ - feat(azure): enhance aks doctor with ExternalSecrets and PGSSLMODE checks (8b14861)
422
+ - add foundation-postgres ExternalName service to reconciler (ea88e11)
423
+ - new flux templates (0e2e372)
424
+ - feat(azure): add storage-engine secrets to Key Vault (a4f488e)
425
+ - feat(azure-aks): add AUTH0_DOMAIN to template rendering variables (216c37e)
426
+ - feat(azure): add storage account creation per cluster (aa1b138)
427
+ - bump watcher (ab24473)
428
+ - fix: concurrent compute calls (#66) (03e2edf)
429
+ - bump backend version (5058ff5)
430
+ - bump fops to 0.1.44 (8c0ef5d)
431
+ - Mlflow and azure plugin fix (176881f)
432
+ - fix lifecycle (a2cb9e7)
433
+ - callback url for localhost (821fb94)
434
+ - disable 4 scaffolding plugin by default. (bfb2b76)
435
+ - jaccard improvements (b7494a0)
436
+ - refactor azure plugin (68dfef4)
437
+ - refactor azure plugin (b24a008)
438
+ - fix trino catalog missing (4928a55)
439
+ - v36 bump and changelog generation on openai (37a0440)
440
+ - v36 bump and changelog generation on openai (a3b02d9)
441
+ - bump (a990058)
442
+ - status bar fix and new plugin for ttyd (27dde1e)
443
+ - file demo and tray (1a3e704)
444
+ - electron app (59ad0bb)
445
+ - compose and fops file plugin (1cf0e81)
446
+ - bump (346ffc1)
447
+ - localhost replaced by 127.0.0.1 (82b9f30)
448
+ - .29 (587b0e1)
449
+ - improve up down and bootstrap script (b79ebaf)
450
+ - checksum (22c8086)
451
+ - checksum (96b434f)
452
+ - checksum (15ed3c0)
453
+ - checksum (8a6543a)
454
+ - bump embed trino linksg (8440504)
455
+ - bump data (765ffd9)
456
+ - bump (cb8b232)
457
+ - broken tests (c532229)
458
+ - release 0.1.18, preflight checks (d902249)
459
+ - fix compute display bug (d10f5d9)
460
+ - cleanup packer files (6330f18)
461
+ - plan mode (cb36a8a)
462
+ - bump to 0.1.16 - agent ui (41ac1a2)
463
+ - bump to 0.1.15 - agent ui (4ebe2e1)
464
+ - bump to 0.1.14 (6c3a7fa)
465
+ - bump to 0.1.13 (8db570f)
466
+ - release 0.1.12 (c1c79e5)
467
+ - bump (11aa3b0)
468
+ - git keep and bump tui (be1678e)
469
+ - skills, index, rrf, compacted context (100k > 10k) (7b2fffd)
470
+ - cloudflare and token consumption, graphs indexing (0ad9eec)
471
+ - bump storage default (22c83ba)
472
+ - storage fix (68a22a0)
473
+ - skills update (7f56500)
474
+ - v9 bump (3864446)
475
+ - bump (c95eedc)
476
+ - rrf (dbf8c95)
477
+ - feat: warning when running predictions (95e8c52)
478
+ - feat: support for local predictions (45cf26b)
479
+ - feat: wip support for predictions + mlflow (3457052)
480
+ - add Reciprocal Rank Fusion (RRF) to knowledge and skill retrieval (61549bc)
481
+ - validate CSV headers in compute_run readiness check (a8c7a43)
482
+ - fix corrupted Iceberg metadata: probe tables + force cleanup on re-apply (50578af)
483
+ - enforce: never use foundation_apply to fix broken products (2e049bf)
484
+ - update SKILL.md with complete tool reference for knowledge retrieval (30b1924)
485
+ - add storage read, input DP table probe, and compute_run improvements (34e6c4c)
486
+ - skills update (1220385)
487
+ - skills update (bb66958)
488
+ - some tui improvement andd tools apply overwrite (e90c35c)
489
+ - skills update (e9227a1)
490
+ - skills update (669c4b3)
491
+ - fix plugin pre-flight checks (f741743)
492
+ - increase agent context (6479aaa)
493
+ - skills and init sql fixes (5fce35e)
494
+ - checksum (3518b56)
495
+ - penging job limit (a139861)
496
+ - checksum (575d28c)
497
+ - bump (92049ba)
498
+ - fix bug per tab status (0a33657)
499
+ - fix bug per tab status (50457c6)
500
+ - checksumming (0ad842e)
501
+ - shot af mardkwon overlapping (51f63b9)
502
+ - add spark dockerfile for multiarch builds (95abbd1)
503
+ - fix plugin initialization (16b9782)
504
+ - split index.js (50902a2)
505
+ - cloudflare cidr (cc4e021)
506
+ - cloduflare restrictions (2f6ba2d)
507
+ - sequential start (86b496e)
508
+ - sequential start (4930fe1)
509
+ - sequential start (353f014)
510
+ - qa tests (2dc6a1a)
511
+ - bump sha for .85 (dc2edfe)
512
+ - preserve env on sudo (7831227)
513
+ - bump sha for .84 (6c052f9)
514
+ - non interactive for azure vms (0aa8a2f)
515
+ - keep .env if present (d072450)
516
+ - bump (7a8e732)
517
+ - ensure opa is on compose if not set (f4a5228)
518
+ - checksum bump (a2ccc20)
519
+ - netrc defensive checks (a0b0ccc)
520
+ - netrc defensive checks (ae37403)
521
+ - checksum (ec45d11)
522
+ - update sync and fix up (7f9af72)
523
+ - expand test for azure and add new per app tag support (388a168)
524
+ - checksum on update (44005fc)
525
+ - cleanup for later (15e5313)
526
+ - cleanup for later (11c9597)
527
+ - switch branch feature (822fecc)
528
+ - add pull (d1c19ab)
529
+ - Bump hono from 4.11.9 to 4.12.0 in /operator-cli (ad25144)
530
+ - tests (f180a9a)
531
+ - cleanup (39c49a3)
532
+ - registry (7b7126a)
533
+ - reconcile kafka (832d0db)
534
+ - gh login bug (025886c)
535
+ - cleanup (bb96cab)
536
+ - strip envs from process (2421180)
537
+ - force use of gh creds not tokens in envs var (fff7787)
538
+ - resolve import between npm installs and npm link (79522e1)
539
+ - fix gh scope and azure states (afd846c)
540
+ - refactoring (da50352)
541
+ - split fops repo (d447638)
542
+ - aks (b791f8f)
543
+ - refactor azure (67d3bad)
544
+ - wildcard (391f023)
545
+ - azure plugin (c074074)
546
+ - zap (d7e6e7f)
547
+ - fix knock (cf89c05)
548
+ - azure (4adec98)
549
+ - Bump tar from 7.5.7 to 7.5.9 in /operator-cli (e41e98e)
550
+ - azure stack index.js split (de12272)
551
+ - Bump ajv from 8.17.1 to 8.18.0 in /operator-cli (76da21f)
552
+ - packer (9665fbc)
553
+ - remove stack api (db0fd4d)
554
+ - packer cleanup (fe1bf14)
555
+ - force refresh token (3a3d7e2)
556
+ - provision shell (2ad505f)
557
+ - azure vm management (91dcb31)
558
+ - azure specific (2b0cca8)
559
+
1
560
  ## [0.1.52] - 2026-03-24
2
561
 
3
562
  - fix(doctor): set KUBECONFIG for k3s kubectl commands (db9359b)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshxdata/fops",
3
- "version": "0.1.52",
3
+ "version": "0.1.54",
4
4
  "description": "CLI to install and manage data mesh platforms",
5
5
  "keywords": [
6
6
  "fops",
@@ -17,11 +17,7 @@
17
17
  "fops.mjs",
18
18
  "src/",
19
19
  "!src/**/*.test.js",
20
- "!src/**/__test-fixtures__/",
21
- "!src/**/test-helpers.js",
22
- "!src/web/frontend/src/",
23
- "!src/web/frontend/vite.config.js",
24
- "!src/web/frontend/index.html",
20
+ "!src/**/node_modules",
25
21
  "!scripts/",
26
22
  "README.md",
27
23
  "CHANGELOG.md"
@@ -376,6 +376,11 @@ export async function runAgentSingleTurn(root, message, opts = {}) {
376
376
  const { runToolLoop } = await import("./tool-loop.js");
377
377
  const messages = [{ role: "user", content: message }];
378
378
  const toolNames = activeAgent ? activeAgent.tools : [];
379
+ // Auto-approve tool confirmations when there's no TTY (e.g. fops exec, piped)
380
+ const noTty = !process.stdin.isTTY;
381
+ const autoConfirmFn = noTty
382
+ ? async () => ({ action: "yes" })
383
+ : undefined;
379
384
  const toolResult = await runToolLoop({
380
385
  messages,
381
386
  systemPrompt: systemContent,
@@ -383,6 +388,7 @@ export async function runAgentSingleTurn(root, message, opts = {}) {
383
388
  maxIterations: activeAgent?.maxIterations || 10,
384
389
  registry,
385
390
  context: { root },
391
+ confirmFn: autoConfirmFn,
386
392
  });
387
393
  replyText = toolResult.finalResponse;
388
394
  if (toolResult.usage && (toolResult.usage.input_tokens || toolResult.usage.output_tokens)) {
@@ -58,6 +58,40 @@ export function registerSetupCommands(program, registry) {
58
58
  .command("config")
59
59
  .description("Manage feature flags and component versions");
60
60
 
61
+ config
62
+ .command("set <key> <value>")
63
+ .description("Set a top-level key in ~/.fops.json (e.g. projectRoot)")
64
+ .action(async (key, value) => {
65
+ const { readState, saveState } = await import("../state.js");
66
+ const state = readState();
67
+ state[key] = value;
68
+ saveState(state);
69
+ const configPath = path.join(os.homedir(), ".fops.json");
70
+ console.log(OK(` ✓ ${key} = ${value}`), DIM(`(${configPath})`));
71
+ });
72
+
73
+ config
74
+ .command("get [key]")
75
+ .description("Show a key from ~/.fops.json, or all top-level keys")
76
+ .action(async (key) => {
77
+ const { readState } = await import("../state.js");
78
+ const state = readState();
79
+ if (key) {
80
+ const val = state[key];
81
+ if (val === undefined) {
82
+ console.log(DIM(` ${key} is not set`));
83
+ } else {
84
+ console.log(` ${key} = ${typeof val === "object" ? JSON.stringify(val) : val}`);
85
+ }
86
+ } else {
87
+ const skip = new Set(["azure", "_meta"]);
88
+ for (const [k, v] of Object.entries(state)) {
89
+ if (skip.has(k)) continue;
90
+ console.log(` ${k} = ${typeof v === "object" ? JSON.stringify(v) : v}`);
91
+ }
92
+ }
93
+ });
94
+
61
95
  config
62
96
  .command("flags", { isDefault: true })
63
97
  .description("Toggle MX_FF_* feature flags and restart affected services")