opencode-bioresearcher 1.6.0 → 1.7.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/connector-meta.json +1 -1
- package/package.json +1 -1
- package/skills/bioresearcher-deep-research/SKILL.md +22 -3
- package/skills/bioresearcher-deep-research/references/citations.md +3 -0
- package/skills/bioresearcher-deep-research/references/report-template.md +1 -0
- package/skills/bioresearcher-deep-research/scripts/markdown-to-html.py +1884 -35
- package/skills/bioresearcher-deep-research/scripts/vet-references.py +330 -0
package/connector-meta.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"description_en": "Biomedical research plugin for OpenCode: biomcp MCP server tools for literature, clinical trials, genes, variants, drugs, diseases and patents, plus skills for publication-grade figures and deep-research subagent.",
|
|
8
8
|
"source": "bioresearcher",
|
|
9
9
|
"type": "plugin",
|
|
10
|
-
"version": "1.
|
|
10
|
+
"version": "1.7.0",
|
|
11
11
|
"harness": "opencode",
|
|
12
12
|
"examples_zh": [
|
|
13
13
|
"帮我做一个关于肿瘤免疫治疗的多方面文献综述并附引用",
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ description: "Deep biomedical research orchestrator powered by the biomcp MCP se
|
|
|
4
4
|
license: Apache-2.0
|
|
5
5
|
compatibility: "Any Agent Skills harness (opencode, Claude Code, Codex, Cursor, Gemini CLI) with the biomcp MCP server connected; the Claude Code plugin bundles the server and the bioresearcher-dr-worker subagent; a subagent/Task tool is optional - a sequential fallback is provided. The allowed-tools mcp__ entries apply on Claude Code only"
|
|
6
6
|
metadata:
|
|
7
|
-
version: "1.
|
|
7
|
+
version: "1.2.0"
|
|
8
8
|
source: "opencode-bioresearcher-plugin@1.7.2"
|
|
9
9
|
allowed-tools: Read Write Bash Task mcp__plugin_bioresearcher_biomcp mcp__biomcp
|
|
10
10
|
---
|
|
@@ -214,11 +214,30 @@ final report addressing the user's inquiry, following the mandatory 6-section
|
|
|
214
214
|
structure in `references/report-template.md` (Executive Summary, Data Sources,
|
|
215
215
|
Analysis Methodology, Findings, Limitations, References) with full
|
|
216
216
|
bibliography. Reconcile conflicting findings across aspects explicitly rather
|
|
217
|
-
than silently dropping one side.
|
|
217
|
+
than silently dropping one side. Write the synthesized draft to
|
|
218
|
+
`reports/<TOPIC>/final_report.md`.
|
|
219
|
+
|
|
220
|
+
### Step 5b: Vet references (independent NCBI verification)
|
|
221
|
+
|
|
222
|
+
After synthesizing `reports/<TOPIC>/final_report.md`, run the independent
|
|
223
|
+
reference vetting script to programmatically validate citations against NCBI
|
|
224
|
+
PubMed E-utilities and backfill volume, issue, and page numbers:
|
|
225
|
+
|
|
226
|
+
```bash
|
|
227
|
+
python3 <skill_dir>/scripts/vet-references.py reports/<TOPIC>/final_report.md --apply
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
- **Fail-safe contract**: on API timeout, rate-limiting, or network failure, the
|
|
231
|
+
script exits 0 and keeps pre-vetting citations unchanged. Non-PMID citations
|
|
232
|
+
(clinical trials, patents, genes, web URLs) are automatically preserved.
|
|
233
|
+
- If the script is unreachable (in harnesses without filesystem access to
|
|
234
|
+
`<skill_dir>`), proceed directly to Step 6 without blocking.
|
|
235
|
+
- When run without `--apply`, the script outputs clean correction suggestions
|
|
236
|
+
for manual inspection before final HTML rendering.
|
|
218
237
|
|
|
219
238
|
### Step 6: Write final report + HTML
|
|
220
239
|
|
|
221
|
-
-
|
|
240
|
+
- Ensure `reports/<TOPIC>/final_report.md` is finalized and vetted.
|
|
222
241
|
- Then render `reports/<TOPIC>/final_report.html` - ALWAYS by default,
|
|
223
242
|
unless the query carries the leading `no-html` prefix or the user
|
|
224
243
|
explicitly declined HTML. The markdown report is the complete deliverable;
|
|
@@ -33,6 +33,9 @@ Example:
|
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
When PMID is unavailable, use DOI: `DOI: 10.xxxx/xxxxx`. Both may be given.
|
|
36
|
+
Online ahead of print records may omit Volume(Issue):Pages until assigned;
|
|
37
|
+
`scripts/vet-references.py` automatically resolves and backfills these fields
|
|
38
|
+
via NCBI PubMed E-utilities.
|
|
36
39
|
|
|
37
40
|
### Clinical trials (from trial_search / trial_get)
|
|
38
41
|
|
|
@@ -105,6 +105,7 @@ combination [4]."
|
|
|
105
105
|
- [ ] Access dates for web/official-site sources
|
|
106
106
|
- [ ] Limitations honest about gaps and auth-gated tools not used
|
|
107
107
|
- [ ] Findings re-numbered into one bibliography in final_report.md
|
|
108
|
+
- [ ] References vetted against NCBI via vet-references.py (volume, issue, pages backfilled)
|
|
108
109
|
- [ ] Conflicting findings surfaced, not silently dropped
|
|
109
110
|
|
|
110
111
|
## Common mistakes
|