ai4scholar 0.5.1 → 0.6.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 -23
- package/dist/index.js +97 -240
- package/docs/tutorial.md +16 -55
- package/package.json +1 -7
- package/assets/styles.css +0 -588
- package/assets/template_fulltext.html +0 -342
- package/data/ccf_2022.jsonl +0 -649
- package/scripts/fulltext_search.py +0 -386
- package/scripts/generate_html.py +0 -632
- package/scripts/translate_titles.py +0 -156
- package/skills/literature-survey/SKILL.md +0 -168
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Powered by [ai4scholar.net](https://ai4scholar.net).
|
|
|
6
6
|
|
|
7
7
|
## What It Does
|
|
8
8
|
|
|
9
|
-
AI4Scholar gives your OpenClaw agent direct access to **6 academic platforms** through **
|
|
9
|
+
AI4Scholar gives your OpenClaw agent direct access to **6 academic platforms** through **36 built-in tools**.
|
|
10
10
|
|
|
11
11
|
### Platforms
|
|
12
12
|
|
|
@@ -85,12 +85,6 @@ AI4Scholar gives your OpenClaw agent direct access to **6 academic platforms** t
|
|
|
85
85
|
| `download_by_doi` | Download PDF by DOI (supports institutional access) |
|
|
86
86
|
| `read_by_doi` | Download + extract full text by DOI |
|
|
87
87
|
|
|
88
|
-
**Quality Evaluation (1)**
|
|
89
|
-
|
|
90
|
-
| Tool | Description |
|
|
91
|
-
|------|-------------|
|
|
92
|
-
| `paper_quality_rank` | Rank papers by CCF classification, citations, year, h-index |
|
|
93
|
-
|
|
94
88
|
**Auto-Citation (1)**
|
|
95
89
|
|
|
96
90
|
| Tool | Description |
|
|
@@ -103,12 +97,6 @@ AI4Scholar gives your OpenClaw agent direct access to **6 academic platforms** t
|
|
|
103
97
|
|------|-------------|
|
|
104
98
|
| `sci_draw` | AI-powered scientific figure generation (text-to-image, edit, style transfer, SVG, critique) |
|
|
105
99
|
|
|
106
|
-
### Skills
|
|
107
|
-
|
|
108
|
-
| Skill | Description |
|
|
109
|
-
|-------|-------------|
|
|
110
|
-
| **literature-survey** | Multi-source literature survey with HTML report generation |
|
|
111
|
-
|
|
112
100
|
### Slash Commands
|
|
113
101
|
|
|
114
102
|
| Command | Description |
|
|
@@ -194,23 +182,14 @@ ai4scholar/
|
|
|
194
182
|
│ │ ├── arxiv.ts # 3 arXiv tools
|
|
195
183
|
│ │ ├── biorxiv.ts # 6 bioRxiv/medRxiv tools
|
|
196
184
|
│ │ ├── doi-download.ts # 2 DOI-based download tools
|
|
197
|
-
│ │ ├── quality-rank.ts # Paper quality ranking (CCF)
|
|
198
185
|
│ │ ├── auto-cite.ts # Auto-citation via ai4scholar API
|
|
199
186
|
│ │ ├── sci-draw.ts # Scientific figure generation
|
|
200
187
|
│ │ ├── pdf-utils.ts # PDF download & text extraction
|
|
201
188
|
│ │ ├── result.ts # Tool result helpers
|
|
202
189
|
│ │ └── params.ts # Parameter parsing
|
|
203
190
|
│ ├── hooks/
|
|
204
|
-
│ │
|
|
205
|
-
│ │ └── inject-skill.ts # Skill injection for sub-agents
|
|
191
|
+
│ │ └── scholar-mode.ts # Scholar mode system prompt
|
|
206
192
|
│ └── commands.ts # Slash commands
|
|
207
|
-
├── scripts/ # Python helpers (HTML reports)
|
|
208
|
-
├── assets/ # Report templates
|
|
209
|
-
├── skills/
|
|
210
|
-
│ └── literature-survey/
|
|
211
|
-
│ └── SKILL.md
|
|
212
|
-
├── data/
|
|
213
|
-
│ └── ccf_2022.jsonl # CCF ranking data
|
|
214
193
|
├── docs/
|
|
215
194
|
│ └── tutorial.md # Installation & usage tutorial
|
|
216
195
|
├── openclaw.plugin.json
|