open-research-protocol 0.4.4 → 0.4.6
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 +14 -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_V0_1.md +495 -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/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,7 @@ 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
|
|
25
26
|
- `docs/EXTERNAL_CONTRIBUTION_GOVERNANCE.md` — canonical local-first workflow for external OSS PR work
|
|
26
27
|
- `docs/OSS_CONTRIBUTION_AGENT_LOOP.md` — agent operating rhythm for external contribution workflows
|
|
27
28
|
- `templates/` — claim, verification, failure, and issue templates
|
|
@@ -179,8 +180,9 @@ Release process:
|
|
|
179
180
|
4. Start implementation on a work branch with `orp branch start`.
|
|
180
181
|
5. Create regular checkpoint commits with `orp checkpoint create`.
|
|
181
182
|
6. Use `orp backup` whenever you want ORP to capture current work to a dedicated remote backup ref.
|
|
182
|
-
7.
|
|
183
|
-
8.
|
|
183
|
+
7. Validate promotable task/decision/hypothesis artifacts with `orp kernel validate <path> --json`.
|
|
184
|
+
8. Start by adding one small claim + verification record using the templates.
|
|
185
|
+
9. Optional (agent users): integrate ORP into your agent’s primary instruction file (see `AGENT_INTEGRATION.md`).
|
|
184
186
|
|
|
185
187
|
**Activation is procedural/social, not runtime:** nothing “turns on” automatically. ORP works only if contributors follow it.
|
|
186
188
|
|
|
@@ -191,8 +193,10 @@ ORP remains docs-first by default. For teams that want local gate execution and
|
|
|
191
193
|
- Overview: `docs/ORP_V1_ATOMIC_DISCOVERY_EVOLUTION.md`
|
|
192
194
|
- Packet schema: `spec/v1/packet.schema.json`
|
|
193
195
|
- Config schema: `spec/v1/orp.config.schema.json`
|
|
196
|
+
- Kernel schema: `spec/v1/kernel.schema.json`
|
|
194
197
|
- Lifecycle mapping: `spec/v1/LIFECYCLE_MAPPING.md`
|
|
195
198
|
- Sunflower atomic profile example: `examples/orp.sunflower-coda.atomic.yml`
|
|
199
|
+
- Kernel starter example: `examples/orp.reasoning-kernel.starter.yml`
|
|
196
200
|
|
|
197
201
|
Minimal CLI skeleton:
|
|
198
202
|
|
|
@@ -208,6 +212,7 @@ orp init
|
|
|
208
212
|
orp status --json
|
|
209
213
|
orp branch start work/<topic> --json
|
|
210
214
|
orp checkpoint create -m "describe completed unit" --json
|
|
215
|
+
orp kernel validate analysis/orp.kernel.task.yml --json
|
|
211
216
|
orp backup -m "backup current work" --json
|
|
212
217
|
orp gate run --profile default
|
|
213
218
|
orp ready --json
|
|
@@ -218,6 +223,13 @@ orp erdos sync
|
|
|
218
223
|
|
|
219
224
|
Equivalent local-repo commands are available via `./scripts/orp ...` when developing ORP itself.
|
|
220
225
|
|
|
226
|
+
Kernel helper surfaces:
|
|
227
|
+
|
|
228
|
+
```bash
|
|
229
|
+
orp kernel scaffold --artifact-class task --out analysis/trace-widget.kernel.yml --json
|
|
230
|
+
orp kernel validate analysis/trace-widget.kernel.yml --json
|
|
231
|
+
```
|
|
232
|
+
|
|
221
233
|
Run summaries are one-page markdown reports generated from `RUN.json` and intended for fast teammate review:
|
|
222
234
|
|
|
223
235
|
- what ran,
|