open-research-protocol 0.4.27 → 0.4.29
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 +48 -0
- package/README.md +39 -14
- package/bin/orp.js +14 -1
- package/cli/__pycache__/orp.cpython-311.pyc +0 -0
- package/cli/orp.py +1124 -5
- package/docs/START_HERE.md +14 -0
- package/package.json +5 -1
- package/packages/orp-workspace-launcher/src/codex.js +822 -0
- package/packages/orp-workspace-launcher/src/index.js +10 -0
- package/packages/orp-workspace-launcher/src/ledger.js +11 -1
- package/packages/orp-workspace-launcher/test/codex.test.js +309 -0
- 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/scripts/render-terminal-demo.py +262 -134
package/docs/START_HERE.md
CHANGED
|
@@ -112,6 +112,20 @@ orp init
|
|
|
112
112
|
|
|
113
113
|
`orp init` makes the repo ORP-governed. It creates the starter config/runtime scaffolding, seeds the handoff and checkpoint log, and records the repo's governance state.
|
|
114
114
|
|
|
115
|
+
For the common "new repo with GitHub, workspace tracking, Codex resume, and
|
|
116
|
+
Clawdad delegation" startup, use the explicit bootstrap form:
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
orp init --project-startup --github-repo owner/repo --current-codex
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
That keeps plain `orp init` simple, but lets startup do the repeated setup in
|
|
123
|
+
one pass. With `--project-startup`, ORP creates the private GitHub remote through
|
|
124
|
+
`gh` when `--github-repo` is present, tracks the full path in `orp workspace`
|
|
125
|
+
`main`, saves the current Codex session when `CODEX_THREAD_ID` is available,
|
|
126
|
+
and registers Clawdad delegation when `clawdad` is installed. Add
|
|
127
|
+
`--startup-dry-run --json` to inspect the external commands first.
|
|
128
|
+
|
|
115
129
|
More concretely, `orp init` does these jobs:
|
|
116
130
|
|
|
117
131
|
- creates a git repo if one does not already exist
|
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-research-protocol",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.29",
|
|
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>",
|
|
7
|
+
"funding": {
|
|
8
|
+
"type": "individual",
|
|
9
|
+
"url": "https://frg.earth/support?utm_source=npm&utm_medium=funding&utm_campaign=public_work_support&package=open-research-protocol"
|
|
10
|
+
},
|
|
7
11
|
"repository": {
|
|
8
12
|
"type": "git",
|
|
9
13
|
"url": "git+https://github.com/SproutSeeds/orp.git"
|