@aigne/doc-smith 0.6.0 → 0.7.1

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.
Files changed (80) hide show
  1. package/.aigne/doc-smith/config.yaml +70 -0
  2. package/.aigne/doc-smith/output/structure-plan.json +152 -0
  3. package/.aigne/doc-smith/preferences.yml +31 -0
  4. package/.aigne/doc-smith/upload-cache.yaml +288 -0
  5. package/.github/workflows/ci.yml +46 -0
  6. package/.github/workflows/reviewer.yml +2 -1
  7. package/CHANGELOG.md +17 -0
  8. package/README.md +33 -15
  9. package/agents/chat.yaml +30 -0
  10. package/agents/check-structure-plan.mjs +1 -1
  11. package/agents/docs-fs.yaml +25 -0
  12. package/agents/exit.mjs +6 -0
  13. package/agents/feedback-refiner.yaml +5 -1
  14. package/agents/find-items-by-paths.mjs +10 -4
  15. package/agents/fs.mjs +60 -0
  16. package/agents/input-generator.mjs +150 -91
  17. package/agents/load-config.mjs +0 -5
  18. package/agents/load-sources.mjs +61 -8
  19. package/agents/publish-docs.mjs +27 -12
  20. package/agents/retranslate.yaml +1 -1
  21. package/agents/team-publish-docs.yaml +2 -2
  22. package/aigne.yaml +1 -0
  23. package/docs/_sidebar.md +17 -0
  24. package/docs/advanced-how-it-works.md +104 -0
  25. package/docs/advanced-how-it-works.zh.md +104 -0
  26. package/docs/advanced-quality-assurance.md +64 -0
  27. package/docs/advanced-quality-assurance.zh.md +64 -0
  28. package/docs/advanced.md +28 -0
  29. package/docs/advanced.zh.md +28 -0
  30. package/docs/changelog.md +272 -0
  31. package/docs/changelog.zh.md +272 -0
  32. package/docs/cli-reference.md +185 -0
  33. package/docs/cli-reference.zh.md +185 -0
  34. package/docs/configuration-interactive-setup.md +82 -0
  35. package/docs/configuration-interactive-setup.zh.md +82 -0
  36. package/docs/configuration-language-support.md +64 -0
  37. package/docs/configuration-language-support.zh.md +64 -0
  38. package/docs/configuration-llm-setup.md +90 -0
  39. package/docs/configuration-llm-setup.zh.md +90 -0
  40. package/docs/configuration-preferences.md +122 -0
  41. package/docs/configuration-preferences.zh.md +123 -0
  42. package/docs/configuration.md +173 -0
  43. package/docs/configuration.zh.md +173 -0
  44. package/docs/features-generate-documentation.md +82 -0
  45. package/docs/features-generate-documentation.zh.md +82 -0
  46. package/docs/features-publish-your-docs.md +98 -0
  47. package/docs/features-publish-your-docs.zh.md +98 -0
  48. package/docs/features-translate-documentation.md +83 -0
  49. package/docs/features-translate-documentation.zh.md +83 -0
  50. package/docs/features-update-and-refine.md +86 -0
  51. package/docs/features-update-and-refine.zh.md +86 -0
  52. package/docs/features.md +56 -0
  53. package/docs/features.zh.md +56 -0
  54. package/docs/getting-started.md +74 -0
  55. package/docs/getting-started.zh.md +74 -0
  56. package/docs/overview.md +48 -0
  57. package/docs/overview.zh.md +48 -0
  58. package/media.md +19 -0
  59. package/package.json +13 -10
  60. package/prompts/content-detail-generator.md +7 -3
  61. package/prompts/document/custom-components.md +80 -0
  62. package/prompts/document/d2-chart/diy-examples.md +44 -0
  63. package/prompts/document/d2-chart/official-examples.md +708 -0
  64. package/prompts/document/d2-chart/rules.md +48 -0
  65. package/prompts/document/detail-generator.md +12 -15
  66. package/prompts/document/structure-planning.md +1 -3
  67. package/prompts/feedback-refiner.md +81 -60
  68. package/prompts/structure-planning.md +20 -3
  69. package/tests/check-detail-result.test.mjs +3 -4
  70. package/tests/conflict-resolution.test.mjs +237 -0
  71. package/tests/input-generator.test.mjs +940 -0
  72. package/tests/load-sources.test.mjs +627 -3
  73. package/tests/preferences-utils.test.mjs +94 -0
  74. package/tests/save-value-to-config.test.mjs +182 -5
  75. package/tests/utils.test.mjs +49 -0
  76. package/utils/conflict-detector.mjs +72 -1
  77. package/utils/constants.mjs +125 -124
  78. package/utils/kroki-utils.mjs +162 -0
  79. package/utils/markdown-checker.mjs +98 -70
  80. package/utils/utils.mjs +96 -28
