@iola_adm/iola-cli 0.1.88 → 0.1.89

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iola_adm/iola-cli",
3
- "version": "0.1.88",
3
+ "version": "0.1.89",
4
4
  "description": "CLI и AI-агент городского округа Йошкар-Ола.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/adm-iola/iola-cli#readme",
package/src/cli.js CHANGED
@@ -298,8 +298,8 @@ const SLASH_COMMANDS = [
298
298
  { command: "/quality", description: "качество данных" },
299
299
  { command: "/views", description: "saved views" },
300
300
  { command: "/config get", description: "конфигурация" },
301
- { command: "/delete --yes", description: "удалить локальные данные iola-cli" },
302
- { command: "/uninstall --yes", description: "алиас для /delete --yes" },
301
+ { command: "/delete", description: "удалить локальные данные iola-cli" },
302
+ { command: "/uninstall", description: "алиас для /delete" },
303
303
  { command: "/layers", description: "слои данных" },
304
304
  { command: "/data schools --limit 10", description: "данные слоя" },
305
305
  { command: "/schools --limit 10", description: "школы" },
@@ -581,8 +581,8 @@ Usage:
581
581
  iola config set api.baseUrl URL
582
582
  iola config set api.mcpBaseUrl URL
583
583
  iola config reset
584
- iola delete --yes
585
- iola uninstall --yes
584
+ iola delete
585
+ iola uninstall
586
586
  iola update
587
587
  iola ask TEXT [--profile NAME] [--model MODEL] [--tools] [--files] [--plan] [--trace] [--reasoning fast|verify|vote] [--output FILE] [--schema json|table] [--events] [--no-history] [--bare] [--quiet] [--no-color] [--fail-on-empty]
588
588
  iola data LAYER [--limit 10] [--search TEXT] [--where FIELD=VALUE] [--columns a,b,c] [--format table|json|csv]
@@ -48,8 +48,8 @@ assertIncludes(help, "iola ask", "help");
48
48
  const commands = await runCli(["commands"]);
49
49
  assertIncludes(commands, "iola browser status|install|open|text|html|screenshot|pdf|click|type|eval", "commands");
50
50
  assertIncludes(commands, "iola mcp list|status|install|remove|serve [--stdio]", "commands");
51
- assertIncludes(commands, "iola delete --yes", "commands");
52
- assertIncludes(commands, "iola uninstall --yes", "commands");
51
+ assertIncludes(commands, "iola delete", "commands");
52
+ assertIncludes(commands, "iola uninstall", "commands");
53
53
  assertNotIncludes(commands, "Госуслуг", "commands");
54
54
  assertNotIncludes(commands, "gosuslugi", "commands");
55
55