ai4scholar 0.6.1 → 0.6.2

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 (2) hide show
  1. package/README.md +14 -4
  2. package/package.json +8 -1
package/README.md CHANGED
@@ -19,7 +19,7 @@ AI4Scholar gives your OpenClaw agent direct access to **6 academic platforms** t
19
19
  | **bioRxiv** | Biology preprints |
20
20
  | **medRxiv** | Health sciences preprints |
21
21
 
22
- ### Tools (37)
22
+ ### Tools (36)
23
23
 
24
24
  **Search (9)**
25
25
 
@@ -113,10 +113,22 @@ AI4Scholar gives your OpenClaw agent direct access to **6 academic platforms** t
113
113
  openclaw plugins install ai4scholar
114
114
  ```
115
115
 
116
+ ### From GitHub
117
+
118
+ ```bash
119
+ openclaw plugins install github:literaf/ai4scholar
120
+ ```
121
+
116
122
  After installation, **restart the gateway**:
117
123
 
118
124
  ```bash
119
- openclaw gateway
125
+ openclaw gateway stop && openclaw gateway start
126
+ ```
127
+
128
+ ### Update
129
+
130
+ ```bash
131
+ openclaw plugins update ai4scholar
120
132
  ```
121
133
 
122
134
  ### Verify
@@ -190,8 +202,6 @@ ai4scholar/
190
202
  │ ├── hooks/
191
203
  │ │ └── scholar-mode.ts # Scholar mode system prompt
192
204
  │ └── commands.ts # Slash commands
193
- ├── docs/
194
- │ └── tutorial.md # Installation & usage tutorial
195
205
  ├── openclaw.plugin.json
196
206
  └── index.ts
197
207
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai4scholar",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Multi-source academic literature search, management, and analysis plugin for OpenClaw. Powered by ai4scholar.net.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -24,6 +24,13 @@
24
24
  "author": "ai4scholar",
25
25
  "license": "MIT",
26
26
  "homepage": "https://ai4scholar.net?src=openclaw",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/literaf/ai4scholar.git"
30
+ },
31
+ "bugs": {
32
+ "url": "https://github.com/literaf/ai4scholar/issues"
33
+ },
27
34
  "scripts": {
28
35
  "build": "node esbuild.config.mjs",
29
36
  "build:tsc": "tsc --noEmit",