easyresearch 0.0.62 → 0.0.64

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 +25 -20
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,36 +1,41 @@
1
1
  # easyresearch
2
2
 
3
- Automated academic paper writing CLI with a local web panel.
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
- Self-contained binary per platform (no Bun/Node required). On first run it
11
- creates a local Python venv (`markitdown`, `arxiv`) and extracts bundled
12
- agents/skills — watch the terminal for progress. Requires Python 3 on PATH
13
- for PDF conversion and arXiv SDK features; everything else works without it.
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 web panel at http://127.0.0.1:3000
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
- linux-x64, darwin-arm64, windows-x64. On other platforms the install fails
26
- with a clear message build from source instead:
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
- See `scripts/build.ts` `TARGETS` for valid <target> names.
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.62",
4
- "description": "Automated academic paper writing CLI built on the Pi agent harness",
3
+ "version": "0.0.64",
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.62",
27
- "easyresearch-darwin-arm64": "0.0.62",
28
- "easyresearch-windows-x64": "0.0.62"
26
+ "easyresearch-linux-x64": "0.0.64",
27
+ "easyresearch-darwin-arm64": "0.0.64",
28
+ "easyresearch-windows-x64": "0.0.64"
29
29
  },
30
30
  "publishConfig": {
31
31
  "registry": "https://registry.npmjs.org/"