@iola_adm/iola-cli 0.1.25 → 0.1.27

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/wiki/Home.md CHANGED
@@ -30,6 +30,8 @@ iola ask "найди школу 29"
30
30
  - [Локальный инструментальный агент](Локальный-инструментальный-агент)
31
31
  - [Skills и toolsets](Skills-и-toolsets)
32
32
  - [Локальные файлы](Локальные-файлы)
33
+ - [Рабочая среда агента](Рабочая-среда-агента)
34
+ - [Расширения и локальные данные](Расширения-и-локальные-данные)
33
35
  - [Daemon, RPC и cron](Daemon-RPC-и-cron)
34
36
  - [Контекст и память](Контекст-и-память)
35
37
  - [Команды](Команды)
@@ -51,6 +51,18 @@ iola files status
51
51
  iola files mode read-only
52
52
  iola files tree .
53
53
  iola files search "Петрова" --path .
54
+ iola policy use analyst
55
+ iola tasks list
56
+ iola artifacts list
57
+ iola snapshot list
58
+ iola trace last
59
+ iola export education-contacts --format xlsx --output contacts.xlsx
60
+ iola changes list
61
+ iola import file data.csv --dataset custom
62
+ iola index folder ./docs
63
+ iola reports list
64
+ iola plugins list
65
+ iola mcp serve
54
66
  iola memory suggest
55
67
  ```
56
68
 
@@ -0,0 +1,67 @@
1
+ # Рабочая среда агента
2
+
3
+ `iola-cli` поддерживает рабочие пространства, задачи, артефакты, snapshots, trace и policy-профили.
4
+
5
+ План перед выполнением:
6
+
7
+ ```bash
8
+ iola ask "найди файлы со школами и сделай отчет" --profile local --tools --files --plan
9
+ ```
10
+
11
+ Policy:
12
+
13
+ ```bash
14
+ iola policy list
15
+ iola policy use safe
16
+ iola policy use analyst
17
+ iola policy use developer
18
+ iola policy use full
19
+ ```
20
+
21
+ Workspace:
22
+
23
+ ```bash
24
+ iola workspace init
25
+ iola workspace status
26
+ iola workspace use D:\project
27
+ iola workspace list
28
+ ```
29
+
30
+ Tasks:
31
+
32
+ ```bash
33
+ iola tasks add "проверить качество данных"
34
+ iola tasks list
35
+ iola tasks done 1
36
+ ```
37
+
38
+ Artifacts:
39
+
40
+ ```bash
41
+ iola artifacts list
42
+ iola artifacts show 1
43
+ iola artifacts open 1
44
+ ```
45
+
46
+ Snapshots:
47
+
48
+ ```bash
49
+ iola snapshot create
50
+ iola snapshot list
51
+ iola snapshot restore 1
52
+ ```
53
+
54
+ Trace:
55
+
56
+ ```bash
57
+ iola trace last
58
+ iola trace show RUN_ID
59
+ ```
60
+
61
+ Export:
62
+
63
+ ```bash
64
+ iola export education-contacts --format xlsx --output contacts.xlsx
65
+ iola report missing-phones --format docx --output missing-phones.docx
66
+ ```
67
+
@@ -0,0 +1,54 @@
1
+ # Расширения и локальные данные
2
+
3
+ Staged changes:
4
+
5
+ ```bash
6
+ iola files write report.md --text "..." --stage
7
+ iola files patch README.md --search old --replace new --stage
8
+ iola changes list
9
+ iola changes show 1
10
+ iola changes apply 1
11
+ iola changes discard 1
12
+ ```
13
+
14
+ Импорт локальных данных:
15
+
16
+ ```bash
17
+ iola import file data.csv --dataset custom-schools
18
+ iola import file data.json --dataset custom
19
+ iola import folder ./data
20
+ ```
21
+
22
+ Индекс документов:
23
+
24
+ ```bash
25
+ iola index folder ./docs
26
+ iola index status
27
+ iola index search "школа 29"
28
+ ```
29
+
30
+ Пакеты отчетов:
31
+
32
+ ```bash
33
+ iola reports list
34
+ iola reports run education-passport
35
+ iola reports run data-quality-pack
36
+ ```
37
+
38
+ Plugins:
39
+
40
+ ```bash
41
+ iola plugins list
42
+ iola plugins install quality --command "iola quality"
43
+ iola plugins run quality
44
+ iola plugins remove quality
45
+ ```
46
+
47
+ Локальный MCP endpoint:
48
+
49
+ ```bash
50
+ iola mcp serve
51
+ ```
52
+
53
+ По умолчанию MCP запускается на порту `daemon.port + 1`.
54
+