@yeyuan98/opencode-bioresearcher-plugin 1.2.2 → 1.2.3

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 +61 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,12 +1,19 @@
1
1
  # BioResearcher Plugin
2
2
 
3
- OpenCode plugin that adds a `Bioresearcher` agent.
3
+ OpenCode plugin that adds agents and tools for biomedical and pharmaceutical research.
4
4
 
5
5
  ## Overview
6
6
 
7
- No nonsense and powerful. An agent that just works for your typical biomedical and pharmaceutical research needs.
7
+ No nonsense and powerful. Agents and tools that just work for your typical biomedical and pharmaceutical research needs.
8
8
 
9
- Tab to activate the Bioresearcher Agent and starting asking right away.
9
+ Tab to activate and start asking right away:
10
+
11
+ - The **Bioresearcher Agent** is jack-of-all-trades.
12
+ - The **BioresearcherDR Agent** is a specialist for biomed/pharma deep research (DR).
13
+
14
+ ## Agents
15
+
16
+ ### BioresearcherDR
10
17
 
11
18
  By default, it will conduct **highly detailed and in-depth** research, easily surpassing all general purpose LLM applications.
12
19
 
@@ -16,7 +23,57 @@ To reduce research depth and make research process faster, start your question w
16
23
  light-research Significance of KRAS for cancer?
17
24
  ```
18
25
 
19
- Based on fantastic work of the [BioMCP Team](https://biomcp.org/blog/ai-assisted-clinical-trial-search-analysis/).
26
+ To skip the Question-Clarification cycle, prompt your question with `no-interview`:
27
+
28
+ ```text
29
+ no-interview light-research Significance of KRAS for cancer?
30
+ ```
31
+
32
+ ## Tools
33
+
34
+ ### Table Tools
35
+
36
+ Manipulate Excel, CSV, and ODS files with precision and smart parsing for dates, numbers, and data types.
37
+
38
+ **Enable LLMs to wrangle huge tables WITHOUT overwhelming model context.**
39
+
40
+ ```text
41
+ What are tools for table processing?
42
+ What are column names in XXX.xlsx?
43
+ Analyze XXX.xlsx - group by Y column, and report unique values of Z column.
44
+ ```
45
+
46
+ ### Calculator
47
+
48
+ Evaluate mathematical expressions with full support for brackets, powers, and scientific notation.
49
+
50
+ **Make your model accurate with numbers. No more 3.11 > 3.9 nor 1+2=5.**
51
+
52
+ ```text
53
+ Use the calculator tool: (3+1.5*6-1/2)^3
54
+ ```
55
+
56
+ ### Blocking Timer
57
+
58
+ Pause execution for testing or pacing operations.
59
+
60
+ **Respect API rate limits. No more IP bans/blocks.**
61
+
62
+ ```text
63
+ Query XXX API. You MUST include a 0.5 second delay between two API calls with the blockingTimer tool.
64
+ ```
65
+
66
+ ### PubMed Parser
67
+
68
+ Parse PubMed XML files to markdown or Excel format. Supports `.xml` and `.xml.gz` files.
69
+
70
+ **Analyze years of publication articles in one go. Simple and powerful.**
71
+
72
+ ```text
73
+ Download pubmed article data from https://ftp.ncbi.nlm.nih.gov/pubmed/updatefiles/pubmed26n1340.xml.gz and parse to Excel format.
74
+ ```
75
+
76
+ Reference: [PubMed Download Data](https://pubmed.ncbi.nlm.nih.gov/download/).
20
77
 
21
78
  ## Installation
22
79
 
@@ -52,4 +109,3 @@ BioMCP is absolutely required and might take time to load. You will need to have
52
109
  ## License
53
110
 
54
111
  CC BY-NC-ND 4.0
55
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeyuan98/opencode-bioresearcher-plugin",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "OpenCode plugin that adds a bioresearcher agent",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",