open-research-protocol 0.4.32 → 0.4.34
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/CHANGELOG.md +46 -0
- package/cli/orp.py +1381 -12
- package/package.json +1 -1
- package/packages/orp-workspace-launcher/src/core-plan.js +30 -0
- package/packages/orp-workspace-launcher/src/hosted-state.js +294 -2
- package/packages/orp-workspace-launcher/src/index.js +5 -1
- package/packages/orp-workspace-launcher/src/sync.js +14 -4
- package/packages/orp-workspace-launcher/test/core-plan.test.js +48 -0
- package/packages/orp-workspace-launcher/test/hosted-state.test.js +134 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,52 @@ There was no prior in-repo changelog file, so the first formal entry starts
|
|
|
6
6
|
with the currently shipped `v0.4.4` release and summarizes the full release
|
|
7
7
|
delta reflected in this repo.
|
|
8
8
|
|
|
9
|
+
## v0.4.34 - 2026-04-30
|
|
10
|
+
|
|
11
|
+
This release connects ORP frontier plans to hosted ORP ideas/features and lets
|
|
12
|
+
workspace snapshots carry canonical project references instead of stale copied
|
|
13
|
+
task text.
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- Added `orp frontier sync-idea` to create or update a hosted ORP idea from a
|
|
18
|
+
repo's frontier TAS/current phase, then sync milestone phases as hosted
|
|
19
|
+
feature tasks with completion state.
|
|
20
|
+
- Added project-link metadata for active frontier feature ids so
|
|
21
|
+
`.git/orp/link/project.json` can map local frontier phases back to hosted
|
|
22
|
+
ORP feature records.
|
|
23
|
+
- Added workspace enrichment for linked ORP projects, including compact
|
|
24
|
+
`linkedIdeaId` / `linkedFeatureId` references and local frontier plan/task
|
|
25
|
+
summaries for workspace sync previews.
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- Workspace sync now preserves linked idea/feature references in structured
|
|
30
|
+
workspace manifests so the hosted web app can prefer canonical ORP
|
|
31
|
+
idea/features for plan and task rendering.
|
|
32
|
+
|
|
33
|
+
## v0.4.33 - 2026-04-30
|
|
34
|
+
|
|
35
|
+
This release teaches ORP to manage Codex's global instruction and startup hook
|
|
36
|
+
layer, and adds a modeled-checkoff frontier continuation for review-gated work.
|
|
37
|
+
|
|
38
|
+
### Added
|
|
39
|
+
|
|
40
|
+
- Added `orp agents codex audit` and `orp agents codex sync` to audit or
|
|
41
|
+
bootstrap Codex global `AGENTS.md`, `hooks.json`, the non-mutating
|
|
42
|
+
`SessionStart` hook script, and the `codex_hooks` feature flag.
|
|
43
|
+
- Added frontier modeled-checkoff detection and
|
|
44
|
+
`orp frontier modeled-checkoff activate` so review/checkoff blockers can be
|
|
45
|
+
converted into explicitly modeled packet-improvement work without claiming
|
|
46
|
+
real human, clinical, legal, regulatory, privacy, publication, or expert gate
|
|
47
|
+
clearance.
|
|
48
|
+
|
|
49
|
+
### Changed
|
|
50
|
+
|
|
51
|
+
- Frontier delegation preflight now reports modeled-checkoff eligibility when a
|
|
52
|
+
live frontier appears blocked on review or sign-off, while preserving existing
|
|
53
|
+
active additional work as the safer continuation when it exists.
|
|
54
|
+
|
|
9
55
|
## v0.4.32 - 2026-04-25
|
|
10
56
|
|
|
11
57
|
This release clarifies ORP's paid-work boundary so budgeted OpenAI research is
|