scientify 1.7.4 → 1.7.6
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/README.md +1 -1
- package/README.zh.md +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Scientify is an [OpenClaw](https://github.com/openclaw/openclaw) plugin that automates the full academic research pipeline — from literature survey to experiment execution — using LLM-driven sub-agents.
|
|
6
6
|
|
|
7
|
-
[中文文档](./README.zh.md)
|
|
7
|
+
**Website:** [scientify.tech](https://scientify.tech) | [中文文档](./README.zh.md)
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
package/README.zh.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scientify",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.6",
|
|
4
4
|
"description": "Scientify - AI-powered research workflow automation for OpenClaw. Includes idea generation, literature review, research pipeline skills, and arxiv tool.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -39,6 +39,10 @@
|
|
|
39
39
|
"prepublishOnly": "npm run clean && npm run build",
|
|
40
40
|
"release": "npm version patch && git push && git push --tags"
|
|
41
41
|
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@sinclair/typebox": "^0.32.0",
|
|
44
|
+
"tar": "^7.0.0"
|
|
45
|
+
},
|
|
42
46
|
"devDependencies": {
|
|
43
47
|
"@semantic-release/changelog": "^6.0.3",
|
|
44
48
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
@@ -46,12 +50,10 @@
|
|
|
46
50
|
"@semantic-release/github": "^12.0.3",
|
|
47
51
|
"@semantic-release/npm": "^13.1.3",
|
|
48
52
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
49
|
-
"@sinclair/typebox": "^0.32.0",
|
|
50
53
|
"@types/node": "^20.0.0",
|
|
51
54
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
52
55
|
"nodemon": "^3.1.11",
|
|
53
56
|
"semantic-release": "^25.0.3",
|
|
54
|
-
"tar": "^7.0.0",
|
|
55
57
|
"typescript": "^5.3.0"
|
|
56
58
|
},
|
|
57
59
|
"peerDependencies": {
|