scientify 1.1.2 → 1.1.3

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 (3) hide show
  1. package/README.md +30 -13
  2. package/README.zh.md +30 -13
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -40,10 +40,10 @@
40
40
  ## Quick Start
41
41
 
42
42
  ```bash
43
- # Install
44
- npm install scientify
43
+ # Install the plugin
44
+ openclaw plugins install scientify
45
45
 
46
- # Add to your OpenClaw config, then:
46
+ # Start using
47
47
  openclaw "Research transformer efficiency and generate ideas"
48
48
  ```
49
49
 
@@ -52,16 +52,12 @@ openclaw "Research transformer efficiency and generate ideas"
52
52
  ## Installation
53
53
 
54
54
  ```bash
55
- npm install scientify
55
+ openclaw plugins install scientify
56
56
  ```
57
57
 
58
- Add to OpenClaw config:
58
+ > **Note:** Do NOT use `npm install scientify`. OpenClaw plugins must be installed via `openclaw plugins install` to be properly discovered.
59
59
 
60
- ```json
61
- {
62
- "plugins": ["scientify"]
63
- }
64
- ```
60
+ The plugin will be installed to `~/.openclaw/extensions/scientify/` and automatically enabled.
65
61
 
66
62
  ---
67
63
 
@@ -236,17 +232,38 @@ Agent: [Reading selected_idea.md and related papers]
236
232
 
237
233
  ## Configuration
238
234
 
235
+ After installation, the plugin is automatically enabled. You can customize settings in `~/.openclaw/openclaw.json`:
236
+
239
237
  ```json
240
238
  {
241
239
  "plugins": {
242
- "scientify": {
243
- "workspaceRoot": "~/my-research",
244
- "defaultMaxPapers": 15
240
+ "entries": {
241
+ "scientify": {
242
+ "enabled": true,
243
+ "workspaceRoot": "~/my-research",
244
+ "defaultMaxPapers": 15
245
+ }
245
246
  }
246
247
  }
247
248
  }
248
249
  ```
249
250
 
251
+ ### Plugin Management
252
+
253
+ ```bash
254
+ # List installed plugins
255
+ openclaw plugins list
256
+
257
+ # Disable plugin
258
+ openclaw plugins disable scientify
259
+
260
+ # Enable plugin
261
+ openclaw plugins enable scientify
262
+
263
+ # Update to latest version
264
+ openclaw plugins update scientify
265
+ ```
266
+
250
267
  ---
251
268
 
252
269
  ## Known Limitations
package/README.zh.md CHANGED
@@ -40,10 +40,10 @@
40
40
  ## 快速开始
41
41
 
42
42
  ```bash
43
- # 安装
44
- npm install scientify
43
+ # 安装插件
44
+ openclaw plugins install scientify
45
45
 
46
- # 添加到 OpenClaw 配置后:
46
+ # 开始使用
47
47
  openclaw "研究 transformer 效率并生成研究想法"
48
48
  ```
49
49
 
@@ -52,16 +52,12 @@ openclaw "研究 transformer 效率并生成研究想法"
52
52
  ## 安装
53
53
 
54
54
  ```bash
55
- npm install scientify
55
+ openclaw plugins install scientify
56
56
  ```
57
57
 
58
- 添加到 OpenClaw 配置:
58
+ > **注意:** 不要使用 `npm install scientify`。OpenClaw 插件必须通过 `openclaw plugins install` 安装才能被正确发现。
59
59
 
60
- ```json
61
- {
62
- "plugins": ["scientify"]
63
- }
64
- ```
60
+ 插件将安装到 `~/.openclaw/extensions/scientify/` 并自动启用。
65
61
 
66
62
  ---
67
63
 
@@ -237,17 +233,38 @@ Agent: [读取 selected_idea.md 和相关论文]
237
233
 
238
234
  ## 配置
239
235
 
236
+ 安装后插件自动启用。可以在 `~/.openclaw/openclaw.json` 中自定义设置:
237
+
240
238
  ```json
241
239
  {
242
240
  "plugins": {
243
- "scientify": {
244
- "workspaceRoot": "~/my-research",
245
- "defaultMaxPapers": 15
241
+ "entries": {
242
+ "scientify": {
243
+ "enabled": true,
244
+ "workspaceRoot": "~/my-research",
245
+ "defaultMaxPapers": 15
246
+ }
246
247
  }
247
248
  }
248
249
  }
249
250
  ```
250
251
 
252
+ ### 插件管理
253
+
254
+ ```bash
255
+ # 列出已安装插件
256
+ openclaw plugins list
257
+
258
+ # 禁用插件
259
+ openclaw plugins disable scientify
260
+
261
+ # 启用插件
262
+ openclaw plugins enable scientify
263
+
264
+ # 更新到最新版本
265
+ openclaw plugins update scientify
266
+ ```
267
+
251
268
  ---
252
269
 
253
270
  ## 已知限制
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scientify",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
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",