426e9eeabd
Voice Workbench / headless workbench (mocked backends) (push) Has been cancelled
Voice Workbench / real acoustic lane (nightly, provisioned only) (push) Has been cancelled
ci / test (push) Has been cancelled
ci / lint-and-format (push) Has been cancelled
ci / build (push) Has been cancelled
ci / dev-startup (push) Has been cancelled
gitleaks / gitleaks (push) Has been cancelled
Markdown Links / Relative Markdown Links (push) Has been cancelled
Quality (Extended) / Homepage Build (PR smoke) (push) Has been cancelled
Quality (Extended) / Comment-only diff guard (push) Has been cancelled
Quality (Extended) / Format + Type Safety Ratchet (push) Has been cancelled
Quality (Extended) / Develop Gate (secret scan + UI determinism) (push) Has been cancelled
Quality (Extended) / Develop Gate (lint) (push) Has been cancelled
Chat shell gestures / Chat shell gesture + parity e2e (push) Has been cancelled
Cloud Gateway Discord / Test (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx @biomejs/biome check packages/lifeops-bench/src, benchmark-lint) (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx vitest run --config packages/lifeops-bench/vitest.config.ts --root packages/lifeops-bench --passWithNoTests, benchmark-tests) (push) Has been cancelled
Build Agent Image / build-and-push (push) Has been cancelled
Dev Smoke / bun run dev onboarding chat (push) Has been cancelled
Dev Smoke / Vite HMR dependency-level smoke (push) Has been cancelled
Electrobun Submodule Guard / electrobun gitlink is fetchable (push) Has been cancelled
Publish @elizaos/example-code / check_npm (push) Has been cancelled
Publish @elizaos/example-code / publish_npm (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / verify_version (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / publish_npm (push) Has been cancelled
Sandbox Live Smoke / Sandbox live smoke (push) Has been cancelled
Snap Build & Test / Build Snap (amd64) (push) Has been cancelled
Snap Build & Test / Build Snap (arm64) (push) Has been cancelled
Test Packaging / elizaos CLI global-install smoke (node + bun) (push) Has been cancelled
Cloud Gateway Webhook / Test (push) Has been cancelled
Cloud Tests / lint-and-types (push) Has been cancelled
Cloud Tests / unit-tests (push) Has been cancelled
Cloud Tests / integration-tests (push) Has been cancelled
Cloud Tests / e2e-tests (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Apps Worker (Product 2) / Determine environment (push) Has been cancelled
Deploy Apps Worker (Product 2) / Deploy apps worker to apps-control host (${{ needs.determine-env.outputs.environment }}) (push) Has been cancelled
Deploy Eliza Provisioning Worker / Determine environment (push) Has been cancelled
Deploy Eliza Provisioning Worker / Deploy worker to Hetzner host (${{ needs.determine-env.outputs.environment }} @ ${{ needs.determine-env.outputs.deployment_sha }}) (push) Has been cancelled
Dev Smoke / Classify changed paths (push) Has been cancelled
supply-chain / sbom (push) Has been cancelled
supply-chain / vulnerability-scan (push) Has been cancelled
Build, Push & Deploy to Phala Cloud / build-and-push (push) Has been cancelled
Test Packaging / Validate Packaging Configs (push) Has been cancelled
Test Packaging / Build & Test PyPI Package (push) Has been cancelled
Test Packaging / PyPI on Python ${{ matrix.python }} (push) Has been cancelled
Test Packaging / Pack & Test JS Tarballs (push) Has been cancelled
UI Fixture E2E / ui-fixture-e2e (push) Has been cancelled
UI Fixture E2E / fixture-e2e (push) Has been cancelled
UI Story Gate / story-gate (push) Has been cancelled
vault-ci / test (macos-latest) (push) Has been cancelled
vault-ci / test (ubuntu-latest) (push) Has been cancelled
vault-ci / test (windows-latest) (push) Has been cancelled
vault-ci / app-core wiring tests (push) Has been cancelled
verify-patches / verify patches/CHECKSUMS.sha256 (push) Has been cancelled
Voice Benchmark Smoke / voice-emotion fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voiceagentbench fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench-quality unit smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench TypeScript unit (no audio) (push) Has been cancelled
Voice Benchmark Smoke / voice bench smoke summary (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Has been cancelled
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Has been cancelled
272 lines
9.5 KiB
JavaScript
272 lines
9.5 KiB
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* Layered .env resolution for the LifeOps HITL credential tooling (#11632).
|
|
* Credentials can live in three places on an operator machine, and this module
|
|
* is the single arbiter of which one wins: process.env > the current repo's
|
|
* .env > ~/.eliza/.env.
|
|
* The HITL dashboard and lane drivers consume loadLayeredEnv()/listPresent()
|
|
* so a probe sees the same value a paste-and-save produced, no matter which
|
|
* worktree the operator happens to be in.
|
|
*
|
|
* Saves default to ~/.eliza/.env — the layer that survives worktree churn —
|
|
* with repo .env as the per-save alternative; writes are atomic (tmp file
|
|
* mode 600 + rename) and preserve unrelated lines and comments. The parse,
|
|
* merge, and upsert primitives are exported separately so they stay
|
|
* unit-testable without touching the real filesystem or git. Values returned
|
|
* by loadLayeredEnv are real secrets: callers must never render them — the
|
|
* display-safe surface is listPresent(), which only reports presence and the
|
|
* winning source layer.
|
|
*/
|
|
import {
|
|
existsSync,
|
|
mkdirSync,
|
|
readFileSync,
|
|
renameSync,
|
|
writeFileSync,
|
|
} from "node:fs";
|
|
import { homedir } from "node:os";
|
|
import { dirname, join, resolve } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const ROOT = resolve(new URL("../..", import.meta.url).pathname);
|
|
|
|
/** Home-layer file: shared across every checkout and worktree of this repo. */
|
|
export const HOME_ENV_PATH = join(homedir(), ".eliza", ".env");
|
|
|
|
/** Precedence order, highest first; the values of the `sources` map. */
|
|
export const ENV_LAYER_SOURCES = ["process", "repo", "home"];
|
|
|
|
const ENV_KEY_PATTERN = /^[A-Za-z_][A-Za-z0-9_]*$/;
|
|
|
|
// --- pure primitives ---------------------------------------------------------
|
|
|
|
/**
|
|
* Parse dotenv text: KEY=value with optional `export ` prefix, surrounding
|
|
* single/double quotes stripped, comments and malformed lines skipped.
|
|
* Identical semantics to the v1 dashboard parser so a file written by either
|
|
* tool reads back the same.
|
|
*/
|
|
export function parseDotenv(text) {
|
|
const out = {};
|
|
for (const line of text.split(/\r?\n/)) {
|
|
const trimmed = line.trim();
|
|
if (!trimmed || trimmed.startsWith("#")) continue;
|
|
const match = /^(?:export\s+)?([A-Za-z_][A-Za-z0-9_]*)\s*=\s*(.*)$/.exec(
|
|
trimmed,
|
|
);
|
|
if (!match) continue;
|
|
let value = match[2].trim();
|
|
if (
|
|
(value.startsWith('"') && value.endsWith('"') && value.length >= 2) ||
|
|
(value.startsWith("'") && value.endsWith("'") && value.length >= 2)
|
|
) {
|
|
value = value.slice(1, -1);
|
|
}
|
|
out[match[1]] = value;
|
|
}
|
|
return out;
|
|
}
|
|
|
|
/**
|
|
* Merge layers ordered highest-precedence first; the first layer that defines
|
|
* a key wins. "Defined" means a string value — including the empty string, so
|
|
* an exported-but-empty process.env variable shadows a file value exactly like
|
|
* dotenv's override:false behavior.
|
|
*/
|
|
export function mergeEnvLayers(layers) {
|
|
const values = {};
|
|
const sources = {};
|
|
for (const layer of layers) {
|
|
for (const [key, value] of Object.entries(layer.values)) {
|
|
if (typeof value !== "string") continue;
|
|
if (Object.hasOwn(sources, key)) continue;
|
|
values[key] = value;
|
|
sources[key] = layer.source;
|
|
}
|
|
}
|
|
return { values, sources };
|
|
}
|
|
|
|
/**
|
|
* Replace KEY=value lines in dotenv text, preserving unrelated lines and
|
|
* comments, appending keys that were not present. Always ends with a single
|
|
* trailing newline.
|
|
*/
|
|
export function upsertEnvContent(existingText, entries) {
|
|
const lines = existingText.length > 0 ? existingText.split("\n") : [];
|
|
const remaining = new Map(Object.entries(entries));
|
|
const nextLines = lines.map((line) => {
|
|
const match = /^\s*(?:export\s+)?([A-Za-z_][A-Za-z0-9_]*)\s*=/.exec(line);
|
|
if (match && remaining.has(match[1])) {
|
|
const value = remaining.get(match[1]);
|
|
remaining.delete(match[1]);
|
|
return `${match[1]}=${value}`;
|
|
}
|
|
return line;
|
|
});
|
|
while (
|
|
nextLines.length > 0 &&
|
|
nextLines[nextLines.length - 1].trim() === ""
|
|
) {
|
|
nextLines.pop();
|
|
}
|
|
for (const [key, value] of remaining) nextLines.push(`${key}=${value}`);
|
|
return `${nextLines.join("\n")}\n`;
|
|
}
|
|
|
|
/**
|
|
* Load and merge every env layer. Returns:
|
|
* values — merged KEY -> value (real secrets; never render these),
|
|
* sources — KEY -> 'process' | 'repo' | 'home' (winning layer),
|
|
* layers — [{ source, path, exists }] for display ("loaded from ...").
|
|
* All roots/paths are injectable for tests; by default the repo root is this
|
|
* checkout.
|
|
*/
|
|
export function loadLayeredEnv(options = {}) {
|
|
const {
|
|
processEnv = process.env,
|
|
repoRoot = ROOT,
|
|
homeEnvPath = HOME_ENV_PATH,
|
|
} = options;
|
|
const filePaths = [];
|
|
const pushUnique = (source, path) => {
|
|
if (path && !filePaths.some((layer) => layer.path === path)) {
|
|
filePaths.push({ source, path });
|
|
}
|
|
};
|
|
pushUnique("repo", join(repoRoot, ".env"));
|
|
pushUnique("home", homeEnvPath);
|
|
const layers = [
|
|
{ source: "process", path: null, exists: true, values: processEnv },
|
|
...filePaths.map(({ source, path }) => {
|
|
const exists = existsSync(path);
|
|
return {
|
|
source,
|
|
path,
|
|
exists,
|
|
values: exists ? parseDotenv(readFileSync(path, "utf8")) : {},
|
|
};
|
|
}),
|
|
];
|
|
const { values, sources } = mergeEnvLayers(layers);
|
|
return {
|
|
values,
|
|
sources,
|
|
layers: layers.map(({ source, path, exists }) => ({
|
|
source,
|
|
path,
|
|
exists,
|
|
})),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Load the layered env and fill process.env with every file-layer value whose
|
|
* key the process does not already define. The lane driver and status
|
|
* collector call this once at startup so their own readiness checks AND the
|
|
* test suites they spawn observe exactly the resolution the dashboard
|
|
* displays; the dashboard itself never calls this (it keeps process.env
|
|
* pristine and reads the merged map instead). Returns the loadLayeredEnv
|
|
* result for layer display.
|
|
*/
|
|
export function applyLayeredEnvToProcess(options = {}) {
|
|
const loaded = loadLayeredEnv(options);
|
|
const processEnv = options.processEnv ?? process.env;
|
|
for (const [key, value] of Object.entries(loaded.values)) {
|
|
if (processEnv[key] === undefined) processEnv[key] = value;
|
|
}
|
|
return loaded;
|
|
}
|
|
|
|
/**
|
|
* Display-safe presence report for the given env names: present means a
|
|
* non-empty value after trimming; source is the winning layer (attributed even
|
|
* for empty-but-defined values, null when no layer defines the key). Never
|
|
* returns values.
|
|
*/
|
|
export function listPresent(names, options = {}) {
|
|
const { values, sources } = loadLayeredEnv(options);
|
|
return names.map((name) => {
|
|
const value = values[name];
|
|
return {
|
|
name,
|
|
present: typeof value === "string" && value.trim().length > 0,
|
|
source: sources[name] ?? null,
|
|
};
|
|
});
|
|
}
|
|
|
|
function atomicWriteEnvFile(path, content) {
|
|
mkdirSync(dirname(path), { recursive: true });
|
|
// Mode 600 on the tmp file carries through the rename, so the final file is
|
|
// owner-only even when it replaces a pre-existing looser one.
|
|
const tmp = `${path}.${process.pid}.${Date.now()}.tmp`;
|
|
writeFileSync(tmp, content, { encoding: "utf8", mode: 0o600 });
|
|
renameSync(tmp, path);
|
|
}
|
|
|
|
/**
|
|
* Upsert one KEY=value into the chosen layer file — scope 'home'
|
|
* (~/.eliza/.env, created on first save; the default because it survives
|
|
* worktree churn) or 'repo' (this checkout's .env). Atomic tmp+rename write,
|
|
* mode 600. Also sets the key on processEnv so probes running in the same
|
|
* process observe the save immediately. Values must be single-line; multi-line
|
|
* values would corrupt the dotenv format and are rejected.
|
|
*/
|
|
export function writeSecret(key, value, options = {}) {
|
|
const {
|
|
scope = "home",
|
|
repoRoot = ROOT,
|
|
homeEnvPath = HOME_ENV_PATH,
|
|
processEnv = process.env,
|
|
} = options;
|
|
if (typeof key !== "string" || !ENV_KEY_PATTERN.test(key)) {
|
|
throw new Error(`writeSecret: invalid env key ${JSON.stringify(key)}`);
|
|
}
|
|
if (typeof value !== "string" || /[\r\n]/.test(value)) {
|
|
throw new Error(`writeSecret(${key}): value must be a single-line string`);
|
|
}
|
|
if (scope !== "home" && scope !== "repo") {
|
|
throw new Error(
|
|
`writeSecret(${key}): scope must be "home" or "repo", got ${JSON.stringify(scope)}`,
|
|
);
|
|
}
|
|
const path = scope === "home" ? homeEnvPath : join(repoRoot, ".env");
|
|
const existing = existsSync(path) ? readFileSync(path, "utf8") : "";
|
|
atomicWriteEnvFile(path, upsertEnvContent(existing, { [key]: value }));
|
|
processEnv[key] = value;
|
|
return { key, scope, path };
|
|
}
|
|
|
|
export function saveEnvVar(key, value, target = "home", options = {}) {
|
|
const saved = writeSecret(key, value, { ...options, scope: target });
|
|
return { key: saved.key, target: saved.scope, path: saved.path };
|
|
}
|
|
|
|
// --- CLI: presence/source inspection (never prints values) -------------------
|
|
|
|
const IS_MAIN =
|
|
import.meta.main || process.argv[1] === fileURLToPath(import.meta.url);
|
|
|
|
if (IS_MAIN) {
|
|
const args = process.argv.slice(2);
|
|
const json = args.includes("--json");
|
|
const names = args.filter((arg) => !arg.startsWith("--"));
|
|
const { layers } = loadLayeredEnv();
|
|
const rows = names.length > 0 ? listPresent(names) : [];
|
|
if (json) {
|
|
console.log(JSON.stringify({ layers, present: rows }, null, 2));
|
|
} else {
|
|
for (const layer of layers) {
|
|
console.log(
|
|
`${layer.source.padEnd(8)} ${layer.path ?? "(process.env)"}${layer.exists ? "" : " (absent)"}`,
|
|
);
|
|
}
|
|
for (const row of rows) {
|
|
console.log(
|
|
`${row.present ? "present" : "absent "} [${row.source ?? "-"}] ${row.name}`,
|
|
);
|
|
}
|
|
}
|
|
}
|