@zortexhq/install 0.1.23 → 0.1.25
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 +18 -18
- package/dist/indrad-main.js +80 -80
- package/dist/zortex.js +148 -144
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,37 +50,37 @@ a bare `zortex` starts the same automatic agent onboarding.
|
|
|
50
50
|
1. Zortex checks the inherited Codex/Terminal Windows token. It does not ask
|
|
51
51
|
for broad elevation and does not use a model on the normal path.
|
|
52
52
|
2. It records a reversible Autopilot receipt, configures its own read-only
|
|
53
|
-
Codex MCP bridge, and
|
|
54
|
-
|
|
55
|
-
a preliminary sample.
|
|
53
|
+
Codex MCP bridge, and authorizes every released source. Connection reads no
|
|
54
|
+
messages or files.
|
|
56
55
|
3. If a provider needs OAuth, Zortex opens the provider page itself. The user
|
|
57
56
|
completes only password entry, MFA, consent, CAPTCHA, hardware-key touch, or
|
|
58
57
|
account-risk confirmation in that provider surface. Zortex never asks the
|
|
59
58
|
user to run a shell command or paste a credential.
|
|
60
59
|
4. The user may ask a question as soon as authorization is connected. Codex
|
|
61
|
-
checks the receipt
|
|
60
|
+
checks the receipt:
|
|
62
61
|
|
|
63
62
|
```powershell
|
|
64
63
|
zortex autopilot connect-status <receipt-id>
|
|
65
64
|
```
|
|
66
65
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
66
|
+
For each question Codex selects the minimum relevant connected sources and a
|
|
67
|
+
question-sized batch, then runs
|
|
68
|
+
`zortex retrieve <source> --query <provider-query> --limit <n> --json`.
|
|
69
|
+
If evidence is insufficient it increases the limit. An explicit complete or
|
|
70
|
+
all-results request uses `--all` and exhausts only matching provider pages.
|
|
71
|
+
5. Codex uses the read-only `indra.context` bridge over those retrieved records
|
|
72
|
+
and cites the returned Zortex references.
|
|
73
73
|
|
|
74
|
-
There is no
|
|
75
|
-
|
|
74
|
+
There is no onboarding sample or background backfill. Every answer reports the
|
|
75
|
+
query scope, records retrieved, and whether all matches were exhausted.
|
|
76
76
|
|
|
77
77
|
### Supported Windows Autopilot sources
|
|
78
78
|
|
|
79
|
-
| Source |
|
|
79
|
+
| Source | Connection and question-time read | Notes |
|
|
80
80
|
| --- | --- | --- |
|
|
81
|
-
| `gmail` |
|
|
82
|
-
| `google-drive` |
|
|
83
|
-
| `outlook` |
|
|
81
|
+
| `gmail` | OAuth connection; adaptive matching-message pages | Uses the existing read-only Gmail connector and its declared exclusions. |
|
|
82
|
+
| `google-drive` | OAuth connection; adaptive matching-file pages | Uses the existing read-only Drive connector and its declared exclusions. |
|
|
83
|
+
| `outlook` | OAuth connection; adaptive matching-message pages | Uses the existing read-only Outlook connector. |
|
|
84
84
|
| `notion` | Connector fabrication | No released automatic authorization route yet; request files or joins a D29 build order. |
|
|
85
85
|
| `posthog` | Connector fabrication | No released automatic authorization route yet; request files or joins a D29 build order. |
|
|
86
86
|
| `whatsapp` | Deferred | Not part of this Windows Preview. |
|
|
@@ -107,8 +107,8 @@ records. Use the product's audited privacy-erasure path for data deletion.
|
|
|
107
107
|
repair. Do not paste a credential or run a repair command yourself.
|
|
108
108
|
- `codex` not found: install/start the local Codex CLI first, then rerun the
|
|
109
109
|
explicit onboarding command.
|
|
110
|
-
-
|
|
111
|
-
`
|
|
110
|
+
- Broad question: use a precise provider query and increase its batch until the
|
|
111
|
+
evidence is sufficient; use `--all` only when the user explicitly asks.
|
|
112
112
|
|
|
113
113
|
When Codex invokes the npm launcher with no command, it starts
|
|
114
114
|
`zortex onboard --agent --host codex`. That scripted onboarding first proves
|