easyresearch 0.0.63 → 0.0.65
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 +25 -20
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,36 +1,41 @@
|
|
|
1
1
|
# easyresearch
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Local AI research workspace for traceable literature reviews, reproducible
|
|
4
|
+
experiments, publication figures, and evidence-grounded papers.
|
|
4
5
|
|
|
5
6
|
```sh
|
|
6
|
-
npm install -g easyresearch
|
|
7
|
+
npm install -g easyresearch@latest
|
|
7
8
|
easyresearch
|
|
8
9
|
```
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
Choose a local project directory in the browser, connect a provider in Settings,
|
|
12
|
+
then describe a task or use a workflow command:
|
|
13
|
+
|
|
14
|
+
```text
|
|
15
|
+
/research-project-workflow Survey recent methods for few-shot fault diagnosis.
|
|
16
|
+
/autoresearch Improve validation macro-F1 with at most 20 trials.
|
|
17
|
+
/customize-easyresearch Add an Agent that audits medical-paper evidence.
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Every Skill loaded by the current Agent is available as `/<skill-name>`.
|
|
21
|
+
Name collisions use the explicit `/skill:<skill-name>` form.
|
|
22
|
+
|
|
23
|
+
The first run extracts bundled Agents and Skills and creates a Python environment
|
|
24
|
+
for paper search and conversion; watch the terminal for progress. Python 3 on
|
|
25
|
+
`PATH` enables PDF conversion, arXiv SDK features, and bundled Web search.
|
|
26
|
+
Startup degrades gracefully when Python is unavailable.
|
|
14
27
|
|
|
15
28
|
```sh
|
|
16
|
-
easyresearch # start the
|
|
29
|
+
easyresearch # start the local Web workspace
|
|
17
30
|
easyresearch exit # stop the background service
|
|
18
31
|
easyresearch --version
|
|
19
32
|
```
|
|
20
33
|
|
|
21
|
-
Skip first-run setup with `EASYRESEARCH_SKIP_SETUP=1`.
|
|
22
|
-
|
|
23
34
|
## Supported platforms
|
|
24
35
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
```sh
|
|
29
|
-
git clone https://github.com/hdu-ailab/EasyResearch.git
|
|
30
|
-
cd EasyResearch
|
|
31
|
-
bun install
|
|
32
|
-
bun run build:release -- --only <target> # e.g. linux-arm64
|
|
33
|
-
# binary at release/easyresearch-<target>/bin/easyresearch
|
|
34
|
-
```
|
|
36
|
+
Linux x64, macOS arm64, and Windows x64. The selected platform executable needs
|
|
37
|
+
neither Node nor Bun. Windows runs natively through PowerShell without WSL or
|
|
38
|
+
Git Bash.
|
|
35
39
|
|
|
36
|
-
|
|
40
|
+
Project page and full documentation:
|
|
41
|
+
https://github.com/hdu-ailab/EasyResearch
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easyresearch",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.65",
|
|
4
|
+
"description": "Local AI research workspace for literature, experiments, figures, and papers",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"easyresearch": "./launcher.mjs"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"easyresearch-linux-x64": "0.0.
|
|
27
|
-
"easyresearch-darwin-arm64": "0.0.
|
|
28
|
-
"easyresearch-windows-x64": "0.0.
|
|
26
|
+
"easyresearch-linux-x64": "0.0.65",
|
|
27
|
+
"easyresearch-darwin-arm64": "0.0.65",
|
|
28
|
+
"easyresearch-windows-x64": "0.0.65"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"registry": "https://registry.npmjs.org/"
|