@iola_adm/iola-cli 0.1.55 → 0.1.56
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
package/src/cli.js
CHANGED
|
@@ -6937,9 +6937,10 @@ async function onboard(args = []) {
|
|
|
6937
6937
|
}
|
|
6938
6938
|
}
|
|
6939
6939
|
|
|
6940
|
-
const components = options.yes ? ["workspace", "policy", "ollama", "openai", "openrouter", "codex", "codex-mcp", "index"] : await chooseOnboardComponents();
|
|
6940
|
+
const components = options.yes ? ["workspace", "policy", "ollama", "openai", "openrouter", "codex", "codex-mcp", "archive", "index"] : await chooseOnboardComponents();
|
|
6941
6941
|
if (components.includes("workspace")) await handleWorkspace(["init"]);
|
|
6942
6942
|
if (components.includes("policy")) await handlePolicy(["use", "analyst"]);
|
|
6943
|
+
if (components.includes("archive")) await ensureArchiveTool({ install: true });
|
|
6943
6944
|
if (components.includes("ollama")) {
|
|
6944
6945
|
await installOllamaIfMissing();
|
|
6945
6946
|
await setupOllama(["--yes"]);
|
|
@@ -6986,9 +6987,10 @@ async function chooseOnboardComponents() {
|
|
|
6986
6987
|
console.log("5. OpenRouter API");
|
|
6987
6988
|
console.log("6. Codex CLI");
|
|
6988
6989
|
console.log("7. MCP для Codex");
|
|
6989
|
-
console.log("8.
|
|
6990
|
-
console.log("9.
|
|
6991
|
-
console.log("10.
|
|
6990
|
+
console.log("8. 7-Zip / архивы");
|
|
6991
|
+
console.log("9. Индекс локальных документов");
|
|
6992
|
+
console.log("10. Browser runtime");
|
|
6993
|
+
console.log("11. Личное подключение Госуслуг");
|
|
6992
6994
|
console.log("");
|
|
6993
6995
|
const rl = readline.createInterface({ input, output });
|
|
6994
6996
|
try {
|
|
@@ -7002,9 +7004,10 @@ async function chooseOnboardComponents() {
|
|
|
7002
7004
|
5: "openrouter",
|
|
7003
7005
|
6: "codex",
|
|
7004
7006
|
7: "codex-mcp",
|
|
7005
|
-
8: "
|
|
7006
|
-
9: "
|
|
7007
|
-
10: "
|
|
7007
|
+
8: "archive",
|
|
7008
|
+
9: "index",
|
|
7009
|
+
10: "browser",
|
|
7010
|
+
11: "gosuslugi",
|
|
7008
7011
|
};
|
|
7009
7012
|
return [...selected].map((item) => map[item] || item).filter(Boolean);
|
|
7010
7013
|
} finally {
|
|
@@ -38,5 +38,8 @@ iola index search "контракт"
|
|
|
38
38
|
iola onboard
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
Мастер проверяет Node/npm, SQLite, API
|
|
41
|
+
Мастер проверяет Node/npm, SQLite, API и 7-Zip.
|
|
42
42
|
|
|
43
|
+
В списке компонентов есть отдельный пункт `7-Zip / архивы`. Если выбрать его, CLI установит архиватор сразу из мастера настройки.
|
|
44
|
+
|
|
45
|
+
Мастер также предлагает подключить workspace, policy, Ollama, OpenAI, OpenRouter, Codex CLI, MCP, browser runtime, Госуслуги и индекс локальных документов.
|