open-research-protocol 0.4.35 → 0.4.36
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 +8 -0
- package/cli/__pycache__/orp.cpython-311.pyc +0 -0
- package/package.json +1 -1
- package/packages/orp-workspace-launcher/src/sync.js +6 -2
- package/scripts/__pycache__/orp-kernel-agent-pilot.cpython-311.pyc +0 -0
- package/scripts/__pycache__/orp-kernel-agent-replication.cpython-311.pyc +0 -0
- package/scripts/__pycache__/orp-kernel-benchmark.cpython-311.pyc +0 -0
- package/scripts/__pycache__/orp-kernel-canonical-continuation.cpython-311.pyc +0 -0
- package/scripts/__pycache__/orp-kernel-continuation-pilot.cpython-311.pyc +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ 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.36 - 2026-04-30
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Clarified `orp workspace sync --dry-run` output for hosted workspace pushes
|
|
14
|
+
so compatibility notes are not described as stored idea notes when the hosted
|
|
15
|
+
workspace state is the authoritative payload.
|
|
16
|
+
|
|
9
17
|
## v0.4.35 - 2026-04-30
|
|
10
18
|
|
|
11
19
|
This release makes the hosted workspace sync contract canonical from the ORP
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-research-protocol",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.36",
|
|
4
4
|
"description": "ORP CLI (Open Research Protocol): workspace ledgers, secrets, scheduling, governed execution, and agent-friendly research workflows.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Fractal Research Group <cody@frg.earth>",
|
|
@@ -476,9 +476,13 @@ function summarizeSyncPreview(preview) {
|
|
|
476
476
|
` parse mode: ${preview.parseMode}`,
|
|
477
477
|
` workspace id: ${preview.workspaceId}`,
|
|
478
478
|
` tabs: ${preview.tabs.length}`,
|
|
479
|
-
` stored notes: ${preview.nextNotesLength} chars`,
|
|
480
479
|
];
|
|
481
|
-
if (preview.
|
|
480
|
+
if (preview.hostedWorkspaceId) {
|
|
481
|
+
lines.push(` compatibility notes: ${preview.nextNotesLength} chars (not written when hosted push succeeds)`);
|
|
482
|
+
} else {
|
|
483
|
+
lines.push(` stored notes: ${preview.nextNotesLength} chars`);
|
|
484
|
+
}
|
|
485
|
+
if (preview.compactedIdeaNotes && !preview.hostedWorkspaceId) {
|
|
482
486
|
lines.push(` idea notes: compact compatibility mirror; hosted workspace state carries full details`);
|
|
483
487
|
}
|
|
484
488
|
if (preview.hostedWorkspaceId) {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|