scientify 1.1.0 → 1.1.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 (3) hide show
  1. package/README.md +39 -2
  2. package/README.zh.md +39 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -28,9 +28,24 @@
28
28
  | `/project-switch <id>` | Switch project |
29
29
  | `/project-delete <id>` | Delete project |
30
30
 
31
- ### Tool
31
+ ### Tools
32
32
 
33
- - **arxiv** - Search arXiv.org API with keyword search, date filtering, automatic .tex download
33
+ | Tool | Description |
34
+ |------|-------------|
35
+ | **arxiv_search** | Search arXiv.org API with keyword search, date filtering, automatic .tex download |
36
+ | **github_search** | Search GitHub repositories by keyword, filter by language, sort by stars/updated |
37
+
38
+ ---
39
+
40
+ ## Quick Start
41
+
42
+ ```bash
43
+ # Install
44
+ npm install scientify
45
+
46
+ # Add to your OpenClaw config, then:
47
+ openclaw "Research transformer efficiency and generate ideas"
48
+ ```
34
49
 
35
50
  ---
36
51
 
@@ -234,6 +249,28 @@ Agent: [Reading selected_idea.md and related papers]
234
249
 
235
250
  ---
236
251
 
252
+ ## Known Limitations
253
+
254
+ ### Sandbox & GPU
255
+
256
+ The `research-pipeline` skill's code execution step depends on your OpenClaw agent configuration:
257
+
258
+ - If `sandbox.mode: "off"` (default for CLI), commands run directly on host
259
+ - Current sandbox does NOT support GPU (`--gpus`) or custom shared memory (`--shm-size`)
260
+
261
+ For GPU-accelerated ML training, consider:
262
+ 1. Running outside sandbox (configure agent with `sandbox.mode: "off"`)
263
+ 2. Using a dedicated cloud GPU instance
264
+ 3. Waiting for OpenClaw GPU support
265
+
266
+ ---
267
+
268
+ ## Development
269
+
270
+ See [CLAUDE.md](./CLAUDE.md) for version update SOP and contribution guide.
271
+
272
+ ---
273
+
237
274
  ## License
238
275
 
239
276
  MIT
package/README.zh.md CHANGED
@@ -28,9 +28,24 @@
28
28
  | `/project-switch <id>` | 切换项目 |
29
29
  | `/project-delete <id>` | 删除项目 |
30
30
 
31
- ### Tool
31
+ ### Tools
32
32
 
33
- - **arxiv** - 搜索 arXiv API,支持关键词搜索、日期过滤、自动下载 .tex 源文件
33
+ | Tool | 描述 |
34
+ |------|------|
35
+ | **arxiv_search** | 搜索 arXiv API,支持关键词搜索、日期过滤、自动下载 .tex 源文件 |
36
+ | **github_search** | 搜索 GitHub 仓库,支持关键词、语言过滤、按 stars/更新时间排序 |
37
+
38
+ ---
39
+
40
+ ## 快速开始
41
+
42
+ ```bash
43
+ # 安装
44
+ npm install scientify
45
+
46
+ # 添加到 OpenClaw 配置后:
47
+ openclaw "研究 transformer 效率并生成研究想法"
48
+ ```
34
49
 
35
50
  ---
36
51
 
@@ -235,6 +250,28 @@ Agent: [读取 selected_idea.md 和相关论文]
235
250
 
236
251
  ---
237
252
 
253
+ ## 已知限制
254
+
255
+ ### Sandbox 与 GPU
256
+
257
+ `research-pipeline` skill 的代码执行步骤取决于你的 OpenClaw agent 配置:
258
+
259
+ - 如果 `sandbox.mode: "off"`(CLI 默认),命令直接在主机执行
260
+ - 当前 sandbox **不支持** GPU(`--gpus`)和自定义共享内存(`--shm-size`)
261
+
262
+ 对于需要 GPU 加速的 ML 训练:
263
+ 1. 在 sandbox 外运行(配置 agent `sandbox.mode: "off"`)
264
+ 2. 使用云 GPU 实例
265
+ 3. 等待 OpenClaw 添加 GPU 支持
266
+
267
+ ---
268
+
269
+ ## 开发
270
+
271
+ 参见 [CLAUDE.md](./CLAUDE.md) 了解版本更新流程和贡献指南。
272
+
273
+ ---
274
+
238
275
  ## License
239
276
 
240
277
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scientify",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
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",