@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 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
 
@@ -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
- path: ".",
29
- mount: "/source",
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
- path: docsDir,
37
- mount: "/docs",
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
- mount: /sources
46
- path: .
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
@@ -36,7 +36,7 @@ skills:
36
36
  skills:
37
37
  - ../localize/translate-multilingual.yaml
38
38
  iterate_on: selectedDocs
39
- concurrency: 10
39
+ concurrency: 5
40
40
  - url: ../utils/check-feedback-refiner.mjs
41
41
  default_input:
42
42
  stage: translation_refine
@@ -15,5 +15,5 @@ input_schema:
15
15
  items: { type: string }
16
16
  description: Array of modified files since last generation
17
17
  iterate_on: documentExecutionStructure
18
- concurrency: 10
18
+ concurrency: 5
19
19
  mode: sequential
@@ -4,4 +4,4 @@ name: batchUpdateDocument
4
4
  skills:
5
5
  - ../update/handle-document-update.yaml
6
6
  iterate_on: selectedDocs
7
- concurrency: 10
7
+ concurrency: 5
@@ -102,7 +102,7 @@ export default async function checkDocument(
102
102
  lackLanguages.delete(x);
103
103
  }
104
104
  },
105
- { concurrency: 10 },
105
+ { concurrency: 5 },
106
106
  );
107
107
  if (lackLanguages.size === 0) {
108
108
  return {
@@ -51,8 +51,8 @@ afs:
51
51
  modules:
52
52
  - module: system-fs
53
53
  options:
54
- mount: /sources
55
- path: .
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
- mount: /sources
60
- path: .
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/doc-smith",
3
- "version": "0.9.5-beta",
3
+ "version": "0.9.5",
4
4
  "description": "AI-driven documentation generation tool built on the AIGNE Framework",
5
5
  "publishConfig": {
6
6
  "access": "public"