Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .changeset/dashboard-surfaces-verdict-source.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
---

Dashboard `/dashboard/agents` surfaces the new `verdict_source` field on the
compliance tile and a per-run "Your test / Heartbeat / Manual / Webhook"
badge in the History panel. PR 2 of the #4247 unification stack —
read-side cleanup that lets owners distinguish their own on-demand
runs from scheduled heartbeat verdicts at a glance.

**Context.** PR #4250 added `verdict_source` to
`/api/registry/agents/:url/compliance` and `triggered_by` to each row
returned by `/api/registry/agents/:url/compliance/history`. Both fields
were unrendered in the dashboard until this PR.

**What changes.**

- Compliance tile shows `Last checked: 3m ago (your test)` /
`(heartbeat)` / `(manual)` / `(webhook)` after the timestamp. Empty
string when `verdict_source` is null (never run).
- History panel renders a colored badge per run row:
- `Your test` (info-blue) for `triggered_by = 'owner_test'`
- `Heartbeat` (neutral) for `triggered_by = 'heartbeat'`
- `Manual` / `Webhook` (neutral) for the other enum values

No backend changes; this is pure UI surfacing of fields the API already
emits. Pre-PR-1 rows (which only have `'heartbeat'` / `'manual'` /
`'webhook'`) render with the neutral badge — no regression.

