-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllms.txt
More file actions
61 lines (46 loc) · 2.4 KB
/
Copy pathllms.txt
File metadata and controls
61 lines (46 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# ORP
ORP (Open Research Protocol) is a docs-first, local-first, agent-friendly protocol and CLI for research workflows.
## Start Here
- `README.md` — high-level overview, install path, pack flow, and validated examples.
- `PROTOCOL.md` — process boundary and operating rules.
- `AGENT_INTEGRATION.md` — how to make ORP the default mode for an AI agent.
- `INSTALL.md` — adopt ORP in an existing repo or start fresh.
- `docs/AGENT_LOOP.md` — canonical ORP loop for agent-led workflows.
## Fast Machine Discovery
- Run `orp about --json` for machine-readable tool metadata, artifact paths, schemas, supported commands, and bundled packs.
- Run `orp youtube inspect <youtube-url> --json` to normalize a public YouTube video into ORP's source artifact shape, including full transcript text and timing segments when public caption tracks are available.
- Run `orp erdos sync --json` for machine-readable Erdos catalog sync results.
- Run `orp pack list --json` for machine-readable bundled pack inventory.
- Core runtime commands also support `--json`:
- `orp init --json`
- `orp gate run --profile <profile> --json`
- `orp packet emit --profile <profile> --json`
- `orp report summary --json`
- `orp pack install --pack-id <pack-id> --json`
- `orp pack fetch --source <git-url> --pack-id <pack-id> --install-target . --json`
## Stable Artifact Paths
- `orp/state.json`
- `orp/artifacts/<run_id>/RUN.json`
- `orp/artifacts/<run_id>/RUN_SUMMARY.md`
- `orp/packets/<packet_id>.json`
- `orp/packets/<packet_id>.md`
- `RUN.json.epistemic_status` and packet `evidence_status` explicitly mark starter/stub/evidence boundaries.
## Schemas
- `spec/v1/orp.config.schema.json`
- `spec/v1/packet.schema.json`
- `spec/v1/profile-pack.schema.json`
- `spec/v1/youtube-source.schema.json`
## Key Commands
- `orp init`
- `orp youtube inspect <youtube-url> --json`
- `orp gate run --profile <profile>`
- `orp packet emit --profile <profile>`
- `orp report summary`
- `orp erdos sync`
- `orp pack list`
- `orp pack install --pack-id erdos-open-problems`
- `orp pack fetch --source <git-url> --pack-id <pack-id> --install-target .`
## Included Pack
- `packs/erdos-open-problems/` — public Erdos catalog sync plus starter flows for Problem 857, live compare, and governance.
## Important Boundary
ORP files are process-only. They are not evidence. Evidence belongs in canonical artifact paths such as code, data, proofs, logs, and papers.