@aigne/doc-smith 0.9.5-beta → 0.9.5
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 +10 -0
- package/agents/chat/index.mjs +12 -7
- package/agents/create/update-document-structure.yaml +2 -2
- package/agents/localize/index.yaml +1 -1
- package/agents/update/batch-generate-document.yaml +1 -1
- package/agents/update/batch-update-document.yaml +1 -1
- package/agents/update/check-document.mjs +1 -1
- package/agents/update/generate-document.yaml +2 -2
- package/agents/update/update-document-detail.yaml +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.5](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.9.5-beta.1...v0.9.5) (2025-11-14)
|
|
4
|
+
|
|
5
|
+
## [0.9.5-beta.1](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.9.5-beta...v0.9.5-beta.1) (2025-11-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* update translate concurrency ([#315](https://github.com/AIGNE-io/aigne-doc-smith/issues/315)) ([a99eed2](https://github.com/AIGNE-io/aigne-doc-smith/commit/a99eed2c64e362f54912dbfcb30703854497c4a7))
|
|
11
|
+
* upgrade afs configuration ([#317](https://github.com/AIGNE-io/aigne-doc-smith/issues/317)) ([b556781](https://github.com/AIGNE-io/aigne-doc-smith/commit/b5567812e36401525506fe1f473426e27e181450))
|
|
12
|
+
|
|
3
13
|
## [0.9.5-beta](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.9.4...v0.9.5-beta) (2025-11-14)
|
|
4
14
|
|
|
5
15
|
|
package/agents/chat/index.mjs
CHANGED
|
@@ -18,23 +18,28 @@ export default {
|
|
|
18
18
|
},
|
|
19
19
|
input_key: "message",
|
|
20
20
|
afs: {
|
|
21
|
-
storage: {
|
|
22
|
-
url: "file:.aigne/doc-smith/.local/afs-storage.sqlite3",
|
|
23
|
-
},
|
|
24
21
|
modules: [
|
|
22
|
+
{
|
|
23
|
+
module: "history",
|
|
24
|
+
options: {
|
|
25
|
+
storage: {
|
|
26
|
+
url: "file:.aigne/doc-smith/.local/afs-storage.sqlite3",
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
},
|
|
25
30
|
{
|
|
26
31
|
module: "system-fs",
|
|
27
32
|
options: {
|
|
28
|
-
|
|
29
|
-
|
|
33
|
+
name: "source",
|
|
34
|
+
localPath: ".",
|
|
30
35
|
description: "Project root directory for document generation",
|
|
31
36
|
},
|
|
32
37
|
},
|
|
33
38
|
{
|
|
34
39
|
module: "system-fs",
|
|
35
40
|
options: {
|
|
36
|
-
|
|
37
|
-
|
|
41
|
+
name: "docs",
|
|
42
|
+
localPath: docsDir,
|
|
38
43
|
description: "Generated documentation files directory",
|
|
39
44
|
},
|
|
40
45
|
},
|
|
@@ -42,8 +42,8 @@ skills:
|
|
|
42
42
|
modules:
|
|
43
43
|
- module: system-fs
|
|
44
44
|
options:
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
name: sources
|
|
46
|
+
localPath: .
|
|
47
47
|
description: |
|
|
48
48
|
Codebase of the project to be documented used as context for document generation,
|
|
49
49
|
should search and read as needed while generating document content
|
|
@@ -51,8 +51,8 @@ afs:
|
|
|
51
51
|
modules:
|
|
52
52
|
- module: system-fs
|
|
53
53
|
options:
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
name: sources
|
|
55
|
+
localPath: .
|
|
56
56
|
description: |
|
|
57
57
|
Codebase of the project to be documented used as context for document generation,
|
|
58
58
|
should search and read as needed while generating document content
|
|
@@ -56,8 +56,8 @@ skills:
|
|
|
56
56
|
modules:
|
|
57
57
|
- module: system-fs
|
|
58
58
|
options:
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
name: sources
|
|
60
|
+
localPath: .
|
|
61
61
|
description: |
|
|
62
62
|
Codebase of the project to be documented used as context for document generation,
|
|
63
63
|
should search and read as needed while generating document content
|