426e9eeabd
Benchmark Bridge Tests / benchmark (bunx @biomejs/biome check packages/lifeops-bench/src, benchmark-lint) (push) Waiting to run
Benchmark Bridge Tests / benchmark (bunx vitest run --config packages/lifeops-bench/vitest.config.ts --root packages/lifeops-bench --passWithNoTests, benchmark-tests) (push) Waiting to run
Build Agent Image / build-and-push (push) Waiting to run
Chat shell gestures / Chat shell gesture + parity e2e (push) Waiting to run
ci / test (push) Waiting to run
ci / lint-and-format (push) Waiting to run
ci / build (push) Waiting to run
ci / dev-startup (push) Waiting to run
Cloud Gateway Discord / Test (push) Waiting to run
Cloud Gateway Webhook / Test (push) Waiting to run
Cloud Tests / lint-and-types (push) Waiting to run
Cloud Tests / unit-tests (push) Waiting to run
Cloud Tests / integration-tests (push) Waiting to run
Cloud Tests / e2e-tests (push) Blocked by required conditions
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
Deploy Apps Worker (Product 2) / Determine environment (push) Waiting to run
Deploy Apps Worker (Product 2) / Deploy apps worker to apps-control host (${{ needs.determine-env.outputs.environment }}) (push) Blocked by required conditions
Deploy Eliza Provisioning Worker / Determine environment (push) Waiting to run
Deploy Eliza Provisioning Worker / Deploy worker to Hetzner host (${{ needs.determine-env.outputs.environment }} @ ${{ needs.determine-env.outputs.deployment_sha }}) (push) Blocked by required conditions
Dev Smoke / Classify changed paths (push) Waiting to run
Dev Smoke / bun run dev onboarding chat (push) Blocked by required conditions
Dev Smoke / Vite HMR dependency-level smoke (push) Blocked by required conditions
Electrobun Submodule Guard / electrobun gitlink is fetchable (push) Waiting to run
gitleaks / gitleaks (push) Waiting to run
Markdown Links / Relative Markdown Links (push) Waiting to run
Publish @elizaos/example-code / check_npm (push) Waiting to run
Publish @elizaos/example-code / publish_npm (push) Blocked by required conditions
Publish @elizaos/plugin-elizacloud / verify_version (push) Waiting to run
Publish @elizaos/plugin-elizacloud / publish_npm (push) Blocked by required conditions
Quality (Extended) / Homepage Build (PR smoke) (push) Waiting to run
Quality (Extended) / Comment-only diff guard (push) Waiting to run
Quality (Extended) / Format + Type Safety Ratchet (push) Waiting to run
Quality (Extended) / Develop Gate (secret scan + UI determinism) (push) Waiting to run
Quality (Extended) / Develop Gate (lint) (push) Waiting to run
Sandbox Live Smoke / Sandbox live smoke (push) Waiting to run
Snap Build & Test / Build Snap (amd64) (push) Waiting to run
Snap Build & Test / Build Snap (arm64) (push) Waiting to run
supply-chain / sbom (push) Waiting to run
supply-chain / vulnerability-scan (push) Waiting to run
Build, Push & Deploy to Phala Cloud / build-and-push (push) Waiting to run
Test Packaging / Validate Packaging Configs (push) Waiting to run
Test Packaging / PyPI on Python ${{ matrix.python }} (push) Waiting to run
Test Packaging / Pack & Test JS Tarballs (push) Waiting to run
Test Packaging / elizaos CLI global-install smoke (node + bun) (push) Waiting to run
UI Fixture E2E / ui-fixture-e2e (push) Waiting to run
UI Fixture E2E / fixture-e2e (push) Waiting to run
UI Story Gate / story-gate (push) Waiting to run
vault-ci / test (macos-latest) (push) Waiting to run
vault-ci / test (ubuntu-latest) (push) Waiting to run
vault-ci / test (windows-latest) (push) Waiting to run
vault-ci / app-core wiring tests (push) Waiting to run
verify-patches / verify patches/CHECKSUMS.sha256 (push) Waiting to run
Voice Benchmark Smoke / voice-emotion fixture smoke (push) Waiting to run
Voice Benchmark Smoke / voiceagentbench fixture smoke (push) Waiting to run
Voice Benchmark Smoke / voicebench-quality unit smoke (push) Waiting to run
Voice Benchmark Smoke / voicebench TypeScript unit (no audio) (push) Waiting to run
Voice Benchmark Smoke / voice bench smoke summary (push) Blocked by required conditions
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) Waiting to run
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) Waiting to run
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) Waiting to run
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) Waiting to run
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) Waiting to run
Test Packaging / Build & Test PyPI Package (push) Waiting to run
Voice Workbench / headless workbench (mocked backends) (push) Has been cancelled
Voice Workbench / real acoustic lane (nightly, provisioned only) (push) Has been cancelled
224 lines
7.0 KiB
TypeScript
224 lines
7.0 KiB
TypeScript
// Supports the Smartglasses example described in this package README.
|
|
import { mkdir, writeFile } from "node:fs/promises";
|
|
import { dirname } from "node:path";
|
|
import {
|
|
NobleG1Transport,
|
|
SmartglassesService,
|
|
} from "@elizaos/plugin-facewear";
|
|
import {
|
|
createHardwareEvidenceReport,
|
|
markHardwareMicrophoneCommand,
|
|
missingCompleteHardwareEvidence,
|
|
recordHardwareAudio,
|
|
recordHardwareEvent,
|
|
recordHardwareWrite,
|
|
updateHardwareEvidenceStatus,
|
|
} from "./hardware-evidence.js";
|
|
|
|
const scanTimeoutMs = Number(
|
|
process.env.SMARTGLASSES_SCAN_TIMEOUT_MS ?? 20_000,
|
|
);
|
|
const holdMs = Number(process.env.SMARTGLASSES_HOLD_MS ?? 60_000);
|
|
const wearingTimeoutMs = Number(
|
|
process.env.SMARTGLASSES_WEARING_TIMEOUT_MS ?? 30_000,
|
|
);
|
|
const directMicMs = Number(process.env.SMARTGLASSES_DIRECT_MIC_MS ?? 0);
|
|
const reportPath = process.env.SMARTGLASSES_REPORT_PATH;
|
|
const requestedInitMode = process.env.SMARTGLASSES_INIT_MODE;
|
|
const initMode =
|
|
requestedInitMode === "official" || requestedInitMode === "android-f4"
|
|
? requestedInitMode
|
|
: "lens-specific";
|
|
|
|
const report = createHardwareEvidenceReport({
|
|
scanTimeoutMs,
|
|
holdMs,
|
|
initMode,
|
|
});
|
|
|
|
const dynamicImport = new Function("specifier", "return import(specifier)") as (
|
|
specifier: string,
|
|
) => Promise<unknown>;
|
|
|
|
async function loadNoble() {
|
|
try {
|
|
const mod = (await dynamicImport("@abandonware/noble")) as {
|
|
default?: unknown;
|
|
};
|
|
return mod.default ?? mod;
|
|
} catch (error) {
|
|
const message = error instanceof Error ? error.message : String(error);
|
|
if (message.includes("No native build was found")) {
|
|
throw new Error(
|
|
`@abandonware/noble is installed, but its native BLE binding is unavailable for this runtime: ${message}`,
|
|
{ cause: error },
|
|
);
|
|
}
|
|
throw new Error(
|
|
"Missing optional dependency @abandonware/noble. Install plugin optional dependencies before running Node BLE hardware smoke.",
|
|
{ cause: error },
|
|
);
|
|
}
|
|
}
|
|
|
|
function log(message: string, data?: unknown): void {
|
|
const suffix = data === undefined ? "" : ` ${JSON.stringify(data)}`;
|
|
console.log(`[smartglasses:noble-smoke] ${message}${suffix}`);
|
|
}
|
|
|
|
const service = new SmartglassesService();
|
|
|
|
async function configureNobleTransport(): Promise<void> {
|
|
const noble = await loadNoble();
|
|
const transport = new NobleG1Transport(noble as never, { scanTimeoutMs });
|
|
service.setTransport(transport);
|
|
|
|
const originalWrite = transport.write.bind(transport);
|
|
transport.write = async (side, data) => {
|
|
recordHardwareWrite(report, side, data);
|
|
await originalWrite(side, data);
|
|
};
|
|
const originalWriteBoth = transport.writeBoth.bind(transport);
|
|
transport.writeBoth = async (data) => {
|
|
recordHardwareWrite(report, "both", data);
|
|
await originalWriteBoth(data);
|
|
};
|
|
const originalOpenMicrophone = transport.openMicrophone.bind(transport);
|
|
transport.openMicrophone = async (enabled) => {
|
|
markHardwareMicrophoneCommand(report, enabled);
|
|
await originalOpenMicrophone(enabled);
|
|
};
|
|
|
|
service.onRawAudio((audio, sampleRate, side, encoding, sequence) => {
|
|
recordHardwareAudio(report, audio, sampleRate, side, encoding, sequence);
|
|
log("audio", {
|
|
side,
|
|
sampleRate,
|
|
encoding,
|
|
sequence,
|
|
bytes: audio.length,
|
|
});
|
|
});
|
|
transport.onEvent((event) => {
|
|
recordHardwareEvent(report, event);
|
|
log("event", {
|
|
side: event.side,
|
|
type: event.type,
|
|
label: event.label,
|
|
serialNumber: event.serialNumber,
|
|
});
|
|
});
|
|
}
|
|
|
|
async function waitForWearing(): Promise<void> {
|
|
if (wearingTimeoutMs <= 0) return;
|
|
updateHardwareEvidenceStatus(report, service.getStatus());
|
|
if (report.headsetState.physical === "wearing") return;
|
|
log(
|
|
"action required",
|
|
"remove the glasses from the charging base and wear them before tap/audio validation",
|
|
);
|
|
const deadline = Date.now() + wearingTimeoutMs;
|
|
while (Date.now() < deadline) {
|
|
updateHardwareEvidenceStatus(report, service.getStatus());
|
|
if (report.headsetState.physical === "wearing") {
|
|
log("wearing observed", report.headsetState);
|
|
return;
|
|
}
|
|
await new Promise((resolve) => setTimeout(resolve, 250));
|
|
}
|
|
throw new Error(
|
|
"Glasses did not report wearing state before tap/audio validation",
|
|
);
|
|
}
|
|
|
|
async function runDirectMicDiagnostic(): Promise<void> {
|
|
if (directMicMs <= 0) return;
|
|
log(
|
|
"direct mic diagnostic",
|
|
"speak clearly until the diagnostic window ends",
|
|
);
|
|
await service.setMicrophoneEnabled(true);
|
|
const deadline = Date.now() + directMicMs;
|
|
while (Date.now() < deadline) {
|
|
updateHardwareEvidenceStatus(report, service.getStatus());
|
|
if (report.checks.audioObserved) break;
|
|
await new Promise((resolve) => setTimeout(resolve, 250));
|
|
}
|
|
await service.setMicrophoneEnabled(false);
|
|
}
|
|
|
|
async function runTapAudioValidation(): Promise<void> {
|
|
await service.setMicrophoneEnabled(false);
|
|
log("mic disabled; single tap to enable, speak, then double tap to disable", {
|
|
holdMs,
|
|
});
|
|
const deadline = Date.now() + holdMs;
|
|
while (Date.now() < deadline) {
|
|
updateHardwareEvidenceStatus(report, service.getStatus());
|
|
if (missingCompleteHardwareEvidence(report).length === 0) return;
|
|
await new Promise((resolve) => setTimeout(resolve, 250));
|
|
}
|
|
await service.setMicrophoneEnabled(false);
|
|
log("mic disabled");
|
|
}
|
|
|
|
try {
|
|
await configureNobleTransport();
|
|
log("scanning", { scanTimeoutMs });
|
|
await service.connect();
|
|
report.checks.connected = true;
|
|
log("connected", service.getStatus());
|
|
|
|
await service.sendConnectionReady("both", initMode);
|
|
log("connection ready sent", { initMode });
|
|
|
|
await service.requestSerial("both");
|
|
log("serial requested");
|
|
|
|
const display = await service.displayText(
|
|
"Eliza smartglasses Node BLE smoke test. Single tap enables microphone. Double tap disables it.",
|
|
);
|
|
log("display sent", display);
|
|
|
|
await service.setBrightness(10, true);
|
|
await service.setDashboard(true, 4);
|
|
await service.setHeadUpAngle(20);
|
|
await service.setGlassesWearDetection(true);
|
|
log("settings sent");
|
|
|
|
await waitForWearing();
|
|
await runDirectMicDiagnostic();
|
|
await runTapAudioValidation();
|
|
|
|
updateHardwareEvidenceStatus(report, service.getStatus());
|
|
const missingChecks = missingCompleteHardwareEvidence(report);
|
|
if (missingChecks.length > 0)
|
|
throw new Error(
|
|
`Missing hardware smoke evidence: ${missingChecks.join(", ")}`,
|
|
);
|
|
|
|
log("pass", { checks: report.checks, status: report.status });
|
|
} catch (error) {
|
|
report.error = error instanceof Error ? error.message : String(error);
|
|
updateHardwareEvidenceStatus(report, service.getStatus());
|
|
throw error;
|
|
} finally {
|
|
report.finishedAt = new Date().toISOString();
|
|
if (reportPath) {
|
|
try {
|
|
await mkdir(dirname(reportPath), { recursive: true });
|
|
await writeFile(reportPath, `${JSON.stringify(report, null, 2)}\n`);
|
|
log("report written", { reportPath });
|
|
} catch (error) {
|
|
log("report write failed", {
|
|
reportPath,
|
|
error: error instanceof Error ? error.message : String(error),
|
|
});
|
|
}
|
|
}
|
|
await service.disconnect().catch((error) => {
|
|
log("disconnect failed", String(error));
|
|
});
|
|
}
|