@@ -0,0 +1,70 @@
1
+ # Project information for documentation publishing
2
+ projectName: AIGNE DocSmith
3
+ projectDesc: AIGNE DocSmith is a powerful, AI-driven documentation generation tool built on the AIGNE Framework. It automates the creation of detailed, structured, and multi-language documentation directly from your source code.
4
+ projectLogo: https://docsmith.aigne.io/image-bin/uploads/a7910a71364ee15a27e86f869ad59009.svg
5
+
6
+ # =============================================================================
7
+ # Documentation Configuration
8
+ # =============================================================================
9
+
10
+ # Purpose: What's the main outcome you want readers to achieve?
11
+ # Available options (uncomment and modify as needed):
12
+ # getStarted - Get started quickly: Help new users go from zero to working in <30 minutes
13
+ # completeTasks - Complete specific tasks: Guide users through common workflows and use cases
14
+ # findAnswers - Find answers fast: Provide searchable reference for all features and APIs
15
+ # understandSystem - Understand the system: Explain how it works, why design decisions were made
16
+ # solveProblems - Solve problems: Help users troubleshoot and fix issues
17
+ # mixedPurpose - Mix of above: Comprehensive documentation covering multiple needs
18
+ documentPurpose:
19
+ - completeTasks
20
+ - findAnswers
21
+
22
+ # Target Audience: Who will be reading this most often?
23
+ # Available options (uncomment and modify as needed):
24
+ # endUsers - End users (non-technical): People who use the product but don't code
25
+ # developers - Developers integrating: Engineers adding this to their projects
26
+ # devops - DevOps/Infrastructure: Teams deploying, monitoring, maintaining systems
27
+ # decisionMakers - Technical decision makers: Architects, leads evaluating or planning implementation
28
+ # supportTeams - Support teams: People helping others use the product
29
+ # mixedTechnical - Mixed technical audience: Developers, DevOps, and technical users
30
+ targetAudienceTypes:
31
+ - endUsers
32
+ - developers
33
+
34
+ # Reader Knowledge Level: What do readers typically know when they arrive?
35
+ # Available options (uncomment and modify as needed):
36
+ # completeBeginners - Complete beginners: New to this domain/technology entirely
37
+ # domainFamiliar - Domain-familiar, tool-new: Know the problem space, new to this specific solution
38
+ # experiencedUsers - Experienced users: Regular users needing reference/advanced topics
39
+ # emergencyTroubleshooting - Emergency/troubleshooting: Something's broken, need to fix it quickly
40
+ # exploringEvaluating - Exploring/evaluating: Trying to understand if this fits their needs
41
+ readerKnowledgeLevel: completeBeginners
42
+
43
+ # Documentation Depth: How comprehensive should the documentation be?
44
+ # Available options (uncomment and modify as needed):
45
+ # essentialOnly - Essential only: Cover the 80% use cases, keep it concise
46
+ # balancedCoverage - Balanced coverage: Good depth with practical examples [RECOMMENDED]
47
+ # comprehensive - Comprehensive: Cover all features, edge cases, and advanced scenarios
48
+ # aiDecide - Let AI decide: Analyze code complexity and suggest appropriate depth
49
+ documentationDepth: comprehensive
50
+
51
+ # Custom Rules: Define specific documentation generation rules and requirements
52
+ rules: |
53
+
54
+
55
+ # Target Audience: Describe your specific target audience and their characteristics
56
+ targetAudience: |
57
+
58
+
59
+ locale: en
60
+ translateLanguages:
61
+ - zh
62
+ docsDir: ./docs # Directory to save generated documentation
63
+ sourcesPath: # Source code paths to analyze
64
+ - ./
65
+ labels:
66
+ - Reference
67
+ lastGitHead: f3f14b93e6b2e6beb42b2f368c2560ab050dfd03
68
+ appUrl: https://docsmith.aigne.io
69
+ # ⚠️ Warning: boardId is auto-generated by system, please do not edit manually
70
+ boardId: "aigne-docsmith"
@@ -0,0 +1,152 @@
1
+ [
2
+ {
3
+ "title": "Overview",
4
+ "description": "Get a quick introduction to AIGNE DocSmith, what it does, its main features, and how it fits into the larger AIGNE ecosystem.",
5
+ "path": "/overview",
6
+ "parentId": null,
7
+ "sourceIds": ["README.md", "package.json", "aigne.yaml"]
8
+ },
9
+ {
10
+ "title": "Getting Started",
11
+ "description": "Follow this simple, step-by-step guide to install the tool, configure your project, and generate your first set of documents in minutes.",
12
+ "path": "/getting-started",
13
+ "parentId": null,
14
+ "sourceIds": ["README.md", "media.md", "agents/input-generator.mjs"]
15
+ },
16
+ {
17
+ "title": "Core Features",
18
+ "description": "Explore the main commands and capabilities of DocSmith, from creating new documentation to publishing it online.",
19
+ "path": "/features",
20
+ "parentId": null,
21
+ "sourceIds": ["README.md"]
22
+ },
23
+ {
24
+ "title": "Generate Documentation",
25
+ "description": "Learn how to use a single command to automatically create a complete set of documentation from your source code.",
26
+ "path": "/features/generate-documentation",
27
+ "parentId": "/features",
28
+ "sourceIds": ["README.md", "media.md", "agents/docs-generator.yaml"]
29
+ },
30
+ {
31
+ "title": "Update and Refine",
32
+ "description": "Discover how to intelligently update your documents when your code changes, or make specific improvements using feedback.",
33
+ "path": "/features/update-and-refine",
34
+ "parentId": "/features",
35
+ "sourceIds": ["README.md", "media.md", "agents/detail-regenerator.yaml"]
36
+ },
37
+ {
38
+ "title": "Translate Documentation",
39
+ "description": "Learn how to automatically translate your documentation into multiple languages to reach a global audience.",
40
+ "path": "/features/translate-documentation",
41
+ "parentId": "/features",
42
+ "sourceIds": ["README.md", "media.md", "agents/translate.yaml", "agents/retranslate.yaml"]
43
+ },
44
+ {
45
+ "title": "Publish Your Docs",
46
+ "description": "A guide on how to easily publish your documentation to a public platform or your own private website.",
47
+ "path": "/features/publish-your-docs",
48
+ "parentId": "/features",
49
+ "sourceIds": [
50
+ "README.md",
51
+ "media.md",
52
+ "agents/publish-docs.mjs",
53
+ "utils/auth-utils.mjs",
54
+ "utils/blocklet.mjs"
55
+ ]
56
+ },
57
+ {
58
+ "title": "CLI Command Reference",
59
+ "description": "A comprehensive reference for all available `aigne doc` commands, their arguments, and options.",
60
+ "path": "/cli-reference",
61
+ "parentId": null,
62
+ "sourceIds": [
63
+ "README.md",
64
+ "aigne.yaml",
65
+ "agents/docs-generator.yaml",
66
+ "agents/detail-regenerator.yaml",
67
+ "agents/retranslate.yaml",
68
+ "agents/team-publish-docs.yaml",
69
+ "agents/manage-prefs.mjs"
70
+ ]
71
+ },
72
+ {
73
+ "title": "Configuration Guide",
74
+ "description": "A detailed look at all the available settings to customize the style, audience, and languages of your documentation.",
75
+ "path": "/configuration",
76
+ "parentId": null,
77
+ "sourceIds": ["README.md", "agents/input-generator.mjs", "utils/constants.mjs"]
78
+ },
79
+ {
80
+ "title": "LLM Setup",
81
+ "description": "Learn how to set up DocSmith to use different AI models, including using AIGNE Hub without needing your own API keys.",
82
+ "path": "/configuration/llm-setup",
83
+ "parentId": "/configuration",
84
+ "sourceIds": ["README.md", "aigne.yaml"]
85
+ },
86
+ {
87
+ "title": "Language Support",
88
+ "description": "See the full list of languages that DocSmith supports for automatic translation and learn how to enable them.",
89
+ "path": "/configuration/language-support",
90
+ "parentId": "/configuration",
91
+ "sourceIds": ["README.md", "utils/constants.mjs"]
92
+ },
93
+ {
94
+ "title": "Managing Preferences",
95
+ "description": "Understand how DocSmith learns from your feedback to create persistent rules and how to manage them via the CLI.",
96
+ "path": "/configuration/preferences",
97
+ "parentId": "/configuration",
98
+ "sourceIds": [
99
+ "utils/preferences-utils.mjs",
100
+ "agents/manage-prefs.mjs",
101
+ "prompts/feedback-refiner.md"
102
+ ]
103
+ },
104
+ {
105
+ "title": "Interactive Setup",
106
+ "description": "Learn about the guided setup wizard that helps you configure your documentation project, including intelligent conflict detection for your settings.",
107
+ "path": "/configuration/interactive-setup",
108
+ "parentId": "/configuration",
109
+ "sourceIds": [
110
+ "agents/input-generator.mjs",
111
+ "utils/conflict-detector.mjs",
112
+ "utils/constants.mjs"
113
+ ]
114
+ },
115
+ {
116
+ "title": "Advanced Topics",
117
+ "description": "Dive deeper into the architecture of DocSmith, learn how it works, and explore its internal mechanisms.",
118
+ "path": "/advanced",
119
+ "parentId": null,
120
+ "sourceIds": ["README.md"]
121
+ },
122
+ {
123
+ "title": "How It Works",
124
+ "description": "An architectural overview of DocSmith, explaining the role of AI agents in the documentation generation pipeline.",
125
+ "path": "/advanced/how-it-works",
126
+ "parentId": "/advanced",
127
+ "sourceIds": [
128
+ "README.md",
129
+ "aigne.yaml",
130
+ "agents/structure-planning.yaml",
131
+ "agents/content-detail-generator.yaml"
132
+ ]
133
+ },
134
+ {
135
+ "title": "Quality Assurance",
136
+ "description": "Understand the built-in checks DocSmith performs to ensure high-quality, well-formatted, and error-free documentation, including link checking and diagram validation.",
137
+ "path": "/advanced/quality-assurance",
138
+ "parentId": "/advanced",
139
+ "sourceIds": [
140
+ "utils/markdown-checker.mjs",
141
+ "utils/mermaid-validator.mjs",
142
+ "utils/kroki-utils.mjs"
143
+ ]
144
+ },
145
+ {
146
+ "title": "Changelog",
147
+ "description": "A detailed log of all notable changes, features, and bug fixes for each version of the project.",
148
+ "path": "/changelog",
149
+ "parentId": null,
150
+ "sourceIds": ["CHANGELOG.md"]
151
+ }
152
+ ]
@@ -0,0 +1,31 @@
1
+ rules:
2
+ - id: pref_b826d60409e88585
3
+ active: true
4
+ scope: document
5
+ rule: 自定义组件的描述中只能使用普通文本,不能使用 Markdown 语法。
6
+ feedback: 不可以在自定义组件的描述中使用 markdown 语法,只能使用普通文本
7
+ createdAt: 2025-08-30T14:59:26.086Z
8
+ - id: pref_6da200d8e6fec09e
9
+ active: true
10
+ scope: structure
11
+ rule: 不要生成关于贡献指南的文档。
12
+ feedback: 删除贡献指南相关的文档,这部分内容还没有准备好
13
+ createdAt: 2025-08-30T14:46:32.741Z
14
+ - id: pref_8c619b5228f791e5
15
+ active: true
16
+ scope: document
17
+ rule: 不要生成关于 Mermaid 图表验证的内容,因为图表已改为使用 D2。
18
+ feedback: 删除 mermaid 图表验证相关的描述,现在图表已改为使用 D2
19
+ createdAt: 2025-08-30T14:29:04.068Z
20
+ - id: pref_0e154f58c22329fb
21
+ active: true
22
+ scope: document
23
+ rule: 不要生成关于已不再支持的开发命令的文档内容。
24
+ feedback: 删除开发命令相关的文档,这些开发命令已经不支持了
25
+ createdAt: 2025-08-30T14:13:50.446Z
26
+ - id: pref_0112657e4103ba88
27
+ active: true
28
+ scope: structure
29
+ rule: 根据最新的源码更新文档结构,可以新增文档和修改文档对源码的依赖,但禁止修改任何现有文档的路径。
30
+ feedback: 基于最新的源码更新文档结构,允许新增文档、修改文档依赖源码,不可以修改现有文档的路径
31
+ createdAt: 2025-08-30T14:03:47.434Z
@@ -0,0 +1,288 @@
1
+ e5584429293a9715c318ac89081a618c63fd9c2bf2b8ea44ecf31f6de014a367:
2
+ local_path: .aigne/doc-smith/.tmp/assets/d2/0d9ed9a639f73d447273d4bdbba8640269abf6cf8535f2789e746902251616dc.svg
3
+ sites:
4
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
5
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/e5584429293a9715.svg
6
+ upload_time: 2025-08-30T14:18:21.482Z
7
+ 54f7b63397f5c7c0a761f4dd7c97e3ef4cca4b1c5da8e0f5568e7e5ef413f8e4:
8
+ local_path: .aigne/doc-smith/.tmp/assets/d2/08bebf8fa2f4d893ab36e68b37fe7a4514bd84be7cb44d98c101ee4259b55655.svg
9
+ sites:
10
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
11
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/54f7b63397f5c7c0.svg
12
+ upload_time: 2025-08-30T14:18:21.489Z
13
+ 38defbc750e779fb72327bf740d25ff24afc14f6c8769cfcda62644f00ded69c:
14
+ local_path: .aigne/doc-smith/.tmp/assets/d2/940f77bdf19082e3f8eeee88ccb04fc4aec64a51514a0172bb56bc66eff01ca6.svg
15
+ sites:
16
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
17
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/38defbc750e779fb.svg
18
+ upload_time: 2025-08-30T14:18:21.496Z
19
+ 4aea810c2e6a9e787326491cd9155c2e31b963de7ebb359a2ec1a00ddd394529:
20
+ local_path: .aigne/doc-smith/.tmp/assets/d2/8fcce5fe7c9e7445de9e19c1edd02ccce6aba7d084f740169161663ce8c36bb1.svg
21
+ sites:
22
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
23
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/4aea810c2e6a9e78.svg
24
+ upload_time: 2025-08-30T14:18:21.498Z
25
+ 577630be9abe6abf8e4e33da583c2719739e2729c78caa3fb995018b34b1e40a:
26
+ local_path: .aigne/doc-smith/.tmp/assets/d2/57dd5b6b9acdd80b0b27392b160860c73f2d5305bbec96ed91f840fbe0c5eb19.svg
27
+ sites:
28
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
29
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/577630be9abe6abf.svg
30
+ upload_time: 2025-08-30T14:18:21.512Z
31
+ 28f2ab88e09e5ba3295eedca5ee59978acdb16eb1693a46b321c3918e1c77b70:
32
+ local_path: .aigne/doc-smith/.tmp/assets/d2/01f833639fd04dcd3aa2c2c4b7af09f3f72c5f82a7bdea97bfc298a749f245ec.svg
33
+ sites:
34
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
35
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/28f2ab88e09e5ba3.svg
36
+ upload_time: 2025-08-30T14:18:22.091Z
37
+ b8b3f451f53f7fddcc8457fe1adae3c0f8d2f5fc27294ce0d8bbfc13540f1cba:
38
+ local_path: .aigne/doc-smith/.tmp/assets/d2/526efe6bc9b34ea683516e5e0e06355a85691f67d953301f464bc64e59cb8186.svg
39
+ sites:
40
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
41
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/b8b3f451f53f7fdd.svg
42
+ upload_time: 2025-08-30T14:18:22.138Z
43
+ 27a0ce1e5cd53b2ba9dabc7807eda5bfcabb8f613992e6d9fff69fec92af7d5c:
44
+ local_path: .aigne/doc-smith/.tmp/assets/d2/9387c309fd3dda19dbf5bfa1fbcb5c94e4611f18818ba3ba86077cfeb40737d7.svg
45
+ sites:
46
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
47
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/27a0ce1e5cd53b2b.svg
48
+ upload_time: 2025-08-30T14:18:22.159Z
49
+ b74736b26d0b6d3de5d01c86fc566a67686d9d79291fdf44fc50f3f05aab4979:
50
+ local_path: .aigne/doc-smith/.tmp/assets/d2/1ead94d443f027ae0005a7ca4e13208a922efae85465df629ff91831ab6cca98.svg
51
+ sites:
52
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
53
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/b74736b26d0b6d3d.svg
54
+ upload_time: 2025-08-30T14:18:22.170Z
55
+ a23b926db342d25404292fb328b85e22fb9458cb842e5e1fb3e55e1ba1e80cc3:
56
+ local_path: .aigne/doc-smith/.tmp/assets/d2/4f0179d355d5c1d5811a36af15c10b7ce48290df1e7f5b93b8073e44425e9a2c.svg
57
+ sites:
58
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
59
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/a23b926db342d254.svg
60
+ upload_time: 2025-08-30T14:18:22.173Z
61
+ 037923c068fadd7d1d6752413a40fbd1dad79d8015da94edd4f499a0742962ac:
62
+ local_path: .aigne/doc-smith/.tmp/assets/d2/5aac2a2582ec920bbbdd1e383805215b0b13640f0f5f50c74e48376a4f10a75a.svg
63
+ sites:
64
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
65
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/037923c068fadd7d.svg
66
+ upload_time: 2025-08-30T14:18:22.706Z
67
+ e98b0dbd96d0e66e4e03394c6dede9577e692e01d301389546fc0b6050ea85c0:
68
+ local_path: .aigne/doc-smith/.tmp/assets/d2/755cdc87aa3df198dac942f41772f4aaab6c0b3e580ddea488e221c8bff52d95.svg
69
+ sites:
70
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
71
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/e98b0dbd96d0e66e.svg
72
+ upload_time: 2025-08-30T14:18:22.707Z
73
+ 5f6154c8a6bd6510c0ecbb3205572b1e7f95382ca237f60d354deee2e00182dc:
74
+ local_path: .aigne/doc-smith/.tmp/assets/d2/48a684e12fe020b877d00c39a50b9e67bbadbb51c85da9d4f18ad5a40bbf4aa4.svg
75
+ sites:
76
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
77
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/5f6154c8a6bd6510.svg
78
+ upload_time: 2025-08-30T14:18:23.281Z
79
+ 740514249f4e40724c96487b0c16ca9b566e21f843b4856d71054417e26a9e3d:
80
+ local_path: .aigne/doc-smith/.tmp/assets/d2/fc8a9086d2e20e701f27ea4c59f5df900d658a9b271207b5b55fce59f90c01f9.svg
81
+ sites:
82
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
83
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/740514249f4e4072.svg
84
+ upload_time: 2025-08-30T14:18:23.286Z
85
+ 1d94a13d8b607785742f61f5a72a4789d1e118c858f38078ecae07feea703a75:
86
+ local_path: .aigne/doc-smith/.tmp/assets/d2/29a363370ef3205b00cb64e18c81777cb507e456b3003d7fb3a8cfc459d78ae1.svg
87
+ sites:
88
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
89
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/1d94a13d8b607785.svg
90
+ upload_time: 2025-08-30T14:50:30.661Z
91
+ ce8c1049063eb130f69074f6209ded349b80bb2502124e62a17fb5890d47f6d1:
92
+ local_path: .aigne/doc-smith/.tmp/assets/d2/2d6de8dbca864a0cdd59a9eb290ebcb02d17f42d39f1f9f0fa27ae82feabed95.svg
93
+ sites:
94
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
95
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/ce8c1049063eb130.svg
96
+ upload_time: 2025-08-30T14:50:30.667Z
97
+ https://staging.docsmith.aigne.io:
98
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/ce8c1049063eb130.svg
99
+ upload_time: 2025-08-30T15:00:50.803Z
100
+ https://docsmith.aigne.io:
101
+ url: https://docsmith.aigne.io/image-bin/uploads/ce8c1049063eb130.svg
102
+ upload_time: 2025-08-31T03:54:05.752Z
103
+ 475df8d449a375047e93d9cc6536d901b358d7ebb7a1daf730bdb0397758404f:
104
+ local_path: .aigne/doc-smith/.tmp/assets/d2/6b08efa400c74486838872125d413fcd09d632c3b3f029cbf3940fe6261eff4d.svg
105
+ sites:
106
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
107
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/475df8d449a37504.svg
108
+ upload_time: 2025-08-30T14:50:30.869Z
109
+ https://staging.docsmith.aigne.io:
110
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/475df8d449a37504.svg
111
+ upload_time: 2025-08-30T15:00:51.448Z
112
+ https://docsmith.aigne.io:
113
+ url: https://docsmith.aigne.io/image-bin/uploads/475df8d449a37504.svg
114
+ upload_time: 2025-08-31T03:54:07.480Z
115
+ fb69d74f85f4084cbb9e4299dfb1139da3dcd660fbe444332fe7af12ed0779ed:
116
+ local_path: .aigne/doc-smith/.tmp/assets/d2/af46754e7f2dbb8a6fb4ebbbf87f99bb5da75a86d6bc57ed2a8c5bda9f89642e.svg
117
+ sites:
118
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
119
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/fb69d74f85f4084c.svg
120
+ upload_time: 2025-08-30T14:50:30.907Z
121
+ https://staging.docsmith.aigne.io:
122
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/fb69d74f85f4084c.svg
123
+ upload_time: 2025-08-30T15:00:51.881Z
124
+ https://docsmith.aigne.io:
125
+ url: https://docsmith.aigne.io/image-bin/uploads/fb69d74f85f4084c.svg
126
+ upload_time: 2025-08-31T03:54:06.804Z
127
+ ba9a41087f3325963fa027fa515acfe02294f74be729ab8b44f6c82ccc4fe2df:
128
+ local_path: .aigne/doc-smith/.tmp/assets/d2/fb51ce4350fc9a96735eba3615c47122ae75c436eb16c47476cff5d919260e17.svg
129
+ sites:
130
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
131
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/ba9a41087f332596.svg
132
+ upload_time: 2025-08-30T14:50:30.915Z
133
+ https://staging.docsmith.aigne.io:
134
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/ba9a41087f332596.svg
135
+ upload_time: 2025-08-30T15:00:51.157Z
136
+ https://docsmith.aigne.io:
137
+ url: https://docsmith.aigne.io/image-bin/uploads/ba9a41087f332596.svg
138
+ upload_time: 2025-08-31T03:54:07.918Z
139
+ a836c298cdd99a37e9e5605cf5beb3c9d563f8776807b1153090a300334208c6:
140
+ local_path: .aigne/doc-smith/.tmp/assets/d2/38a876ee6aea6573911707b55439a20d78c205326a4b222e944496b81af5575b.svg
141
+ sites:
142
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
143
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/a836c298cdd99a37.svg
144
+ upload_time: 2025-08-30T14:50:30.928Z
145
+ https://staging.docsmith.aigne.io:
146
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/a836c298cdd99a37.svg
147
+ upload_time: 2025-08-30T15:00:51.808Z
148
+ https://docsmith.aigne.io:
149
+ url: https://docsmith.aigne.io/image-bin/uploads/a836c298cdd99a37.svg
150
+ upload_time: 2025-08-31T03:54:06.810Z
151
+ 81a5f3bf1e23d513468007d6890f0e3365c4f911ba4e9ab5456ebce219504da3:
152
+ local_path: .aigne/doc-smith/.tmp/assets/d2/3bc59d626e968fc888fe5a2c8610e1f162ca4ea3cf5ffdcd9e9cf3a723a9c3d5.svg
153
+ sites:
154
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
155
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/81a5f3bf1e23d513.svg
156
+ upload_time: 2025-08-30T14:50:30.929Z
157
+ https://staging.docsmith.aigne.io:
158
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/81a5f3bf1e23d513.svg
159
+ upload_time: 2025-08-30T15:00:51.198Z
160
+ https://docsmith.aigne.io:
161
+ url: https://docsmith.aigne.io/image-bin/uploads/81a5f3bf1e23d513.svg
162
+ upload_time: 2025-08-31T03:54:06.238Z
163
+ 93aa6731582bf13c2bcc694044814d43328a76f4848f80a2f8f5e85d92ab9115:
164
+ local_path: .aigne/doc-smith/.tmp/assets/d2/02f751acc46b076dae6526640b7a99e75252d80a96ed82da96663126b138556f.svg
165
+ sites:
166
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
167
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/93aa6731582bf13c.svg
168
+ upload_time: 2025-08-30T14:50:31.246Z
169
+ 5d292488df6bec6ccd14f5a89332c2d5720b078e7f56bbf51016b28a611e6621:
170
+ local_path: .aigne/doc-smith/.tmp/assets/d2/f5c5c60be1dd4584e08eb9631c842cede8ac8149ff9598c70f736a9ea9c5edce.svg
171
+ sites:
172
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
173
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/5d292488df6bec6c.svg
174
+ upload_time: 2025-08-30T14:50:31.247Z
175
+ https://staging.docsmith.aigne.io:
176
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/5d292488df6bec6c.svg
177
+ upload_time: 2025-08-30T15:00:52.742Z
178
+ https://docsmith.aigne.io:
179
+ url: https://docsmith.aigne.io/image-bin/uploads/5d292488df6bec6c.svg
180
+ upload_time: 2025-08-31T03:54:08.821Z
181
+ 87936d61932228a16313e223f051568e47c096cead9479415e10dde579362d48:
182
+ local_path: .aigne/doc-smith/.tmp/assets/d2/92717170cde9a81915fff660996d3b74399fe3b036dc608f79dac34c602ca5a3.svg
183
+ sites:
184
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
185
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/87936d61932228a1.svg
186
+ upload_time: 2025-08-30T14:50:31.438Z
187
+ https://staging.docsmith.aigne.io:
188
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/87936d61932228a1.svg
189
+ upload_time: 2025-08-30T15:00:53.112Z
190
+ https://docsmith.aigne.io:
191
+ url: https://docsmith.aigne.io/image-bin/uploads/87936d61932228a1.svg
192
+ upload_time: 2025-08-31T03:54:09.149Z
193
+ ccc75a5f7ae679deb63dd96670627c627431610480412a3c44da7542f7c7aa6e:
194
+ local_path: .aigne/doc-smith/.tmp/assets/d2/24e4aca91abd5f07f6454b11b2d5cf8196fff50e243885550298a6b079c98507.svg
195
+ sites:
196
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
197
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/ccc75a5f7ae679de.svg
198
+ upload_time: 2025-08-30T14:50:31.510Z
199
+ https://staging.docsmith.aigne.io:
200
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/ccc75a5f7ae679de.svg
201
+ upload_time: 2025-08-30T15:00:53.495Z
202
+ https://docsmith.aigne.io:
203
+ url: https://docsmith.aigne.io/image-bin/uploads/ccc75a5f7ae679de.svg
204
+ upload_time: 2025-08-31T03:54:08.558Z
205
+ 8ecf81513109838f92bd61c5747bc139621021e57a5c50b437356abecc673b9f:
206
+ local_path: .aigne/doc-smith/.tmp/assets/d2/4feed9816d6ea91702101f554f4c29079862ea0e3025c58351be00b77c60325d.svg
207
+ sites:
208
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
209
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/8ecf81513109838f.svg
210
+ upload_time: 2025-08-30T14:50:31.518Z
211
+ https://staging.docsmith.aigne.io:
212
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/8ecf81513109838f.svg
213
+ upload_time: 2025-08-30T15:00:52.810Z
214
+ https://docsmith.aigne.io:
215
+ url: https://docsmith.aigne.io/image-bin/uploads/8ecf81513109838f.svg
216
+ upload_time: 2025-08-31T03:54:09.257Z
217
+ c78de2363fc89677da616bb7c3ddac9f5381225552b2a5a78b3d80f69509e054:
218
+ local_path: .aigne/doc-smith/.tmp/assets/d2/7a1cbda7b3f829f2ada14f879419c3c1adc56133f1d65970c82378fdb103e68a.svg
219
+ sites:
220
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
221
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/c78de2363fc89677.svg
222
+ upload_time: 2025-08-30T14:50:31.525Z
223
+ https://staging.docsmith.aigne.io:
224
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/c78de2363fc89677.svg
225
+ upload_time: 2025-08-30T15:00:53.352Z
226
+ https://docsmith.aigne.io:
227
+ url: https://docsmith.aigne.io/image-bin/uploads/c78de2363fc89677.svg
228
+ upload_time: 2025-08-31T03:54:08.292Z
229
+ ceab0562c15d585e03fed1d0cb81df03b83e1b6a467e2c2ec2dafada7f280546:
230
+ local_path: .aigne/doc-smith/.tmp/assets/d2/1889fcd9d3acf65b2ed216f1a810a3f24b3fea5d0c85b5bc7692464c93aae84d.svg
231
+ sites:
232
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
233
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/ceab0562c15d585e.svg
234
+ upload_time: 2025-08-30T14:50:31.536Z
235
+ https://staging.docsmith.aigne.io:
236
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/ceab0562c15d585e.svg
237
+ upload_time: 2025-08-30T15:00:52.825Z
238
+ https://docsmith.aigne.io:
239
+ url: https://docsmith.aigne.io/image-bin/uploads/ceab0562c15d585e.svg
240
+ upload_time: 2025-08-31T03:54:07.682Z
241
+ 669a33c290a9d75d1e4c0eacff63ab2033c8dda4ef4bd7f538ce5397a76960e4:
242
+ local_path: .aigne/doc-smith/.tmp/assets/d2/afba1d870f17d0f2f0470e7661d77b70f16310111ada133e7fbc164b7a91e756.svg
243
+ sites:
244
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
245
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/669a33c290a9d75d.svg
246
+ upload_time: 2025-08-30T14:50:31.818Z
247
+ https://staging.docsmith.aigne.io:
248
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/669a33c290a9d75d.svg
249
+ upload_time: 2025-08-30T15:00:54.660Z
250
+ https://docsmith.aigne.io:
251
+ url: https://docsmith.aigne.io/image-bin/uploads/669a33c290a9d75d.svg
252
+ upload_time: 2025-08-31T03:54:10.183Z
253
+ 86bcde42883bef81712d671e516aa2490d742617a15f8a92062a048bfc933f96:
254
+ local_path: .aigne/doc-smith/.tmp/assets/d2/d6a5cdc2afc70a9ff8e4d57a62671b72cde9cc6c46e92ed2083c27c739bd8715.svg
255
+ sites:
256
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
257
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/86bcde42883bef81.svg
258
+ upload_time: 2025-08-30T14:50:32.379Z
259
+ https://staging.docsmith.aigne.io:
260
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/86bcde42883bef81.svg
261
+ upload_time: 2025-08-30T15:00:56.398Z
262
+ https://docsmith.aigne.io:
263
+ url: https://docsmith.aigne.io/image-bin/uploads/86bcde42883bef81.svg
264
+ upload_time: 2025-08-31T03:54:11.820Z
265
+ 0479be06e3e07baed50fd3499cb12678c7a18cbac58ed167011210b204d95db4:
266
+ local_path: .aigne/doc-smith/.tmp/assets/d2/8e46ba698332de5b802dcabc4243923ec5825d39aa6f8691091650126ad4af02.svg
267
+ sites:
268
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
269
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/0479be06e3e07bae.svg
270
+ upload_time: 2025-08-30T14:59:44.987Z
271
+ https://staging.docsmith.aigne.io:
272
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/0479be06e3e07bae.svg
273
+ upload_time: 2025-08-30T15:00:54.365Z
274
+ https://docsmith.aigne.io:
275
+ url: https://docsmith.aigne.io/image-bin/uploads/0479be06e3e07bae.svg
276
+ upload_time: 2025-08-31T03:54:10.470Z
277
+ 3033392a72b4e9806c1e0dd08bb6acee70329f0c20c92de564dd274fef9e2b0f:
278
+ local_path: .aigne/doc-smith/.tmp/assets/d2/88a68ec79146e0660ad7bbfba61fcb99672161a3ef619ff99146a4ea364c00ce.svg
279
+ sites:
280
+ https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io:
281
+ url: https://bbqawfllzdt3pahkdsrsone6p3wpxcwp62vlabtawfu.did.abtnet.io/image-bin/uploads/3033392a72b4e980.svg
282
+ upload_time: 2025-08-30T14:59:45.570Z
283
+ https://staging.docsmith.aigne.io:
284
+ url: https://staging.docsmith.aigne.io/image-bin/uploads/3033392a72b4e980.svg
285
+ upload_time: 2025-08-30T15:00:55.979Z
286
+ https://docsmith.aigne.io:
287
+ url: https://docsmith.aigne.io/image-bin/uploads/3033392a72b4e980.svg
288
+ upload_time: 2025-08-31T03:54:11.941Z
@@ -0,0 +1,46 @@
1
+ name: CI
2
+
3
+ env:
4
+ NODE_OPTIONS: "--max_old_space_size=6144"
5
+
6
+ on:
7
+ pull_request:
8
+ branches:
9
+ - main
10
+
11
+ concurrency:
12
+ group: ${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress: true
14
+
15
+ jobs:
16
+ lint_and_test:
17
+ runs-on: ubuntu-latest
18
+
19
+ if: "!contains(github.event.head_commit.message, '[skip ci]')"
20
+
21
+ steps:
22
+ - name: Checkout repo
23
+ uses: actions/checkout@v4
24
+
25
+ - uses: pnpm/action-setup@v3
26
+ with:
27
+ version: 10
28
+
29
+ - name: Setup node
30
+ uses: actions/setup-node@v4
31
+ with:
32
+ node-version: 23
33
+ cache: pnpm
34
+
35
+ - name: Setup bun
36
+ uses: oven-sh/setup-bun@v2
37
+
38
+ - name: Install dependencies
39
+ run: |
40
+ pnpm install
41
+
42
+ - name: Lint
43
+ run: pnpm lint
44
+
45
+ - name: Test
46
+ run: pnpm test:coverage
@@ -21,7 +21,7 @@ jobs:
21
21
  review:
22
22
  runs-on: ubuntu-latest
23
23
  steps:
24
- - uses: aigne-io/aigne-codesmith@v0.1.0
24
+ - uses: aigne-io/aigne-code-smith@latest
25
25
  env:
26
26
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
27
  ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
@@ -32,6 +32,7 @@ jobs:
32
32
  disable_review: false
33
33
  review_simple_changes: false
34
34
  review_comment_lgtm: false
35
+ suggest_pr_title: true
35
36
  path_filters: |
36
37
  !docs/*
37
38
  !**/*.md
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.7.1](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.7.0...v0.7.1) (2025-08-31)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fix tab key path selection bug ([#72](https://github.com/AIGNE-io/aigne-doc-smith/issues/72)) ([369b342](https://github.com/AIGNE-io/aigne-doc-smith/commit/369b342d8ab8ce95b61a3b72e367157d2f71cce4))
9
+
10
+ ## [0.7.0](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.6.0...v0.7.0) (2025-08-30)
11
+
12
+
13
+ ### Features
14
+
15
+ * add chat mode support ([#60](https://github.com/AIGNE-io/aigne-doc-smith/issues/60)) ([9b2ce50](https://github.com/AIGNE-io/aigne-doc-smith/commit/9b2ce50014d1894a4e41bf043e699fdc4f1d74b7))
16
+ * support custom components and more robust config handling ([#70](https://github.com/AIGNE-io/aigne-doc-smith/issues/70)) ([727ab42](https://github.com/AIGNE-io/aigne-doc-smith/commit/727ab429b00f924ef605530b35d2a12b4be77e3a))
17
+ * support d2 chart in doc generate and publish workflow ([#69](https://github.com/AIGNE-io/aigne-doc-smith/issues/69)) ([bf95889](https://github.com/AIGNE-io/aigne-doc-smith/commit/bf958891516973636c4847b084c6fe75d1ea124b))
18
+ * support multi purpose doc planning and generating ([#68](https://github.com/AIGNE-io/aigne-doc-smith/issues/68)) ([44152c5](https://github.com/AIGNE-io/aigne-doc-smith/commit/44152c53b7e8f82e3af1245a1affd77b9817486d))
19
+
3
20
  ## [0.6.0](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.5.1...v0.6.0) (2025-08-27)
4
21
 
5
22