replicas-engine 0.1.667 → 0.1.669
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 +4 -4
- package/dist/src/app-server-process-GBLLP2RH.js +10 -0
- package/dist/src/{chunk-P2Q47GLV.js → chunk-6JWWD5NM.js} +200 -699
- package/dist/src/chunk-CBZ5YQAS.js +448 -0
- package/dist/src/chunk-IRM6KMN5.js +407 -0
- package/dist/src/chunk-LO6ISJCF.js +162 -0
- package/dist/src/chunk-XQW4B35Y.js +108 -0
- package/dist/src/codex-token-manager-KL7GDOF4.js +13 -0
- package/dist/src/engine-env-M3LJZ6ZJ.js +14 -0
- package/dist/src/headless-agent.js +49 -34
- package/dist/src/index.js +428 -803
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,14 +80,14 @@ From `monolith/src/lib/sandbox-helpers.ts` + `monolith/src/lib/workspaces.ts`, t
|
|
|
80
80
|
- file: `~/.claude/.bedrock-credentials.json`
|
|
81
81
|
- env: `CLAUDE_CODE_USE_BEDROCK=1`, `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_REGION`
|
|
82
82
|
- Codex credentials (optional):
|
|
83
|
-
-
|
|
84
|
-
-
|
|
83
|
+
- OAuth access tokens are supplied through Codex ASP external authentication.
|
|
84
|
+
- Provisioning writes `~/.codex/auth.json` for older engines; current engines remove it before starting Codex.
|
|
85
85
|
|
|
86
86
|
Token refresh managers may later overwrite credential files in place:
|
|
87
87
|
|
|
88
88
|
- `~/.git-credentials`
|
|
89
89
|
- `~/.claude/.credentials.json`
|
|
90
|
-
- `~/.codex/auth.json`
|
|
90
|
+
- `~/.codex/auth.json` (removed by current engines before Codex starts)
|
|
91
91
|
- `~/.replicas/infisical-env.sh` and `~/workspaces/.infisical.json`
|
|
92
92
|
|
|
93
93
|
Engine persistence locations:
|
|
@@ -119,7 +119,7 @@ Credential files expected/used by provider CLIs:
|
|
|
119
119
|
- `~/.git-credentials` (git/gh auth)
|
|
120
120
|
- `~/.claude/.credentials.json` (Claude OAuth auth)
|
|
121
121
|
- `~/.claude/.bedrock-credentials.json` (Claude Bedrock config)
|
|
122
|
-
- `~/.codex/auth.json`
|
|
122
|
+
- Codex OAuth uses ASP external authentication; the engine removes legacy `~/.codex/auth.json` files.
|
|
123
123
|
|
|
124
124
|
## What the engine sends upstream
|
|
125
125
|
|