**Out of scope** (PR 3 of #4247): dropping `agent_test_history` and
backfilling owner-triggered rows. Tracked separately so the destructive
migration soaks behind the read-only UI change.
31 changes: 30 additions & 1 deletion server/public/dashboard-agents.html
Original file line number Diff line number Diff line change
Expand Up @@ -1501,6 +1501,19 @@ <h1>Agents</h1>
? timeAgo(new Date(cs.last_checked_at))
: 'never';

// Surface the verdict source so the operator knows whether the
// current status came from the scheduled heartbeat or their own
// owner-triggered test run. PR #4250 populates cs.verdict_source
// ('heartbeat' | 'owner_test' | 'manual' | 'webhook' | null when
// never run). Displayed inline with "Last checked" so the
// semantic shift on the public compliance contract is visible
// to the operator without having to read the changelog.
const verdictSourceLabel = cs.verdict_source === 'owner_test' ? ' (your test)'
: cs.verdict_source === 'heartbeat' ? ' (heartbeat)'
: cs.verdict_source === 'manual' ? ' (manual)'
: cs.verdict_source === 'webhook' ? ' (webhook)'
: '';

const isPublic = cs.status !== 'opted_out';

return `
Expand All @@ -1527,7 +1540,7 @@ <h1>Agents</h1>
${visibilitySelectorHtml}
<div class="agent-meta-row">
<div class="agent-meta-row-left">
<span>Last checked: ${escapeHtml(lastChecked)}</span>
<span>Last checked: ${escapeHtml(lastChecked)}${escapeHtml(verdictSourceLabel)}</span>
<span class="agent-meta-sep" aria-hidden="true">·</span>
<label class="agent-toggle" title="${isPublic ? 'Pause automated compliance and health checks' : 'Re-enable monitoring (Show on registry) before pausing'}">
<input type="checkbox" class="monitoring-pause-toggle" data-agent-url="${escapeHtml(agent.url)}" ${cs.monitoring_paused ? 'checked' : ''} ${isPublic ? '' : 'disabled'}>
Expand Down Expand Up @@ -2870,6 +2883,21 @@ <h1>Agents</h1>
: 'var(--color-warning-500)';
const date = new Date(run.tested_at).toLocaleString();

// Distinguish owner-triggered tests from scheduled heartbeat runs
// so the operator sees their own on-demand evaluations interleaved
// with the cron-driven verdicts. `triggered_by` enum is populated
// by the unification PR 1 (#4250); pre-PR-1 rows have
// 'heartbeat'/'manual'/'webhook' only — surface those neutrally.
const triggeredBy = run.triggered_by || 'heartbeat';
const sourceLabel = triggeredBy === 'owner_test' ? 'Your test'
: triggeredBy === 'heartbeat' ? 'Heartbeat'
: triggeredBy === 'manual' ? 'Manual'
: triggeredBy === 'webhook' ? 'Webhook'
: escapeHtml(String(triggeredBy));
const sourceBg = triggeredBy === 'owner_test' ? 'var(--color-info-50)' : 'var(--color-neutral-100)';
const sourceBorder = triggeredBy === 'owner_test' ? 'var(--color-info-200)' : 'var(--color-neutral-200)';
const sourceFg = triggeredBy === 'owner_test' ? 'var(--color-info-700)' : 'var(--color-text-secondary)';

let runTracks = '';
if (run.tracks_json) {
for (const t of run.tracks_json) {
Expand All @@ -2886,6 +2914,7 @@ <h1>Agents</h1>
html += '<span>' + escapeHtml(date) + '</span>';
html += '<span>' + escapeHtml(run.overall_status) + '</span>';
html += '<span>' + parseInt(run.tracks_passed, 10) + '/' + (parseInt(run.tracks_passed, 10) + parseInt(run.tracks_failed, 10) + parseInt(run.tracks_partial, 10)) + ' tracks</span>';
html += '<span class="history-run-source" style="font-size:var(--text-xs);padding:2px 8px;border-radius:var(--radius-full);background:' + sourceBg + ';border:1px solid ' + sourceBorder + ';color:' + sourceFg + ';">' + sourceLabel + '</span>';
html += '</div>';
if (runTracks) {
html += '<div style="padding:var(--space-1) 0 var(--space-2) var(--space-5);display:flex;gap:3px;flex-wrap:wrap;">' + runTracks + '</div>';
Expand Down
21 changes: 13 additions & 8 deletions server/src/routes/registry-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4332,14 +4332,19 @@ export function createRegistryApiRouter(config: RegistryApiConfig): Router {
membership_tier_label: ownerMembership.membership_tier_label,
subscription_status: ownerMembership.subscription_status,
is_api_access_tier: ownerMembership.is_api_access_tier,
// `triggered_by` is retained as internal audit on agent_compliance_runs
// but deliberately not exposed publicly: heartbeat and owner_test both
// call comply() against the same registered URL with the same
// owner-saved credentials; the verdict's truth content is identical
// regardless of who pulled the trigger. Exposing the source label
// creates a buyer-facing trust distinction that the underlying
// observation doesn't actually carry. Internal dashboards may still
// surface triggered_by as a UX cue (see #4263).
// `verdict_source` is owner-scoped: operators benefit from seeing
// whether the current verdict came from their own owner_test vs
// the scheduled heartbeat (UX cue while iterating on a fix). Non-
// owners see null — heartbeat and owner_test both call comply()
// against the same registered URL with the same owner-saved
// credentials, so exposing the source label publicly would
// create a trust distinction the underlying observation doesn't
// actually carry. Gated on `is_owner` (any owner, including free
// tier) — `is_api_access_tier` would be too narrow and would
// hide the UX cue from Explorer-tier agent owners.
verdict_source: ownerMembership.is_owner
? (status.last_triggered_by ?? null)
: null,
verified: badges.length > 0,
verified_badges: badges.map(b => ({
role: b.role,
Expand Down
2 changes: 2 additions & 0 deletions server/src/schemas/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,8 @@ export const AgentComplianceDetailSchema = z
membership_tier_label: z.string().nullable().optional().openapi({ description: "Owner-scoped: human-readable label for membership_tier (e.g. 'Builder'). Null for non-owners." }),
subscription_status: z.string().nullable().optional().openapi({ description: "Owner-scoped: the agent owner's subscription status (active, past_due, trialing, etc.). Null for non-owners." }),
is_api_access_tier: z.boolean().optional().openapi({ description: "Owner-scoped: true when the owner's tier and subscription status grant badge eligibility. False for non-owners. Single source of truth — UI should not re-derive." }),
verdict_source: z.enum(["heartbeat", "owner_test", "manual", "webhook"]).nullable().optional()
.openapi({ description: "Owner-scoped: triggered_by value of the most recent non-dry-run compliance check. Null for non-owners and when no run has been recorded. Operators use this as a UX cue ('did this verdict come from my recent test or the system heartbeat?')." }),
verified: z.boolean().optional(),
verified_badges: z.array(VerificationBadgeSchema).optional(),
})
Expand Down
11 changes: 11 additions & 0 deletions server/src/services/membership-tiers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,23 @@ export function tierLabel(tier: string | null | undefined): string | null {
}

export interface OwnerMembership {
/**
* True only when the caller actually owns the agent (the resolver found
* a matching member_profiles row + organization_memberships row for them).
* Use this for owner-only feature gates that don't need a specific tier —
* `is_api_access_tier` is narrower (only premium tiers + active subs).
* Not surfaced in API responses; internal struct only. Response shape
* stays owner-detect-resistant via constant keys + null values.
*/
is_owner: boolean;
membership_tier: string | null;
membership_tier_label: string | null;
subscription_status: string | null;
is_api_access_tier: boolean;
}

const EMPTY_OWNER_MEMBERSHIP: OwnerMembership = {
is_owner: false,
membership_tier: null,
membership_tier_label: null,
subscription_status: null,
Expand Down Expand Up @@ -114,6 +124,7 @@ export async function resolveOwnerMembership(
const tier = orgRow.membership_tier ?? null;
const subStatus = orgRow.subscription_status ?? null;
return {
is_owner: true,
membership_tier: tier,
membership_tier_label: tierLabel(tier),
subscription_status: subStatus,
Expand Down
2 changes: 2 additions & 0 deletions server/tests/unit/membership-tiers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ describe('membership-tiers', () => {

describe('resolveOwnerMembership — security boundary', () => {
const EMPTY = {
is_owner: false,
membership_tier: null,
membership_tier_label: null,
subscription_status: null,
Expand Down Expand Up @@ -126,6 +127,7 @@ describe('membership-tiers', () => {
fetchOrgMembership: async () => ({ membership_tier: 'company_standard', subscription_status: 'active' }),
});
expect(result).toEqual({
is_owner: true,
membership_tier: 'company_standard',
membership_tier_label: 'Builder',
subscription_status: 'active',
Expand Down
Loading