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
397 lines
5.9 KiB
CSS
397 lines
5.9 KiB
CSS
:root {
|
|
--bg: #f8faf8;
|
|
--ink: #0f172a;
|
|
--muted: #475569;
|
|
--line: #d9e2d8;
|
|
--panel: #ffffff;
|
|
--accent: #0f766e;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background:
|
|
radial-gradient(circle at 5% 10%, rgba(15, 118, 110, 0.12), transparent 45%),
|
|
radial-gradient(circle at 95% 0%, rgba(22, 101, 52, 0.12), transparent 40%),
|
|
var(--bg);
|
|
color: var(--ink);
|
|
font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
|
|
}
|
|
|
|
.shell {
|
|
max-width: 1440px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
.hero h1 {
|
|
margin: 0;
|
|
font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.hero p {
|
|
margin: 8px 0 0;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.cards {
|
|
display: grid;
|
|
gap: 10px;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
margin: 18px 0;
|
|
}
|
|
|
|
.card {
|
|
background: var(--panel);
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
min-width: 0;
|
|
padding: 12px;
|
|
}
|
|
|
|
.card .k {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.card .v {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
line-height: 1.15;
|
|
margin-top: 4px;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.panel {
|
|
background: var(--panel);
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
padding: 14px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.panel h2 {
|
|
margin: 0 0 10px;
|
|
font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.controls label {
|
|
display: grid;
|
|
gap: 4px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
select,
|
|
input {
|
|
min-width: 140px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
padding: 7px 10px;
|
|
background: #fff;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.table-wrap {
|
|
overflow: auto;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 13px;
|
|
min-width: 680px;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
text-align: left;
|
|
border-bottom: 1px solid var(--line);
|
|
padding: 8px 7px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
th {
|
|
position: sticky;
|
|
top: 0;
|
|
background: #f0f7f0;
|
|
cursor: pointer;
|
|
color: #1f2937;
|
|
}
|
|
|
|
tr:hover td {
|
|
background: #f9fcf9;
|
|
}
|
|
|
|
.status-succeeded {
|
|
color: #166534;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.status-failed {
|
|
color: #991b1b;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.status-skipped,
|
|
.status-incompatible {
|
|
color: #92400e;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.tabs {
|
|
display: flex;
|
|
gap: 6px;
|
|
margin: 16px 0 0;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.tab-button {
|
|
background: transparent;
|
|
border: 1px solid transparent;
|
|
border-bottom: none;
|
|
border-radius: 8px 8px 0 0;
|
|
padding: 8px 14px;
|
|
cursor: pointer;
|
|
color: var(--muted);
|
|
font: inherit;
|
|
}
|
|
|
|
.tab-button.is-active {
|
|
background: var(--panel);
|
|
border-color: var(--line);
|
|
color: var(--ink);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.tab-panel {
|
|
display: none;
|
|
}
|
|
|
|
.tab-panel.is-active {
|
|
display: block;
|
|
}
|
|
|
|
.hint {
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.muted {
|
|
color: var(--muted);
|
|
font-style: italic;
|
|
}
|
|
|
|
.harness-pill {
|
|
display: inline-block;
|
|
padding: 2px 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--line);
|
|
font-size: 12px;
|
|
margin-right: 4px;
|
|
background: #f0f7f0;
|
|
}
|
|
|
|
.harness-eliza {
|
|
background: #e0f2fe;
|
|
}
|
|
|
|
.harness-openclaw {
|
|
background: #fef3c7;
|
|
}
|
|
|
|
.harness-hermes {
|
|
background: #ede9fe;
|
|
}
|
|
|
|
.harness-smithers {
|
|
background: #dcfce7;
|
|
}
|
|
|
|
.harness-random_v1 {
|
|
background: #fee2e2;
|
|
}
|
|
|
|
.diff-open,
|
|
.playback-open,
|
|
.playback-controls button {
|
|
background: var(--accent);
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 6px;
|
|
padding: 6px 12px;
|
|
cursor: pointer;
|
|
font: inherit;
|
|
}
|
|
|
|
.diff-open:hover,
|
|
.playback-open:hover,
|
|
.playback-controls button:hover {
|
|
filter: brightness(1.1);
|
|
}
|
|
|
|
.playback-controls button:disabled {
|
|
cursor: not-allowed;
|
|
filter: grayscale(0.4);
|
|
opacity: 0.55;
|
|
}
|
|
|
|
.diff-legend {
|
|
display: flex;
|
|
gap: 14px;
|
|
align-items: center;
|
|
margin: 6px 0 12px;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.diff-swatch {
|
|
display: inline-block;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 3px;
|
|
margin-right: 4px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.diff-equal {
|
|
background: #d1fae5;
|
|
}
|
|
|
|
.diff-differ {
|
|
background: #fef3c7;
|
|
}
|
|
|
|
.diff-tool-only {
|
|
background: #dbeafe;
|
|
}
|
|
|
|
.diff-cell {
|
|
white-space: pre-wrap;
|
|
vertical-align: top;
|
|
max-width: 360px;
|
|
min-width: 180px;
|
|
word-break: break-word;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.diff-cell.diff-equal {
|
|
background: rgba(209, 250, 229, 0.6);
|
|
}
|
|
|
|
.diff-cell.diff-differ {
|
|
background: rgba(254, 243, 199, 0.6);
|
|
}
|
|
|
|
.diff-cell.diff-tool-only {
|
|
background: rgba(219, 234, 254, 0.6);
|
|
}
|
|
|
|
.diff-step {
|
|
font-weight: 600;
|
|
width: 50px;
|
|
text-align: right;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.tool-calls {
|
|
margin-top: 6px;
|
|
padding: 4px 6px;
|
|
background: rgba(15, 23, 42, 0.05);
|
|
border-radius: 4px;
|
|
font-family: "JetBrains Mono", "Menlo", monospace;
|
|
font-size: 11px;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.playback-header {
|
|
align-items: start;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 14px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.playback-header label,
|
|
.playback-controls label {
|
|
color: var(--muted);
|
|
display: grid;
|
|
font-size: 12px;
|
|
gap: 4px;
|
|
}
|
|
|
|
.playback-controls {
|
|
align-items: end;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
margin: 8px 0 14px;
|
|
}
|
|
|
|
.playback-controls input {
|
|
min-width: 92px;
|
|
width: 92px;
|
|
}
|
|
|
|
.playback-step-grid {
|
|
display: grid;
|
|
gap: 12px;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
}
|
|
|
|
.playback-card {
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
padding: 10px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.playback-card-wide {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.playback-card h3 {
|
|
font-size: 13px;
|
|
margin: 0 0 8px;
|
|
}
|
|
|
|
.playback-card pre,
|
|
.message-row pre {
|
|
background: rgba(15, 23, 42, 0.04);
|
|
border-radius: 6px;
|
|
font-family: "JetBrains Mono", "Menlo", monospace;
|
|
font-size: 12px;
|
|
margin: 0;
|
|
max-height: 420px;
|
|
overflow: auto;
|
|
padding: 8px;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.message-row {
|
|
display: grid;
|
|
gap: 4px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.message-role {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|