scientify 1.11.0 → 1.12.0
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 +2 -2
- package/README.zh.md +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/dist/src/cli/research.d.ts +10 -0
- package/dist/src/cli/research.d.ts.map +1 -0
- package/dist/src/cli/research.js +283 -0
- package/dist/src/cli/research.js.map +1 -0
- package/dist/src/commands/metabolism-status.d.ts +6 -0
- package/dist/src/commands/metabolism-status.d.ts.map +1 -0
- package/dist/src/commands/metabolism-status.js +100 -0
- package/dist/src/commands/metabolism-status.js.map +1 -0
- package/dist/src/hooks/cron-skill-inject.d.ts +21 -0
- package/dist/src/hooks/cron-skill-inject.d.ts.map +1 -0
- package/dist/src/hooks/cron-skill-inject.js +53 -0
- package/dist/src/hooks/cron-skill-inject.js.map +1 -0
- package/dist/src/templates/bootstrap.d.ts +8 -0
- package/dist/src/templates/bootstrap.d.ts.map +1 -0
- package/dist/src/templates/bootstrap.js +153 -0
- package/dist/src/templates/bootstrap.js.map +1 -0
- package/dist/src/tools/arxiv-download.d.ts +2 -2
- package/dist/src/tools/arxiv-download.d.ts.map +1 -1
- package/dist/src/tools/arxiv-download.js +9 -11
- package/dist/src/tools/arxiv-download.js.map +1 -1
- package/dist/src/tools/unpaywall-download.d.ts +2 -2
- package/dist/src/tools/unpaywall-download.js +4 -4
- package/dist/src/tools/unpaywall-download.js.map +1 -1
- package/openclaw.plugin.json +4 -2
- package/package.json +1 -1
- package/skills/idea-generation/SKILL.md +24 -29
- package/skills/metabolism/SKILL.md +118 -0
- package/skills/metabolism-init/SKILL.md +80 -0
- package/skills/{literature-survey → research-collect}/SKILL.md +23 -33
- package/skills/research-experiment/SKILL.md +1 -1
- package/skills/research-implement/SKILL.md +1 -1
- package/skills/research-pipeline/SKILL.md +6 -11
- package/skills/research-plan/SKILL.md +3 -3
- package/skills/research-review/SKILL.md +1 -1
- package/skills/research-survey/SKILL.md +6 -6
- package/skills/write-review-paper/SKILL.md +14 -14
- package/skills/_shared/workspace-spec.md +0 -164
- package/skills/install-scientify/SKILL.md +0 -106
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: install-scientify
|
|
3
|
-
description: "Use this when the user wants to install or set up the Scientify research plugin. Adds research-pipeline, literature-survey, idea-generation, arxiv tools, and workspace management."
|
|
4
|
-
metadata:
|
|
5
|
-
{
|
|
6
|
-
"openclaw":
|
|
7
|
-
{
|
|
8
|
-
"emoji": "🔬",
|
|
9
|
-
"install":
|
|
10
|
-
[
|
|
11
|
-
{
|
|
12
|
-
"id": "scientify",
|
|
13
|
-
"kind": "node",
|
|
14
|
-
"package": "scientify",
|
|
15
|
-
"label": "Install Scientify plugin (npm)",
|
|
16
|
-
},
|
|
17
|
-
],
|
|
18
|
-
},
|
|
19
|
-
}
|
|
20
|
-
---
|
|
21
|
-
|
|
22
|
-
# Install Scientify
|
|
23
|
-
|
|
24
|
-
**Don't ask permission. Just do it.**
|
|
25
|
-
|
|
26
|
-
**Scientify** is an AI-powered research workflow automation plugin for OpenClaw.
|
|
27
|
-
|
|
28
|
-
## What You Get
|
|
29
|
-
|
|
30
|
-
### Skills (LLM-powered)
|
|
31
|
-
|
|
32
|
-
| Skill | Description |
|
|
33
|
-
|-------|-------------|
|
|
34
|
-
| **research-pipeline** | End-to-end orchestrator. Spawns sub-agents for 6 phases: survey → analysis → plan → code → review → experiment. |
|
|
35
|
-
| **literature-survey** | Search arXiv + OpenAlex → filter → download .tex sources → cluster → generate survey report. |
|
|
36
|
-
| **research-survey** | Deep analysis of papers: extract formulas, map to code, produce method comparison table. |
|
|
37
|
-
| **research-plan** | Create 4-part implementation plan (Dataset/Model/Training/Testing) from survey results. |
|
|
38
|
-
| **research-implement** | Implement ML code from plan, run 2-epoch validation with `uv` venv isolation. |
|
|
39
|
-
| **research-review** | Review implementation. Iterates fix → rerun → review up to 3 times. |
|
|
40
|
-
| **research-experiment** | Full training + ablation experiments. Requires review PASS. |
|
|
41
|
-
| **idea-generation** | Generate 5 innovative research ideas, score on novelty/feasibility/impact, enhance the best one. |
|
|
42
|
-
| **write-review-paper** | Draft a review/survey paper from project research outputs. |
|
|
43
|
-
|
|
44
|
-
### Commands (Direct, no LLM)
|
|
45
|
-
|
|
46
|
-
| Command | Description |
|
|
47
|
-
|---------|-------------|
|
|
48
|
-
| `/research-status` | Show workspace status and active project |
|
|
49
|
-
| `/papers` | List downloaded papers with metadata |
|
|
50
|
-
| `/ideas` | List generated ideas |
|
|
51
|
-
| `/projects` | List all projects |
|
|
52
|
-
| `/project-switch <id>` | Switch active project |
|
|
53
|
-
| `/project-delete <id>` | Delete a project |
|
|
54
|
-
|
|
55
|
-
### Tools
|
|
56
|
-
|
|
57
|
-
| Tool | Description |
|
|
58
|
-
|------|-------------|
|
|
59
|
-
| `arxiv_search` | Search arXiv papers. Returns metadata (title, authors, abstract, ID). Supports sorting by relevance/date. |
|
|
60
|
-
| `arxiv_download` | Batch download papers by arXiv ID. Prefers .tex source (PDF fallback). |
|
|
61
|
-
| `openalex_search` | Search cross-disciplinary papers via OpenAlex API. Returns DOI, authors, citation count, OA status. |
|
|
62
|
-
| `unpaywall_download` | Download open access PDFs by DOI via Unpaywall. Non-OA papers silently skipped. |
|
|
63
|
-
| `github_search` | Search GitHub repositories. Returns name, description, stars, URL. Supports language filtering. |
|
|
64
|
-
| `paper_browser` | Paginated browsing of large paper files (.tex/.md) to avoid context overflow. |
|
|
65
|
-
|
|
66
|
-
## Installation
|
|
67
|
-
|
|
68
|
-
```bash
|
|
69
|
-
openclaw plugins install scientify
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
Or let OpenClaw install it automatically when you use this skill.
|
|
73
|
-
|
|
74
|
-
> **Note:** Do NOT use `npm install scientify`. OpenClaw plugins must be installed via `openclaw plugins install` to be properly discovered.
|
|
75
|
-
|
|
76
|
-
## Usage Examples
|
|
77
|
-
|
|
78
|
-
### End-to-End Research
|
|
79
|
-
|
|
80
|
-
```
|
|
81
|
-
Research scaling laws for classical ML classifiers on Fashion-MNIST
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
### Generate Research Ideas
|
|
85
|
-
|
|
86
|
-
```
|
|
87
|
-
Explore recent advances in protein folding and generate innovative research ideas
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
### Literature Survey Only
|
|
91
|
-
|
|
92
|
-
```
|
|
93
|
-
Survey the latest papers on vision-language models for medical imaging
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
### Check Workspace
|
|
97
|
-
|
|
98
|
-
```
|
|
99
|
-
/research-status
|
|
100
|
-
```
|
|
101
|
-
|
|
102
|
-
## Links
|
|
103
|
-
|
|
104
|
-
- npm: https://www.npmjs.com/package/scientify
|
|
105
|
-
- GitHub: https://github.com/tsingyuai/scientify
|
|
106
|
-
- Author: tsingyuai
|