scientify 1.13.3 → 1.13.4
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 +4 -0
- package/README.zh.md +5 -1
- package/package.json +1 -1
- package/skills/research-subscription/SKILL.md +4 -0
package/README.md
CHANGED
|
@@ -377,6 +377,10 @@ Behavior notes:
|
|
|
377
377
|
- Built-in quality gates use soft mode by default: non-fatal quality gaps are stored as warnings (`quality_gate.severity=warn`) while the run remains `ok`; only fatal issues are downgraded to `degraded_quality`.
|
|
378
378
|
- Default strict recall behavior uses tiered retrieval (topic-related + broader method + adjacent cross-domain) to avoid sparse core selection on broad topics.
|
|
379
379
|
- Each run executes at most one immediate reflection follow-up and writes trace/results back to `knowledge_state` for auditability.
|
|
380
|
+
- Hypothesis-facing response policy is gate-driven:
|
|
381
|
+
- if `knowledge_state_summary.hypothesis_gate.accepted == 0`, Scientify returns factual cycle status only (no speculative roadmap/deep-dive suggestions)
|
|
382
|
+
- if `accepted > 0`, Scientify includes hypothesis details in the current message by default
|
|
383
|
+
- when channel/runtime clearly supports multi-send, it may optionally split into two consecutive pushes (brief alert + detailed hypothesis)
|
|
380
384
|
- Lightweight preference memory is stored backend-only (keyword/source affinities) and used to rerank future pushes quietly.
|
|
381
385
|
- Incremental dedupe + memory state is persisted under `~/.openclaw/workspace/scientify/` (`literature-state.json`, `literature-push-log.jsonl`).
|
|
382
386
|
- Project-level research traceability is persisted under `~/.openclaw/workspace/projects/{project-id}/knowledge_state/`.
|
package/README.zh.md
CHANGED
|
@@ -374,7 +374,11 @@ openclaw gateway
|
|
|
374
374
|
- 一次性研究任务(`at ... --topic ...`)使用“代表论文聚焦检索”;周期任务(`daily/weekly/every/cron`)保持“增量追踪”模式。
|
|
375
375
|
- 周期增量模式会先构建候选池并评分后再选 Top-K;若本轮无“未推送新文献”,会自动再跑一轮代表性回退检索,再决定是否返回空结果。
|
|
376
376
|
- 默认 `max_papers` 为 5(可用 `--max-papers` 覆盖)。
|
|
377
|
-
- 研究记录内置质量闸门:核心论文全文覆盖率 >= 80%、证据绑定率 >= 90%、引用错误率 < 2
|
|
377
|
+
- 研究记录内置质量闸门:核心论文全文覆盖率 >= 80%、证据绑定率 >= 90%、引用错误率 < 2%。默认采用 soft gate:非致命缺口会记录为 warning(`quality_gate.severity=warn`)但保留 `ok`,仅 fatal 问题才降级为 `degraded_quality`。
|
|
378
|
+
- 假设相关回复采用门禁驱动:
|
|
379
|
+
- 当 `knowledge_state_summary.hypothesis_gate.accepted == 0`:只返回事实型周期状态(论文/阅读状态/变更/门禁),不输出泛化“下一步路线/deep dive”建议。
|
|
380
|
+
- 当 `accepted > 0`:默认在当前消息内直接给出假设详情。
|
|
381
|
+
- 仅在渠道/运行时明确支持多次发送时,才可拆成两条连续推送(简报 + 详情)。
|
|
378
382
|
- 轻量偏好记忆(关键词/来源亲和)仅后台保存,不默认展示给用户,会静默影响后续排序。
|
|
379
383
|
- 增量去重与偏好状态会持久化到 `~/.openclaw/workspace/scientify/`(`literature-state.json`、`literature-push-log.jsonl`)。
|
|
380
384
|
- 项目级研究可追溯状态会持久化到 `~/.openclaw/workspace/projects/{project-id}/knowledge_state/`。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scientify",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.4",
|
|
4
4
|
"description": "Scientify - AI-powered research workflow automation for OpenClaw. Includes idea generation, literature review, research pipeline skills, and arxiv tool.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -110,6 +110,10 @@ For selected core papers, prefer full-text reading first:
|
|
|
110
110
|
- do not emit BRIDGE unless `evidence_ids` resolve to this run's papers and include at least one full-text-backed paper
|
|
111
111
|
- Hypothesis gate:
|
|
112
112
|
- avoid speculative guesses; each hypothesis should include >=2 `evidence_ids`, `dependency_path` length >=2, and novelty/feasibility/impact scores
|
|
113
|
+
- before user-facing text, read `status.knowledge_state_summary.hypothesis_gate.accepted`
|
|
114
|
+
- if `accepted == 0`: output factual cycle report only (papers/read-status/changes/gates); do not output speculative "high-value routes"/"deep dive" guidance
|
|
115
|
+
- if `accepted > 0`: include hypothesis details in the current message by default (stable delivery path)
|
|
116
|
+
- only if runtime/channel clearly supports multi-send, optionally split into two consecutive messages (alert first, details second)
|
|
113
117
|
If an incremental pass returns no unseen papers, run one fallback representative pass before returning empty.
|
|
114
118
|
If user gives explicit preference feedback during follow-up (read/skip/star style intent, source preference, direction preference),
|
|
115
119
|
persist it via `scientify_literature_state` action=`feedback` (backend-only memory, not user-facing by default).
|