@aigne/doc-smith 0.4.3 → 0.4.4
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 +7 -0
- package/agents/publish-docs.mjs +1 -5
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.4](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.4.3...v0.4.4) (2025-08-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* support assign board id ([#58](https://github.com/AIGNE-io/aigne-doc-smith/issues/58)) ([0bcc196](https://github.com/AIGNE-io/aigne-doc-smith/commit/0bcc1969131f70caf2b1bc9303a3811be1b000ab))
|
|
9
|
+
|
|
3
10
|
## [0.4.3](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.4.2...v0.4.3) (2025-08-21)
|
|
4
11
|
|
|
5
12
|
|
package/agents/publish-docs.mjs
CHANGED
|
@@ -98,11 +98,7 @@ export default async function publishDocs(
|
|
|
98
98
|
|
|
99
99
|
// Save boardId to config if it was auto-created
|
|
100
100
|
if (boardId !== newBoardId) {
|
|
101
|
-
await saveValueToConfig(
|
|
102
|
-
"boardId",
|
|
103
|
-
newBoardId,
|
|
104
|
-
"⚠️ Warning: boardId is auto-generated by system, please do not edit manually",
|
|
105
|
-
);
|
|
101
|
+
await saveValueToConfig("boardId", newBoardId);
|
|
106
102
|
}
|
|
107
103
|
const message = `✅ Documentation Published Successfully!`;
|
|
108
104
|
return {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/doc-smith",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@aigne/aigne-hub": "0.6.
|
|
16
|
-
"@aigne/anthropic": "0.11.
|
|
17
|
-
"@aigne/cli": "1.
|
|
18
|
-
"@aigne/core": "1.
|
|
19
|
-
"@aigne/gemini": "0.9.
|
|
20
|
-
"@aigne/openai": "0.12.
|
|
21
|
-
"@aigne/publish-docs": "0.5.
|
|
15
|
+
"@aigne/aigne-hub": "^0.6.8",
|
|
16
|
+
"@aigne/anthropic": "^0.11.8",
|
|
17
|
+
"@aigne/cli": "^1.39.1",
|
|
18
|
+
"@aigne/core": "^1.55.0",
|
|
19
|
+
"@aigne/gemini": "^0.9.8",
|
|
20
|
+
"@aigne/openai": "^0.12.2",
|
|
21
|
+
"@aigne/publish-docs": "^0.5.6",
|
|
22
22
|
"chalk": "^5.5.0",
|
|
23
23
|
"dompurify": "^3.2.6",
|
|
24
24
|
"glob": "^11.0.3",
|