open-research-protocol 0.4.5 → 0.4.7
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 +15 -2
- package/cli/orp.py +504 -27
- package/docs/AGENT_LOOP.md +2 -0
- package/docs/CANONICAL_CLI_BOUNDARY.md +20 -1
- package/docs/ORP_REASONING_KERNEL_TECHNICAL_VALIDATION.md +353 -0
- package/docs/ORP_REASONING_KERNEL_V0_1.md +499 -0
- package/docs/benchmarks/orp_reasoning_kernel_v0_1_validation.json +197 -0
- package/examples/README.md +2 -0
- package/examples/kernel/trace-widget.task.kernel.yml +18 -0
- package/examples/orp.reasoning-kernel.starter.yml +61 -0
- package/package.json +1 -1
- package/scripts/orp-kernel-benchmark.py +452 -0
- package/spec/v1/kernel.schema.json +286 -0
- package/spec/v1/orp.config.schema.json +59 -0
- package/spec/v1/packet.schema.json +97 -0
package/README.md
CHANGED
|
@@ -22,6 +22,8 @@ verification remains independent of framing. See `modules/instruments/README.md`
|
|
|
22
22
|
- `INSTALL.md` — how to adopt ORP in an existing repo or start a new project from it
|
|
23
23
|
- `docs/AGENT_LOOP.md` — canonical operating loop when an agent is the primary ORP user
|
|
24
24
|
- `docs/CANONICAL_CLI_BOUNDARY.md` — canonical source-of-truth boundary between CLI, Rust, and web
|
|
25
|
+
- `docs/ORP_REASONING_KERNEL_V0_1.md` — draft kernel model for turning loose intent into promotable canonical artifacts
|
|
26
|
+
- `docs/ORP_REASONING_KERNEL_TECHNICAL_VALIDATION.md` — technical rationale, benchmarks, and alternatives analysis for the kernel
|
|
25
27
|
- `docs/EXTERNAL_CONTRIBUTION_GOVERNANCE.md` — canonical local-first workflow for external OSS PR work
|
|
26
28
|
- `docs/OSS_CONTRIBUTION_AGENT_LOOP.md` — agent operating rhythm for external contribution workflows
|
|
27
29
|
- `templates/` — claim, verification, failure, and issue templates
|
|
@@ -179,8 +181,9 @@ Release process:
|
|
|
179
181
|
4. Start implementation on a work branch with `orp branch start`.
|
|
180
182
|
5. Create regular checkpoint commits with `orp checkpoint create`.
|
|
181
183
|
6. Use `orp backup` whenever you want ORP to capture current work to a dedicated remote backup ref.
|
|
182
|
-
7.
|
|
183
|
-
8.
|
|
184
|
+
7. Validate promotable task/decision/hypothesis artifacts with `orp kernel validate <path> --json`.
|
|
185
|
+
8. Start by adding one small claim + verification record using the templates.
|
|
186
|
+
9. Optional (agent users): integrate ORP into your agent’s primary instruction file (see `AGENT_INTEGRATION.md`).
|
|
184
187
|
|
|
185
188
|
**Activation is procedural/social, not runtime:** nothing “turns on” automatically. ORP works only if contributors follow it.
|
|
186
189
|
|
|
@@ -191,8 +194,10 @@ ORP remains docs-first by default. For teams that want local gate execution and
|
|
|
191
194
|
- Overview: `docs/ORP_V1_ATOMIC_DISCOVERY_EVOLUTION.md`
|
|
192
195
|
- Packet schema: `spec/v1/packet.schema.json`
|
|
193
196
|
- Config schema: `spec/v1/orp.config.schema.json`
|
|
197
|
+
- Kernel schema: `spec/v1/kernel.schema.json`
|
|
194
198
|
- Lifecycle mapping: `spec/v1/LIFECYCLE_MAPPING.md`
|
|
195
199
|
- Sunflower atomic profile example: `examples/orp.sunflower-coda.atomic.yml`
|
|
200
|
+
- Kernel starter example: `examples/orp.reasoning-kernel.starter.yml`
|
|
196
201
|
|
|
197
202
|
Minimal CLI skeleton:
|
|
198
203
|
|
|
@@ -208,6 +213,7 @@ orp init
|
|
|
208
213
|
orp status --json
|
|
209
214
|
orp branch start work/<topic> --json
|
|
210
215
|
orp checkpoint create -m "describe completed unit" --json
|
|
216
|
+
orp kernel validate analysis/orp.kernel.task.yml --json
|
|
211
217
|
orp backup -m "backup current work" --json
|
|
212
218
|
orp gate run --profile default
|
|
213
219
|
orp ready --json
|
|
@@ -218,6 +224,13 @@ orp erdos sync
|
|
|
218
224
|
|
|
219
225
|
Equivalent local-repo commands are available via `./scripts/orp ...` when developing ORP itself.
|
|
220
226
|
|
|
227
|
+
Kernel helper surfaces:
|
|
228
|
+
|
|
229
|
+
```bash
|
|
230
|
+
orp kernel scaffold --artifact-class task --out analysis/trace-widget.kernel.yml --json
|
|
231
|
+
orp kernel validate analysis/trace-widget.kernel.yml --json
|
|
232
|
+
```
|
|
233
|
+
|
|
221
234
|
Run summaries are one-page markdown reports generated from `RUN.json` and intended for fast teammate review:
|
|
222
235
|
|
|
223
236
|
- what ran,
|