origem 0.1.0 → 0.2.0
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 +31 -25
- package/dist/index.js +275 -272
- package/package.json +12 -5
package/README.md
CHANGED
|
@@ -1,42 +1,48 @@
|
|
|
1
1
|
# origem
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
harness
|
|
3
|
+
The last mile of [Origem](https://origem-ai.web.app): connects a repository to your
|
|
4
|
+
harness and keeps the two in sync.
|
|
5
5
|
|
|
6
6
|
```bash
|
|
7
7
|
npx origem connect
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
`CLAUDE.md`, `.claude/*`
|
|
12
|
-
|
|
10
|
+
Authorises in your browser (OAuth 2.1 + PKCE — no token ever touches your clipboard),
|
|
11
|
+
writes `CLAUDE.md`, `.claude/*` and `.mcp.json`, and installs the Origem skill plus the
|
|
12
|
+
session hooks. Running it again is how you sync.
|
|
13
13
|
|
|
14
|
-
##
|
|
14
|
+
## Commands
|
|
15
15
|
|
|
16
|
-
|
|
|
16
|
+
| Command | What it does |
|
|
17
17
|
|---|---|
|
|
18
|
-
| `origem connect` |
|
|
19
|
-
| `origem status` |
|
|
20
|
-
| `origem remove` |
|
|
21
|
-
| `origem spec` |
|
|
22
|
-
| `origem doctor` |
|
|
23
|
-
| `origem bootstrap` |
|
|
24
|
-
| `origem propose` |
|
|
25
|
-
| `origem apply` |
|
|
26
|
-
| `origem watch` |
|
|
18
|
+
| `origem connect` | Connect and sync. The only command you need to start. |
|
|
19
|
+
| `origem status` | What would change, and whether you edited a managed block. |
|
|
20
|
+
| `origem remove` | Reverts everything Origem wrote, using the lock. |
|
|
21
|
+
| `origem spec` | Open specs and the stage each one is in. |
|
|
22
|
+
| `origem doctor` | Compares the harness against this repository and reports drift. |
|
|
23
|
+
| `origem bootstrap` | Reads the repository and proposes a whole harness. |
|
|
24
|
+
| `origem propose` | Suggests one change — stays pending until someone accepts it. |
|
|
25
|
+
| `origem apply` | Re-applies with the stored credential, without the browser. |
|
|
26
|
+
| `origem watch` | Runs queued commands even with no session open. |
|
|
27
27
|
|
|
28
|
-
`origem help`
|
|
28
|
+
`origem help` lists every option.
|
|
29
29
|
|
|
30
|
-
##
|
|
30
|
+
## What a harness is
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
A complete Claude Code setup: instructions, rules, boundaries, memory, skills,
|
|
33
|
+
subagents, commands, runtime settings and MCP servers. Its shape is fixed, because
|
|
34
|
+
Claude Code dictates it — so each compartment maps to a known file on disk.
|
|
35
35
|
|
|
36
|
-
##
|
|
36
|
+
## Privacy
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
`doctor` and `bootstrap` read the repository **on your machine**. What goes up is the
|
|
39
|
+
summary — never the files. Origem never reaches into your computer: the CLI always
|
|
40
|
+
pulls, nothing is pushed to you.
|
|
41
|
+
|
|
42
|
+
## Trust
|
|
43
|
+
|
|
44
|
+
Privileged files (`settings.json` with hooks or env, `.mcp.json` with `command`) require
|
|
45
|
+
confirmation before being written. Set `ORIGEM_SIGNING_SECRET` to require a signed
|
|
46
|
+
payload.
|
|
41
47
|
|
|
42
48
|
MIT.
|