selftune 0.2.30 → 0.2.32

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.
Files changed (102) hide show
  1. package/README.md +83 -56
  2. package/apps/local-dashboard/dist/assets/index-B-ut4w0B.js +15 -0
  3. package/apps/local-dashboard/dist/assets/index-BFGfCVrL.css +1 -0
  4. package/apps/local-dashboard/dist/assets/vendor-ui-DfowE3Hu.js +1 -0
  5. package/apps/local-dashboard/dist/index.html +3 -3
  6. package/cli/selftune/command-surface.ts +613 -2
  7. package/cli/selftune/create/baseline.ts +429 -0
  8. package/cli/selftune/create/check.ts +35 -0
  9. package/cli/selftune/create/init.ts +115 -0
  10. package/cli/selftune/create/package-candidate-state.ts +771 -0
  11. package/cli/selftune/create/package-evaluator.ts +710 -0
  12. package/cli/selftune/create/package-fingerprint.ts +142 -0
  13. package/cli/selftune/create/package-search.ts +377 -0
  14. package/cli/selftune/create/publish.ts +431 -0
  15. package/cli/selftune/create/readiness.ts +495 -0
  16. package/cli/selftune/create/replay.ts +330 -0
  17. package/cli/selftune/create/report.ts +74 -0
  18. package/cli/selftune/create/scaffold.ts +121 -0
  19. package/cli/selftune/create/skills-ref-adapter.ts +177 -0
  20. package/cli/selftune/create/status.ts +33 -0
  21. package/cli/selftune/create/templates.ts +249 -0
  22. package/cli/selftune/cron/setup.ts +1 -1
  23. package/cli/selftune/dashboard-action-events.ts +4 -1
  24. package/cli/selftune/dashboard-action-result.ts +789 -24
  25. package/cli/selftune/dashboard-action-stream.ts +80 -0
  26. package/cli/selftune/dashboard-contract.ts +146 -3
  27. package/cli/selftune/dashboard-server.ts +5 -4
  28. package/cli/selftune/eval/hooks-to-evals.ts +58 -35
  29. package/cli/selftune/eval/synthetic-evals.ts +145 -17
  30. package/cli/selftune/evolution/bounded-mutations.ts +1045 -0
  31. package/cli/selftune/evolution/evolve-body.ts +9 -36
  32. package/cli/selftune/evolution/evolve.ts +8 -72
  33. package/cli/selftune/evolution/stopping-criteria.ts +5 -13
  34. package/cli/selftune/evolution/unblock-suggestions.ts +0 -16
  35. package/cli/selftune/evolution/validate-host-replay.ts +115 -15
  36. package/cli/selftune/improve.ts +206 -0
  37. package/cli/selftune/index.ts +123 -6
  38. package/cli/selftune/init.ts +1 -1
  39. package/cli/selftune/localdb/queries/dashboard.ts +30 -0
  40. package/cli/selftune/localdb/schema.ts +52 -0
  41. package/cli/selftune/monitoring/watch.ts +257 -23
  42. package/cli/selftune/orchestrate/execute.ts +300 -1
  43. package/cli/selftune/orchestrate/finalize.ts +14 -0
  44. package/cli/selftune/orchestrate/plan.ts +22 -5
  45. package/cli/selftune/orchestrate/prepare.ts +59 -4
  46. package/cli/selftune/orchestrate/report.ts +1 -1
  47. package/cli/selftune/orchestrate.ts +34 -1
  48. package/cli/selftune/publish.ts +35 -0
  49. package/cli/selftune/registry/github-install.ts +256 -0
  50. package/cli/selftune/registry/index.ts +1 -1
  51. package/cli/selftune/registry/install.ts +58 -7
  52. package/cli/selftune/routes/actions.ts +81 -15
  53. package/cli/selftune/routes/overview.ts +1 -1
  54. package/cli/selftune/routes/skill-report.ts +147 -2
  55. package/cli/selftune/run.ts +18 -0
  56. package/cli/selftune/schedule.ts +3 -3
  57. package/cli/selftune/search-run.ts +703 -0
  58. package/cli/selftune/status.ts +35 -11
  59. package/cli/selftune/testing-readiness.ts +431 -40
  60. package/cli/selftune/types.ts +316 -0
  61. package/cli/selftune/utils/eval-readiness.ts +1 -0
  62. package/cli/selftune/utils/json-output.ts +11 -0
  63. package/cli/selftune/utils/lifecycle-surface.ts +48 -0
  64. package/cli/selftune/utils/query-filter.ts +82 -1
  65. package/cli/selftune/utils/tui.ts +85 -2
  66. package/cli/selftune/verify.ts +205 -0
  67. package/cli/selftune/workflows/proposals.ts +1 -1
  68. package/cli/selftune/workflows/skill-scaffold.ts +141 -63
  69. package/cli/selftune/workflows/workflows.ts +4 -4
  70. package/package.json +1 -1
  71. package/packages/dashboard-core/src/routes/manifest.ts +2 -2
  72. package/packages/ui/src/components/SkillReportPanels.tsx +7 -7
  73. package/packages/ui/src/primitives/button.tsx +5 -0
  74. package/skill/SKILL.md +148 -85
  75. package/skill/references/cli-quick-reference.md +16 -1
  76. package/skill/references/creator-playbook.md +31 -10
  77. package/skill/workflows/Baseline.md +8 -9
  78. package/skill/workflows/Contributions.md +4 -4
  79. package/skill/workflows/Create.md +173 -0
  80. package/skill/workflows/CreateTestDeploy.md +34 -30
  81. package/skill/workflows/Cron.md +2 -2
  82. package/skill/workflows/Dashboard.md +3 -3
  83. package/skill/workflows/Evals.md +13 -7
  84. package/skill/workflows/Evolve.md +75 -32
  85. package/skill/workflows/EvolveBody.md +22 -15
  86. package/skill/workflows/Hook.md +1 -1
  87. package/skill/workflows/Improve.md +168 -0
  88. package/skill/workflows/Initialize.md +3 -3
  89. package/skill/workflows/Orchestrate.md +49 -12
  90. package/skill/workflows/Publish.md +100 -0
  91. package/skill/workflows/Registry.md +19 -13
  92. package/skill/workflows/Run.md +72 -0
  93. package/skill/workflows/Schedule.md +2 -2
  94. package/skill/workflows/SearchRun.md +89 -0
  95. package/skill/workflows/SignalsDashboard.md +2 -2
  96. package/skill/workflows/UnitTest.md +13 -4
  97. package/skill/workflows/Verify.md +136 -0
  98. package/skill/workflows/Watch.md +114 -47
  99. package/skill/workflows/Workflows.md +13 -8
  100. package/apps/local-dashboard/dist/assets/index-BcXquWFB.css +0 -1
  101. package/apps/local-dashboard/dist/assets/index-Coq42hE4.js +0 -15
  102. package/apps/local-dashboard/dist/assets/vendor-ui-B0H8s1mP.js +0 -1
@@ -0,0 +1,15 @@
1
+ import{n as e,r as t,t as n}from"./rolldown-runtime-Dw2cE7zH.js";import{a as r,c as i,d as a,f as o,i as s,l as c,n as l,o as u,p as d,r as f,s as p,t as m,u as h}from"./vendor-react-C5oyHiV1.js";import{$ as g,A as _,At as v,B as y,C as b,Ct as x,D as S,Dt as C,E as w,Et as T,F as E,Ft as D,G as O,H as ee,I as k,J as te,K as A,L as j,M as ne,Mt as re,N as M,Nt as ie,O as ae,Ot as oe,P as se,Pt as ce,Q as le,R as ue,S as de,St as fe,T as pe,Tt as me,U as he,V as ge,W as _e,X as ve,Y as ye,Z as be,_ as xe,_t as Se,a as Ce,at as we,b as Te,bt as Ee,c as De,ct as Oe,d as ke,dt as Ae,et as je,ft as Me,g as Ne,gt as Pe,ht as Fe,i as Ie,it as Le,j as Re,jt as ze,k as Be,kt as Ve,l as He,lt as Ue,mt as We,n as Ge,nt as Ke,o as qe,ot as Je,pt as Ye,q as Xe,r as Ze,rt as Qe,s as $e,st as et,t as tt,tt as nt,u as rt,ut as it,v as at,vt as ot,w as st,wt as ct,x as lt,xt as ut,y as dt,yt as ft,z as pt}from"./vendor-ui-DfowE3Hu.js";import"./vendor-table-Bc_bbKd8.js";(function(){let e=document.createElement(`link`).relList;if(e&&e.supports&&e.supports(`modulepreload`))return;for(let e of document.querySelectorAll(`link[rel="modulepreload"]`))n(e);new MutationObserver(e=>{for(let t of e)if(t.type===`childList`)for(let e of t.addedNodes)e.tagName===`LINK`&&e.rel===`modulepreload`&&n(e)}).observe(document,{childList:!0,subtree:!0});function t(e){let t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),e.crossOrigin===`use-credentials`?t.credentials=`include`:e.crossOrigin===`anonymous`?t.credentials=`omit`:t.credentials=`same-origin`,t}function n(e){if(e.ep)return;e.ep=!0;let n=t(e);fetch(e.href,n)}})();var N=t(d(),1),mt=a();function P(...e){return Je(Oe(e))}var ht=et(`group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!`,{variants:{variant:{default:`bg-primary text-primary-foreground [a]:hover:bg-primary/80`,secondary:`bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80`,destructive:`bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20`,outline:`border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground`,ghost:`hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50`,link:`text-primary underline-offset-4 hover:underline`}},defaultVariants:{variant:`default`}});function F({className:e,variant:t=`default`,render:n,...r}){return Ue({defaultTagName:`span`,props:it({className:P(ht({variant:t}),e)},r),render:n,state:{slot:`badge`,variant:t}})}var I=h(),gt=et(`group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4`,{variants:{variant:{default:`bg-primary text-primary-foreground [a]:hover:bg-primary/80`,outline:`border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50`,secondary:`bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground`,ghost:`hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50`,destructive:`bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40`,link:`text-primary underline-offset-4 hover:underline`,"glass-primary":`border-cyan-300 bg-background/75 text-foreground shadow-[0_10px_28px_rgba(34,211,238,0.14),inset_0_1px_0_rgba(255,255,255,0.09)] hover:border-cyan-200 hover:bg-background/85 hover:shadow-[0_14px_34px_rgba(34,211,238,0.18),inset_0_1px_0_rgba(255,255,255,0.12)]`,"glass-secondary":`border-border/70 bg-background/60 text-foreground shadow-[inset_0_1px_0_rgba(255,255,255,0.06)] hover:border-cyan-400/20 hover:bg-background/75 hover:shadow-[0_10px_24px_rgba(34,211,238,0.08),inset_0_1px_0_rgba(255,255,255,0.1)]`},size:{default:`h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2`,xs:`h-6 gap-1 rounded-[min(var(--radius-md),10px)] px-2 text-xs in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3`,sm:`h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5`,lg:`h-9 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-3 has-data-[icon=inline-start]:pl-3`,icon:`size-8`,"icon-xs":`size-6 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-lg [&_svg:not([class*='size-'])]:size-3`,"icon-sm":`size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg`,"icon-lg":`size-9`,glass:`gap-2 px-4 py-2 backdrop-blur-sm`}},defaultVariants:{variant:`default`,size:`default`}});function L({className:e,variant:t=`default`,size:n=`default`,...r}){return(0,I.jsx)(we,{"data-slot":`button`,className:P(gt({variant:t,size:n,className:e})),...r})}function R({className:e,size:t=`default`,...n}){return(0,I.jsx)(`div`,{"data-slot":`card`,"data-size":t,className:P(`group/card flex flex-col gap-4 overflow-hidden rounded-xl bg-muted py-4 text-sm text-card-foreground border border-border/15 shadow-none has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl`,e),...n})}function z({className:e,...t}){return(0,I.jsx)(`div`,{"data-slot":`card-header`,className:P(`group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-4 group-data-[size=sm]/card:px-3 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-4 group-data-[size=sm]/card:[.border-b]:pb-3`,e),...t})}function B({className:e,...t}){return(0,I.jsx)(`div`,{"data-slot":`card-title`,className:P(`text-base leading-snug font-medium group-data-[size=sm]/card:text-sm`,e),...t})}function V({className:e,...t}){return(0,I.jsx)(`div`,{"data-slot":`card-description`,className:P(`text-sm text-muted-foreground`,e),...t})}function _t({className:e,...t}){return(0,I.jsx)(`div`,{"data-slot":`card-action`,className:P(`col-start-2 row-span-2 row-start-1 self-start justify-self-end`,e),...t})}function H({className:e,...t}){return(0,I.jsx)(`div`,{"data-slot":`card-content`,className:P(`px-4 group-data-[size=sm]/card:px-3`,e),...t})}function vt({className:e,...t}){return(0,I.jsx)(`div`,{"data-slot":`table-container`,className:`relative w-full overflow-x-auto`,children:(0,I.jsx)(`table`,{"data-slot":`table`,className:P(`w-full caption-bottom text-sm`,e),...t})})}function yt({className:e,...t}){return(0,I.jsx)(`thead`,{"data-slot":`table-header`,className:P(`[&_tr]:border-b`,e),...t})}function bt({className:e,...t}){return(0,I.jsx)(`tbody`,{"data-slot":`table-body`,className:P(`[&_tr:last-child]:border-0`,e),...t})}function xt({className:e,...t}){return(0,I.jsx)(`tr`,{"data-slot":`table-row`,className:P(`border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted`,e),...t})}function U({className:e,...t}){return(0,I.jsx)(`th`,{"data-slot":`table-head`,className:P(`h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-foreground [&:has([role=checkbox])]:pr-0`,e),...t})}function W({className:e,...t}){return(0,I.jsx)(`td`,{"data-slot":`table-cell`,className:P(`p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0`,e),...t})}function St({className:e,orientation:t=`horizontal`,...n}){return(0,I.jsx)(ke,{"data-slot":`tabs`,"data-orientation":t,className:P(`group/tabs flex gap-2 data-horizontal:flex-col`,e),...n})}var Ct=et(`group/tabs-list inline-flex w-fit items-center justify-center text-muted-foreground group-data-horizontal/tabs:h-8 group-data-vertical/tabs:h-fit group-data-vertical/tabs:flex-col`,{variants:{variant:{default:`rounded-lg bg-muted p-[3px]`,line:`gap-1 bg-transparent p-0 data-[variant=line]:h-auto`}},defaultVariants:{variant:`default`}});function wt({className:e,variant:t=`default`,...n}){return(0,I.jsx)(De,{"data-slot":`tabs-list`,"data-variant":t,className:P(Ct({variant:t}),e),...n})}function Tt({className:e,...t}){return(0,I.jsx)(rt,{"data-slot":`tabs-trigger`,className:P(`relative inline-flex flex-1 items-center justify-center gap-1.5 text-sm font-medium whitespace-nowrap text-foreground/60 transition-all group-data-horizontal/tabs:h-[calc(100%-1px)] group-data-horizontal/tabs:px-1.5 group-data-horizontal/tabs:py-0.5 group-data-vertical/tabs:w-full group-data-vertical/tabs:justify-start group-data-vertical/tabs:px-1.5 group-data-vertical/tabs:py-0.5 hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1 focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 dark:text-muted-foreground dark:hover:text-foreground group-data-[variant=default]/tabs-list:rounded-md group-data-[variant=default]/tabs-list:border group-data-[variant=default]/tabs-list:border-transparent group-data-[variant=default]/tabs-list:data-active:shadow-sm group-data-[variant=line]/tabs-list:data-active:shadow-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4`,`group-data-[variant=line]/tabs-list:h-auto group-data-[variant=line]/tabs-list:flex-none group-data-[variant=line]/tabs-list:rounded-none group-data-[variant=line]/tabs-list:border-0 group-data-[variant=line]/tabs-list:bg-transparent group-data-[variant=line]/tabs-list:px-2 group-data-[variant=line]/tabs-list:py-1 group-data-[variant=line]/tabs-list:data-active:bg-transparent dark:group-data-[variant=line]/tabs-list:data-active:border-transparent dark:group-data-[variant=line]/tabs-list:data-active:bg-transparent`,`group-data-[variant=default]/tabs-list:data-active:bg-background group-data-[variant=default]/tabs-list:data-active:text-foreground dark:group-data-[variant=default]/tabs-list:data-active:border-input dark:group-data-[variant=default]/tabs-list:data-active:bg-input/30`,`group-data-[variant=line]/tabs-list:data-active:text-foreground`,`after:absolute after:bg-foreground after:opacity-0 after:transition-opacity group-data-horizontal/tabs:after:inset-x-0 group-data-horizontal/tabs:after:bottom-[-5px] group-data-horizontal/tabs:after:h-0.5 group-data-vertical/tabs:after:inset-y-0 group-data-vertical/tabs:after:-right-1 group-data-vertical/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-active:after:opacity-100`,e),...t})}function Et({className:e,...t}){return(0,I.jsx)(He,{"data-slot":`tabs-content`,className:P(`flex-1 text-sm outline-none`,e),...t})}function Dt({delay:e=0,...t}){return(0,I.jsx)(tt,{"data-slot":`tooltip-provider`,delay:e,...t})}function Ot({...e}){return(0,I.jsx)($e,{"data-slot":`tooltip`,...e})}function kt({...e}){return(0,I.jsx)(qe,{"data-slot":`tooltip-trigger`,...e})}function At({className:e,side:t=`top`,sideOffset:n=4,align:r=`center`,alignOffset:i=0,children:a,...o}){return(0,I.jsx)(Ce,{children:(0,I.jsx)(Ie,{align:r,alignOffset:i,side:t,sideOffset:n,className:`isolate z-50`,children:(0,I.jsxs)(Ze,{"data-slot":`tooltip-content`,className:P(`z-50 inline-flex w-fit max-w-xs origin-(--transform-origin) items-center gap-1.5 rounded-md bg-foreground px-3 py-1.5 text-xs text-background has-data-[slot=kbd]:pr-1.5 data-[side=bottom]:slide-in-from-top-2 data-[side=inline-end]:slide-in-from-left-2 data-[side=inline-start]:slide-in-from-right-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 **:data-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95`,e),...o,children:[a,(0,I.jsx)(Ge,{className:`z-50 size-2.5 translate-y-[calc(-50%-2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground data-[side=bottom]:top-1 data-[side=inline-end]:top-1/2! data-[side=inline-end]:-left-1 data-[side=inline-end]:-translate-y-1/2 data-[side=inline-start]:top-1/2! data-[side=inline-start]:-right-1 data-[side=inline-start]:-translate-y-1/2 data-[side=left]:top-1/2! data-[side=left]:-right-1 data-[side=left]:-translate-y-1/2 data-[side=right]:top-1/2! data-[side=right]:-left-1 data-[side=right]:-translate-y-1/2 data-[side=top]:-bottom-2.5`})]})})})}function jt(...e){return e.filter(Boolean).join(` `)}function Mt(e){return e.trim().split(/\s+/).slice(0,2).map(e=>e.charAt(0).toUpperCase()).join(``)||`?`}function Nt(e){return e.trim().toLowerCase()}function Pt(e,t){let n=Nt(t);return n?[e.label,e.meta??``,...e.keywords??[]].map(Nt).join(` `).includes(n):!0}function Ft({renderLink:e,headerMeta:t,searchItems:n,headerUser:r,onToggleSidebar:i}){let[a,o]=(0,N.useState)(``),[s,c]=(0,N.useState)(!1),l=(0,N.useRef)(!1),u=(0,N.useDeferredValue)(a),d=n.filter(e=>Pt(e,u)).slice(0,u.trim()?12:8),f=new Map;for(let e of d){let t=f.get(e.group)??[];t.push(e),f.set(e.group,t)}return(0,I.jsx)(`header`,{className:`sticky top-0 z-40 border-b border-border/10 bg-background/80 backdrop-blur-xl`,children:(0,I.jsxs)(`div`,{className:`flex h-16 items-center justify-between gap-4 px-4 lg:px-8`,children:[(0,I.jsxs)(`div`,{className:`flex min-w-0 flex-1 items-center gap-3 lg:gap-4`,children:[(0,I.jsx)(`button`,{type:`button`,className:`rounded-lg bg-card p-2 text-foreground lg:hidden`,onClick:i,"aria-label":`Toggle sidebar`,children:(0,I.jsx)(ft,{className:`size-5`})}),t.backHref&&t.backLabel?e({href:t.backHref,className:`inline-flex items-center gap-1 font-headline text-[10px] uppercase tracking-[0.2em] text-slate-500 transition-colors hover:text-primary`,children:(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(D,{className:`size-3`}),t.backLabel]})}):null,(0,I.jsxs)(`div`,{className:`hidden xl:flex items-center gap-3 rounded-full border border-border/15 bg-card/60 px-3 py-1.5 text-sm shadow-[0_10px_40px_rgba(0,0,0,0.12)]`,children:[t.icon?(0,I.jsx)(`span`,{className:`shrink-0 text-primary`,children:t.icon}):null,(0,I.jsxs)(`div`,{className:`flex min-w-0 items-center gap-2`,children:[(0,I.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.18em] text-slate-500`,children:t.badge??`View`}),(0,I.jsx)(`span`,{className:`truncate font-medium text-foreground`,children:t.title})]})]}),(0,I.jsxs)(`div`,{className:`relative w-full max-w-xl`,children:[(0,I.jsx)(We,{className:`pointer-events-none absolute left-3 top-1/2 z-10 size-4 -translate-y-1/2 text-slate-400`}),(0,I.jsx)(`input`,{value:a,onChange:e=>o(e.target.value),onFocus:()=>c(!0),onBlur:()=>{if(l.current){l.current=!1;return}c(!1)},placeholder:`Search skills or pages...`,className:`h-9 w-full rounded-full border border-border/10 bg-input/50 pl-10 pr-4 text-sm text-foreground outline-none transition focus:border-primary/30 focus:ring-1 focus:ring-primary/40 placeholder:text-slate-500`}),s?(0,I.jsx)(`div`,{className:`absolute left-0 right-0 top-full z-50 mt-2 max-h-80 overflow-y-auto rounded-2xl border border-border/15 bg-card shadow-[0_20px_60px_rgba(0,0,0,0.35)] backdrop-blur-xl`,children:d.length===0?(0,I.jsx)(`div`,{className:`px-4 py-5 text-sm text-muted-foreground`,children:`No results found.`}):Array.from(f.entries()).map(([e,t])=>(0,I.jsxs)(`div`,{className:`border-b border-border/10 last:border-b-0`,children:[(0,I.jsx)(`div`,{className:`px-4 pt-3 text-[10px] uppercase tracking-[0.18em] text-slate-500`,children:e}),(0,I.jsx)(`div`,{className:`p-2`,children:t.map(e=>(0,I.jsxs)(`button`,{type:`button`,onMouseDown:e=>{e.preventDefault(),l.current=!0},onClick:()=>{e.onSelect(),c(!1),o(``)},className:`flex w-full items-center gap-3 rounded-xl px-3 py-2 text-left text-sm transition-colors hover:bg-muted/40`,children:[e.leading?(0,I.jsx)(`span`,{className:`shrink-0`,children:e.leading}):(0,I.jsx)(`span`,{className:`shrink-0 text-slate-400`,children:e.meta?`•`:``}),(0,I.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,I.jsx)(`div`,{className:`truncate text-foreground`,children:e.label}),e.meta?(0,I.jsx)(`div`,{className:`truncate text-xs text-muted-foreground`,children:e.meta}):null]}),e.trailing?(0,I.jsx)(`span`,{className:`shrink-0 text-xs text-muted-foreground`,children:e.trailing}):null]},e.id))})]},e))}):null]})]}),(0,I.jsxs)(`div`,{className:`hidden items-center gap-4 sm:flex lg:gap-6`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-4 text-slate-400`,children:[(0,I.jsxs)(`span`,{className:`relative`,"aria-hidden":`true`,children:[(0,I.jsx)(ie,{className:`size-4`}),(0,I.jsx)(`span`,{className:`absolute -right-0.5 -top-0.5 size-2 rounded-full border-2 border-background bg-primary shadow-[0_0_6px_color-mix(in_srgb,var(--primary)_50%,transparent)]`})]}),(0,I.jsx)(re,{className:`size-4`,"aria-hidden":`true`})]}),r?(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(`div`,{className:`h-8 w-px bg-border/20`}),(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsxs)(`div`,{className:`hidden text-right md:block`,children:[(0,I.jsx)(`div`,{className:`font-headline text-[10px] uppercase tracking-widest text-slate-400`,children:r.name}),(0,I.jsx)(`div`,{className:`text-[10px] uppercase tracking-widest text-primary`,children:r.subtitle??r.email??`Active`})]}),r.image?(0,I.jsx)(`img`,{src:r.image,alt:r.name,className:`size-8 rounded-full`}):(0,I.jsx)(`div`,{className:`flex size-8 items-center justify-center rounded-full border border-primary/20 bg-card text-primary`,children:r.name?(0,I.jsx)(`span`,{className:`text-xs font-medium`,children:Mt(r.name)}):(0,I.jsx)(Me,{className:`size-4`})})]})]}):null]})]})})}function It({brand:e,navItems:t,renderLink:n,sidebarAction:r,sidebarUser:i,onSignOut:a,mobileOpen:o,onMobileOpenChange:s}){let[c,l]=(0,N.useState)(!1);return(0,I.jsxs)(I.Fragment,{children:[o?(0,I.jsx)(`button`,{type:`button`,className:`fixed inset-0 z-40 bg-black/50 lg:hidden`,onClick:()=>s(!1),"aria-label":`Close sidebar overlay`}):null,(0,I.jsxs)(`aside`,{className:jt(`fixed inset-y-0 left-0 z-50 flex w-64 flex-col border-r border-sidebar-border bg-sidebar`,`transition-transform duration-200 lg:translate-x-0`,o?`translate-x-0`:`-translate-x-full`),children:[(0,I.jsx)(`div`,{className:`px-4 pb-8 pt-6`,children:n({href:e.href,className:`flex items-center gap-3`,onClick:()=>s(!1),children:(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(`div`,{className:`size-8 shrink-0 bg-primary shadow-[0_0_12px_rgba(79,242,255,0.3)]`,role:`img`,"aria-label":e.name,style:{WebkitMaskImage:`url(/logo.svg)`,WebkitMaskSize:`contain`,WebkitMaskRepeat:`no-repeat`,WebkitMaskPosition:`center`,maskImage:`url(/logo.svg)`,maskSize:`contain`,maskRepeat:`no-repeat`,maskPosition:`center`}}),(0,I.jsxs)(`div`,{className:`flex flex-col`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(`span`,{className:`font-headline text-2xl font-bold tracking-tighter text-primary text-glow`,children:e.name}),e.badge?(0,I.jsx)(`span`,{className:`rounded bg-primary/10 px-1.5 py-0.5 text-xs font-medium text-primary`,children:e.badge}):null]}),e.caption?(0,I.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-slate-500`,children:e.caption}):null]})]})})}),(0,I.jsx)(`nav`,{className:`flex-1 space-y-1 px-2`,children:t.map(e=>(0,I.jsxs)(Ot,{children:[(0,I.jsx)(kt,{render:n({href:e.href,onClick:()=>s(!1),className:jt(`flex items-center gap-3 rounded-lg px-4 py-2.5 font-headline text-sm tracking-tight transition-all duration-200`,e.isActive?`bg-card font-bold text-primary shadow-[inset_0_0_0_1px_rgba(79,242,255,0.08)]`:`text-slate-400 hover:bg-muted/50 hover:text-slate-200`),children:(0,I.jsxs)(I.Fragment,{children:[e.icon,(0,I.jsxs)(`span`,{className:`flex min-w-0 items-center gap-2`,children:[(0,I.jsx)(`span`,{children:e.label}),e.isLocked?(0,I.jsx)(ut,{className:`size-3.5 opacity-70`}):null]})]})})}),(0,I.jsx)(At,{side:`right`,children:e.tooltip})]},e.href))}),(0,I.jsxs)(`div`,{className:`px-4 pb-4`,children:[r?(0,I.jsxs)(Ot,{children:[(0,I.jsx)(kt,{render:(0,I.jsxs)(`button`,{type:`button`,disabled:r.disabled,"aria-disabled":r.disabled,tabIndex:r.disabled?-1:0,title:r.tooltip,onClick:r.onClick,className:jt(`flex w-full items-center justify-center gap-2 rounded-xl border py-2.5 font-headline text-xs uppercase tracking-wider transition-colors`,r.disabled?`cursor-not-allowed border-primary/15 bg-gradient-to-r from-primary/10 to-primary/5 text-primary/50 opacity-70`:`border-primary/30 bg-gradient-to-r from-primary/12 to-primary/6 text-primary hover:border-primary/50 hover:bg-primary/10`),children:[r.icon,(0,I.jsx)(`span`,{children:r.label})]})}),(0,I.jsx)(At,{side:`right`,children:r.tooltip})]}):null,e.footerLabel?(0,I.jsxs)(`div`,{className:`mt-3 flex items-center gap-2 px-4 py-1.5 font-headline text-[10px] uppercase tracking-widest text-slate-600`,children:[(0,I.jsx)(`span`,{className:`size-1.5 animate-pulse rounded-full bg-primary shadow-[0_0_8px_rgba(79,242,255,0.4)]`}),(0,I.jsx)(`span`,{children:e.footerLabel})]}):null]}),i?(0,I.jsx)(`div`,{className:`border-t border-sidebar-border p-3`,children:(0,I.jsxs)(`div`,{className:`relative`,children:[(0,I.jsxs)(`button`,{type:`button`,onClick:()=>l(e=>!e),className:`flex w-full items-center gap-3 rounded-lg px-3 py-2 text-sm text-muted-foreground transition-colors hover:bg-sidebar-accent/50`,children:[i.image?(0,I.jsx)(`img`,{src:i.image,alt:i.name,className:`size-9 rounded-full`}):(0,I.jsx)(`div`,{className:`flex size-9 items-center justify-center rounded-full bg-primary text-xs font-medium text-primary-foreground`,children:Mt(i.name)}),(0,I.jsxs)(`span`,{className:`min-w-0 flex-1 text-left`,children:[(0,I.jsx)(`span`,{className:`block truncate font-medium text-sidebar-foreground`,children:i.name}),(0,I.jsx)(`span`,{className:`block truncate text-xs text-slate-500`,children:i.subtitle??i.email??`Signed in`})]}),a?(0,I.jsx)(oe,{className:`size-4`}):null]}),c&&a?(0,I.jsx)(`div`,{className:`absolute bottom-full left-0 mb-2 w-full rounded-lg border border-border bg-popover py-1 shadow-lg`,children:(0,I.jsxs)(`button`,{type:`button`,onClick:async()=>{l(!1),await a()},className:`flex w-full items-center gap-2 px-4 py-2 text-sm text-muted-foreground hover:bg-sidebar-accent/50`,children:[(0,I.jsx)(Ee,{className:`size-4`}),(0,I.jsx)(`span`,{children:`Sign out`})]})}):null]})}):null]})]})}var Lt=`@container/main mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8`;function Rt({brand:e,navItems:t,renderLink:n,headerMeta:r,searchItems:i=[],headerUser:a,sidebarUser:o,sidebarAction:s,onSignOut:c,overlay:l,contentClassName:u,children:d}){let[f,p]=(0,N.useState)(!1),m=u===null?d:(0,I.jsx)(`div`,{className:jt(u??Lt),children:d});return(0,I.jsx)(Dt,{children:(0,I.jsxs)(`div`,{className:`min-h-screen bg-background`,children:[(0,I.jsx)(It,{brand:e,navItems:t,renderLink:n,sidebarAction:s??{label:`Run Evolution`,tooltip:`Dashboard-triggered evolution is not available yet.`,icon:(0,I.jsx)(Se,{className:`size-4`}),disabled:!0},sidebarUser:o,onSignOut:c,mobileOpen:f,onMobileOpenChange:p}),(0,I.jsxs)(`div`,{className:`min-h-screen lg:pl-64`,children:[(0,I.jsx)(Ft,{renderLink:n,headerMeta:r,searchItems:i,headerUser:a,onToggleSidebar:()=>p(e=>!e)}),(0,I.jsx)(`main`,{className:`min-h-[calc(100vh-4rem)]`,children:m})]}),l]})})}function zt({eyebrow:e,title:t,description:n,highlights:r=[],primaryAction:i,secondaryAction:a,note:o}){return(0,I.jsx)(`section`,{className:`overflow-hidden rounded-[28px] border border-primary/15 bg-[radial-gradient(circle_at_top_left,rgba(79,242,255,0.18),transparent_32%),linear-gradient(180deg,rgba(8,16,27,0.98),rgba(7,12,22,0.96))] shadow-[0_24px_80px_rgba(0,0,0,0.35)]`,children:(0,I.jsxs)(`div`,{className:`grid gap-10 p-8 lg:grid-cols-[minmax(0,1.1fr)_minmax(300px,0.9fr)] lg:p-10`,children:[(0,I.jsxs)(`div`,{className:`space-y-6`,children:[(0,I.jsxs)(`div`,{className:`inline-flex items-center gap-2 rounded-full border border-primary/20 bg-primary/10 px-3 py-1 text-[10px] font-semibold uppercase tracking-[0.22em] text-primary`,children:[(0,I.jsx)(ut,{className:`size-3`}),(0,I.jsx)(`span`,{children:e})]}),(0,I.jsxs)(`div`,{className:`space-y-4`,children:[(0,I.jsx)(`h1`,{className:`max-w-2xl font-headline text-3xl font-semibold tracking-tight text-foreground sm:text-4xl`,children:t}),(0,I.jsx)(`p`,{className:`max-w-2xl text-base leading-7 text-slate-300`,children:n})]}),(0,I.jsxs)(`div`,{className:`flex flex-wrap gap-3`,children:[(0,I.jsxs)(`a`,{href:i.href,target:`_blank`,rel:`noreferrer`,className:`inline-flex items-center gap-2 rounded-full bg-primary px-5 py-2.5 text-sm font-medium text-primary-foreground transition hover:bg-primary/90`,children:[(0,I.jsx)(`span`,{children:i.label}),(0,I.jsx)(ce,{className:`size-4`})]}),a?(0,I.jsxs)(`a`,{href:a.href,target:`_blank`,rel:`noreferrer`,className:`inline-flex items-center gap-2 rounded-full border border-border/60 bg-background/40 px-5 py-2.5 text-sm font-medium text-slate-200 transition hover:border-primary/30 hover:text-primary`,children:[(0,I.jsx)(`span`,{children:a.label}),(0,I.jsx)(ce,{className:`size-4`})]}):null]}),o?(0,I.jsx)(`p`,{className:`text-sm text-slate-500`,children:o}):null]}),(0,I.jsxs)(`div`,{className:`rounded-[24px] border border-white/8 bg-white/4 p-6 backdrop-blur-sm`,children:[(0,I.jsx)(`div`,{className:`mb-4 text-[10px] font-semibold uppercase tracking-[0.22em] text-slate-500`,children:`What unlocks`}),(0,I.jsx)(`div`,{className:`space-y-3`,children:r.map(e=>(0,I.jsxs)(`div`,{className:`flex items-start gap-3 rounded-2xl border border-white/6 bg-background/40 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`mt-0.5 flex size-5 items-center justify-center rounded-full bg-primary/12 text-primary`,children:(0,I.jsx)(Ve,{className:`size-3.5`})}),(0,I.jsx)(`p`,{className:`text-sm leading-6 text-slate-200`,children:e})]},e))})]})]})})}function Bt(e){return(0,I.jsx)(`div`,{className:`@container/main flex flex-1 flex-col py-6`,children:(0,I.jsx)(`div`,{className:`grid grid-cols-12 gap-6 px-4 lg:px-6`,children:(0,I.jsx)(`div`,{className:`col-span-12`,children:(0,I.jsx)(zt,{...e})})})})}function Vt(e,t){return e.features[t]}function Ht(e,t){return e.discoverable[t]||e.features[t]}var Ut=(0,N.createContext)(null);function Wt({adapter:e,capabilities:t,children:n}){let r=(0,N.useMemo)(()=>({adapter:e,capabilities:t}),[e,t]);return(0,I.jsx)(Ut.Provider,{value:r,children:n})}function Gt(){return(0,N.useContext)(Ut)}function Kt(){return Gt()?.adapter??null}function qt(e,t){return t.mode===`exact`?e===t.value:e.startsWith(t.value)}function Jt(e,t){return!e.feature||Vt(t,e.feature)?`enabled`:e.discoverableFeature&&Ht(t,e.discoverableFeature)?`locked`:`hidden`}var Yt=[{id:`overview`,label:`Overview`,tooltip:`Dashboard overview`,icon:fe,hosts:{cloud:{path:`/`,title:`Dashboard`,badge:`Overview`,activePatterns:[{mode:`exact`,value:`/`}]},local:{path:`/`,title:`Dashboard`,badge:`Overview`,activePatterns:[{mode:`exact`,value:`/`}]}}},{id:`skills`,label:`Skills`,tooltip:`Skills Library`,icon:ze,hosts:{cloud:{path:`/skills`,title:`Skills`,badge:`Library`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/skills`},{mode:`prefix`,value:`/skills/`}],detailPrefixes:[`/skills/`],detailBadge:`Skill Report`,detailBackHref:`/skills`,detailBackLabel:`Skills`},local:{path:`/skills`,title:`Skills`,badge:`Library`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/skills`},{mode:`prefix`,value:`/skills/`}],detailPrefixes:[`/skills/`],detailBadge:`Skill Report`,detailBackHref:`/skills`,detailBackLabel:`Skills`}}},{id:`analytics`,label:`Analytics`,tooltip:`Performance analytics`,icon:v,feature:`analytics`,hosts:{cloud:{path:`/analytics`,title:`Analytics`,badge:`Performance`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/analytics`}]},local:{path:`/analytics`,title:`Analytics`,badge:`Performance`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/analytics`}]}}},{id:`registry`,label:`Registry`,tooltip:`Cloud skill registry`,icon:ot,feature:`registry`,discoverableFeature:`registry`,lockedTitle:`Cloud Registry lives in selftune Cloud`,lockedBody:`Publish versioned skills, watch installations across projects, and roll back bad versions from a single cloud workspace.`,lockedHighlights:[`Version timeline with rollback controls`,`Installation map across your team`,`Managed publish flow for Pro and Team creators`],lockedPrimaryCtaLabel:`Read registry docs`,lockedPrimaryCtaHref:`https://docs.selftune.dev/cloud/registry`,lockedSecondaryCtaLabel:`View cloud plans`,lockedSecondaryCtaHref:`https://selftune.dev/pricing`,hosts:{cloud:{path:`/registry`,title:`Registry`,badge:`Cloud`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/registry`}]},local:{path:`/registry`,title:`Registry`,badge:`Locked`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/registry`}]}}},{id:`signals`,label:`Signals`,tooltip:`Contributor signals`,icon:Ae,feature:`signals`,discoverableFeature:`signals`,lockedTitle:`Contributor signals run through selftune Cloud`,lockedBody:`See anonymized contributor signals, compare bundle submissions, and turn real-world usage into proposals without leaving the shared dashboard.`,lockedHighlights:[`Cross-skill contributor signal overview`,`Bundle submission trends and cohorts`,`Proposal generation from contributor evidence`],lockedPrimaryCtaLabel:`View cloud plans`,lockedPrimaryCtaHref:`https://selftune.dev/pricing`,lockedSecondaryCtaLabel:`Read signals docs`,lockedSecondaryCtaHref:`https://docs.selftune.dev/cloud/signals`,hosts:{cloud:{path:`/signals`,title:`Signals`,badge:`Signals`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/signals`}]},local:{path:`/signals`,title:`Signals`,badge:`Locked`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/signals`}]}}},{id:`proposals`,label:`Proposals`,tooltip:`Evolution proposals`,icon:ct,feature:`proposals`,discoverableFeature:`proposals`,lockedTitle:`Proposal review is unlocked in Cloud`,lockedBody:`Keep a shared review queue for contributor-driven improvements, approve the right changes, and coordinate deployment across your team.`,lockedHighlights:[`Shared approval and rejection queue`,`Proposal detail with rationale and evidence`,`Tighter loop from contributor signals to deployment`],lockedPrimaryCtaLabel:`Upgrade for review workflows`,lockedPrimaryCtaHref:`https://selftune.dev/pricing`,lockedSecondaryCtaLabel:`See dashboard docs`,lockedSecondaryCtaHref:`https://docs.selftune.dev/cloud/dashboard`,hosts:{cloud:{path:`/proposals`,title:`Proposals`,badge:`Review Queue`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/proposals`}]},local:{path:`/proposals`,title:`Proposals`,badge:`Locked`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/proposals`}]}}},{id:`unmatched`,label:`Unmatched`,tooltip:`Unmatched queries`,icon:T,hosts:{cloud:{path:`/unmatched`,title:`Unmatched`,badge:`Attention`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/unmatched`}]}}},{id:`settings`,label:`Settings`,tooltip:`Settings and API keys`,icon:Ye,hosts:{cloud:{path:`/settings`,title:`Settings`,badge:`Workspace`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/settings`}]}}},{id:`status`,label:`System Status`,tooltip:`System health diagnostics`,icon:x,feature:`runtimeStatus`,hosts:{local:{path:`/status`,title:`System Status`,badge:`Diagnostics`,backHref:`/`,backLabel:`Dashboard`,activePatterns:[{mode:`exact`,value:`/status`}]}}}];function Xt(e,t){return Yt.flatMap(n=>{let r=n.hosts[e];if(!r)return[];let i=Jt(n,t);return i===`hidden`?[]:[{id:n.id,label:n.label,tooltip:n.tooltip,icon:n.icon,host:e,path:r.path,title:r.title??n.label,badge:r.badge??n.label,backHref:r.backHref??null,backLabel:r.backLabel??null,activePatterns:r.activePatterns??[{mode:`exact`,value:r.path}],detailPrefixes:r.detailPrefixes??[],detailBadge:r.detailBadge??r.badge??n.label,detailBackHref:r.detailBackHref??r.backHref??null,detailBackLabel:r.detailBackLabel??r.backLabel??null,access:i,lockedTitle:n.lockedTitle,lockedBody:n.lockedBody,lockedHighlights:n.lockedHighlights,lockedPrimaryCtaLabel:n.lockedPrimaryCtaLabel,lockedPrimaryCtaHref:n.lockedPrimaryCtaHref,lockedSecondaryCtaLabel:n.lockedSecondaryCtaLabel,lockedSecondaryCtaHref:n.lockedSecondaryCtaHref}]})}function Zt(e,t){return!!Qt(e,[t])}function Qt(e,t){for(let n of t){if(n.detailPrefixes.some(t=>e.startsWith(t)))return{...n,matchKind:`detail`,badge:n.detailBadge,backHref:n.detailBackHref,backLabel:n.detailBackLabel};if(n.activePatterns.some(t=>qt(e,t)))return{...n,matchKind:`route`}}return null}var $t=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(e){return this.listeners.add(e),this.onSubscribe(),()=>{this.listeners.delete(e),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}},en=new class extends $t{#e;#t;#n;constructor(){super(),this.#n=e=>{if(typeof window<`u`&&window.addEventListener){let t=()=>e();return window.addEventListener(`visibilitychange`,t,!1),()=>{window.removeEventListener(`visibilitychange`,t)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(e){this.#n=e,this.#t?.(),this.#t=e(e=>{typeof e==`boolean`?this.setFocused(e):this.onFocus()})}setFocused(e){this.#e!==e&&(this.#e=e,this.onFocus())}onFocus(){let e=this.isFocused();this.listeners.forEach(t=>{t(e)})}isFocused(){return typeof this.#e==`boolean`?this.#e:globalThis.document?.visibilityState!==`hidden`}},tn={setTimeout:(e,t)=>setTimeout(e,t),clearTimeout:e=>clearTimeout(e),setInterval:(e,t)=>setInterval(e,t),clearInterval:e=>clearInterval(e)},nn=new class{#e=tn;setTimeoutProvider(e){this.#e=e}setTimeout(e,t){return this.#e.setTimeout(e,t)}clearTimeout(e){this.#e.clearTimeout(e)}setInterval(e,t){return this.#e.setInterval(e,t)}clearInterval(e){this.#e.clearInterval(e)}};function rn(e){setTimeout(e,0)}var an=typeof window>`u`||`Deno`in globalThis;function on(){}function sn(e,t){return typeof e==`function`?e(t):e}function cn(e){return typeof e==`number`&&e>=0&&e!==1/0}function ln(e,t){return Math.max(e+(t||0)-Date.now(),0)}function un(e,t){return typeof e==`function`?e(t):e}function dn(e,t){return typeof e==`function`?e(t):e}function fn(e,t){let{type:n=`all`,exact:r,fetchStatus:i,predicate:a,queryKey:o,stale:s}=e;if(o){if(r){if(t.queryHash!==mn(o,t.options))return!1}else if(!gn(t.queryKey,o))return!1}if(n!==`all`){let e=t.isActive();if(n===`active`&&!e||n===`inactive`&&e)return!1}return!(typeof s==`boolean`&&t.isStale()!==s||i&&i!==t.state.fetchStatus||a&&!a(t))}function pn(e,t){let{exact:n,status:r,predicate:i,mutationKey:a}=e;if(a){if(!t.options.mutationKey)return!1;if(n){if(hn(t.options.mutationKey)!==hn(a))return!1}else if(!gn(t.options.mutationKey,a))return!1}return!(r&&t.state.status!==r||i&&!i(t))}function mn(e,t){return(t?.queryKeyHashFn||hn)(e)}function hn(e){return JSON.stringify(e,(e,t)=>xn(t)?Object.keys(t).sort().reduce((e,n)=>(e[n]=t[n],e),{}):t)}function gn(e,t){return e===t?!0:typeof e==typeof t&&e&&t&&typeof e==`object`&&typeof t==`object`?Object.keys(t).every(n=>gn(e[n],t[n])):!1}var _n=Object.prototype.hasOwnProperty;function vn(e,t,n=0){if(e===t)return e;if(n>500)return t;let r=bn(e)&&bn(t);if(!r&&!(xn(e)&&xn(t)))return t;let i=(r?e:Object.keys(e)).length,a=r?t:Object.keys(t),o=a.length,s=r?Array(o):{},c=0;for(let l=0;l<o;l++){let o=r?l:a[l],u=e[o],d=t[o];if(u===d){s[o]=u,(r?l<i:_n.call(e,o))&&c++;continue}if(u===null||d===null||typeof u!=`object`||typeof d!=`object`){s[o]=d;continue}let f=vn(u,d,n+1);s[o]=f,f===u&&c++}return i===o&&c===i?e:s}function yn(e,t){if(!t||Object.keys(e).length!==Object.keys(t).length)return!1;for(let n in e)if(e[n]!==t[n])return!1;return!0}function bn(e){return Array.isArray(e)&&e.length===Object.keys(e).length}function xn(e){if(!Sn(e))return!1;let t=e.constructor;if(t===void 0)return!0;let n=t.prototype;return!(!Sn(n)||!n.hasOwnProperty(`isPrototypeOf`)||Object.getPrototypeOf(e)!==Object.prototype)}function Sn(e){return Object.prototype.toString.call(e)===`[object Object]`}function Cn(e){return new Promise(t=>{nn.setTimeout(t,e)})}function wn(e,t,n){return typeof n.structuralSharing==`function`?n.structuralSharing(e,t):n.structuralSharing===!1?t:vn(e,t)}function Tn(e,t,n=0){let r=[...e,t];return n&&r.length>n?r.slice(1):r}function En(e,t,n=0){let r=[t,...e];return n&&r.length>n?r.slice(0,-1):r}var Dn=Symbol();function On(e,t){return!e.queryFn&&t?.initialPromise?()=>t.initialPromise:!e.queryFn||e.queryFn===Dn?()=>Promise.reject(Error(`Missing queryFn: '${e.queryHash}'`)):e.queryFn}function kn(e,t){return typeof e==`function`?e(...t):!!e}function An(e,t,n){let r=!1,i;return Object.defineProperty(e,`signal`,{enumerable:!0,get:()=>(i??=t(),r?i:(r=!0,i.aborted?n():i.addEventListener(`abort`,n,{once:!0}),i))}),e}var jn=(()=>{let e=()=>an;return{isServer(){return e()},setIsServer(t){e=t}}})();function Mn(){let e,t,n=new Promise((n,r)=>{e=n,t=r});n.status=`pending`,n.catch(()=>{});function r(e){Object.assign(n,e),delete n.resolve,delete n.reject}return n.resolve=t=>{r({status:`fulfilled`,value:t}),e(t)},n.reject=e=>{r({status:`rejected`,reason:e}),t(e)},n}var Nn=rn;function Pn(){let e=[],t=0,n=e=>{e()},r=e=>{e()},i=Nn,a=r=>{t?e.push(r):i(()=>{n(r)})},o=()=>{let t=e;e=[],t.length&&i(()=>{r(()=>{t.forEach(e=>{n(e)})})})};return{batch:e=>{let n;t++;try{n=e()}finally{t--,t||o()}return n},batchCalls:e=>(...t)=>{a(()=>{e(...t)})},schedule:a,setNotifyFunction:e=>{n=e},setBatchNotifyFunction:e=>{r=e},setScheduler:e=>{i=e}}}var G=Pn(),Fn=new class extends $t{#e=!0;#t;#n;constructor(){super(),this.#n=e=>{if(typeof window<`u`&&window.addEventListener){let t=()=>e(!0),n=()=>e(!1);return window.addEventListener(`online`,t,!1),window.addEventListener(`offline`,n,!1),()=>{window.removeEventListener(`online`,t),window.removeEventListener(`offline`,n)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(e){this.#n=e,this.#t?.(),this.#t=e(this.setOnline.bind(this))}setOnline(e){this.#e!==e&&(this.#e=e,this.listeners.forEach(t=>{t(e)}))}isOnline(){return this.#e}};function In(e){return Math.min(1e3*2**e,3e4)}function Ln(e){return(e??`online`)===`online`?Fn.isOnline():!0}var Rn=class extends Error{constructor(e){super(`CancelledError`),this.revert=e?.revert,this.silent=e?.silent}};function zn(e){let t=!1,n=0,r,i=Mn(),a=()=>i.status!==`pending`,o=t=>{if(!a()){let n=new Rn(t);f(n),e.onCancel?.(n)}},s=()=>{t=!0},c=()=>{t=!1},l=()=>en.isFocused()&&(e.networkMode===`always`||Fn.isOnline())&&e.canRun(),u=()=>Ln(e.networkMode)&&e.canRun(),d=e=>{a()||(r?.(),i.resolve(e))},f=e=>{a()||(r?.(),i.reject(e))},p=()=>new Promise(t=>{r=e=>{(a()||l())&&t(e)},e.onPause?.()}).then(()=>{r=void 0,a()||e.onContinue?.()}),m=()=>{if(a())return;let r,i=n===0?e.initialPromise:void 0;try{r=i??e.fn()}catch(e){r=Promise.reject(e)}Promise.resolve(r).then(d).catch(r=>{if(a())return;let i=e.retry??(jn.isServer()?0:3),o=e.retryDelay??In,s=typeof o==`function`?o(n,r):o,c=i===!0||typeof i==`number`&&n<i||typeof i==`function`&&i(n,r);if(t||!c){f(r);return}n++,e.onFail?.(n,r),Cn(s).then(()=>l()?void 0:p()).then(()=>{t?f(r):m()})})};return{promise:i,status:()=>i.status,cancel:o,continue:()=>(r?.(),i),cancelRetry:s,continueRetry:c,canStart:u,start:()=>(u()?m():p().then(m),i)}}var Bn=class{#e;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),cn(this.gcTime)&&(this.#e=nn.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(e){this.gcTime=Math.max(this.gcTime||0,e??(jn.isServer()?1/0:300*1e3))}clearGcTimeout(){this.#e&&=(nn.clearTimeout(this.#e),void 0)}},Vn=class extends Bn{#e;#t;#n;#r;#i;#a;#o;constructor(e){super(),this.#o=!1,this.#a=e.defaultOptions,this.setOptions(e.options),this.observers=[],this.#r=e.client,this.#n=this.#r.getQueryCache(),this.queryKey=e.queryKey,this.queryHash=e.queryHash,this.#e=Wn(this.options),this.state=e.state??this.#e,this.scheduleGc()}get meta(){return this.options.meta}get promise(){return this.#i?.promise}setOptions(e){if(this.options={...this.#a,...e},this.updateGcTime(this.options.gcTime),this.state&&this.state.data===void 0){let e=Wn(this.options);e.data!==void 0&&(this.setState(Un(e.data,e.dataUpdatedAt)),this.#e=e)}}optionalRemove(){!this.observers.length&&this.state.fetchStatus===`idle`&&this.#n.remove(this)}setData(e,t){let n=wn(this.state.data,e,this.options);return this.#c({data:n,type:`success`,dataUpdatedAt:t?.updatedAt,manual:t?.manual}),n}setState(e,t){this.#c({type:`setState`,state:e,setStateOptions:t})}cancel(e){let t=this.#i?.promise;return this.#i?.cancel(e),t?t.then(on).catch(on):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}get resetState(){return this.#e}reset(){this.destroy(),this.setState(this.resetState)}isActive(){return this.observers.some(e=>dn(e.options.enabled,this)!==!1)}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===Dn||!this.isFetched()}isFetched(){return this.state.dataUpdateCount+this.state.errorUpdateCount>0}isStatic(){return this.getObserversCount()>0?this.observers.some(e=>un(e.options.staleTime,this)===`static`):!1}isStale(){return this.getObserversCount()>0?this.observers.some(e=>e.getCurrentResult().isStale):this.state.data===void 0||this.state.isInvalidated}isStaleByTime(e=0){return this.state.data===void 0?!0:e===`static`?!1:this.state.isInvalidated?!0:!ln(this.state.dataUpdatedAt,e)}onFocus(){this.observers.find(e=>e.shouldFetchOnWindowFocus())?.refetch({cancelRefetch:!1}),this.#i?.continue()}onOnline(){this.observers.find(e=>e.shouldFetchOnReconnect())?.refetch({cancelRefetch:!1}),this.#i?.continue()}addObserver(e){this.observers.includes(e)||(this.observers.push(e),this.clearGcTimeout(),this.#n.notify({type:`observerAdded`,query:this,observer:e}))}removeObserver(e){this.observers.includes(e)&&(this.observers=this.observers.filter(t=>t!==e),this.observers.length||(this.#i&&(this.#o||this.#s()?this.#i.cancel({revert:!0}):this.#i.cancelRetry()),this.scheduleGc()),this.#n.notify({type:`observerRemoved`,query:this,observer:e}))}getObserversCount(){return this.observers.length}#s(){return this.state.fetchStatus===`paused`&&this.state.status===`pending`}invalidate(){this.state.isInvalidated||this.#c({type:`invalidate`})}async fetch(e,t){if(this.state.fetchStatus!==`idle`&&this.#i?.status()!==`rejected`){if(this.state.data!==void 0&&t?.cancelRefetch)this.cancel({silent:!0});else if(this.#i)return this.#i.continueRetry(),this.#i.promise}if(e&&this.setOptions(e),!this.options.queryFn){let e=this.observers.find(e=>e.options.queryFn);e&&this.setOptions(e.options)}let n=new AbortController,r=e=>{Object.defineProperty(e,`signal`,{enumerable:!0,get:()=>(this.#o=!0,n.signal)})},i=()=>{let e=On(this.options,t),n=(()=>{let e={client:this.#r,queryKey:this.queryKey,meta:this.meta};return r(e),e})();return this.#o=!1,this.options.persister?this.options.persister(e,n,this):e(n)},a=(()=>{let e={fetchOptions:t,options:this.options,queryKey:this.queryKey,client:this.#r,state:this.state,fetchFn:i};return r(e),e})();this.options.behavior?.onFetch(a,this),this.#t=this.state,(this.state.fetchStatus===`idle`||this.state.fetchMeta!==a.fetchOptions?.meta)&&this.#c({type:`fetch`,meta:a.fetchOptions?.meta}),this.#i=zn({initialPromise:t?.initialPromise,fn:a.fetchFn,onCancel:e=>{e instanceof Rn&&e.revert&&this.setState({...this.#t,fetchStatus:`idle`}),n.abort()},onFail:(e,t)=>{this.#c({type:`failed`,failureCount:e,error:t})},onPause:()=>{this.#c({type:`pause`})},onContinue:()=>{this.#c({type:`continue`})},retry:a.options.retry,retryDelay:a.options.retryDelay,networkMode:a.options.networkMode,canRun:()=>!0});try{let e=await this.#i.start();if(e===void 0)throw Error(`${this.queryHash} data is undefined`);return this.setData(e),this.#n.config.onSuccess?.(e,this),this.#n.config.onSettled?.(e,this.state.error,this),e}catch(e){if(e instanceof Rn){if(e.silent)return this.#i.promise;if(e.revert){if(this.state.data===void 0)throw e;return this.state.data}}throw this.#c({type:`error`,error:e}),this.#n.config.onError?.(e,this),this.#n.config.onSettled?.(this.state.data,e,this),e}finally{this.scheduleGc()}}#c(e){this.state=(t=>{switch(e.type){case`failed`:return{...t,fetchFailureCount:e.failureCount,fetchFailureReason:e.error};case`pause`:return{...t,fetchStatus:`paused`};case`continue`:return{...t,fetchStatus:`fetching`};case`fetch`:return{...t,...Hn(t.data,this.options),fetchMeta:e.meta??null};case`success`:let n={...t,...Un(e.data,e.dataUpdatedAt),dataUpdateCount:t.dataUpdateCount+1,...!e.manual&&{fetchStatus:`idle`,fetchFailureCount:0,fetchFailureReason:null}};return this.#t=e.manual?n:void 0,n;case`error`:let r=e.error;return{...t,error:r,errorUpdateCount:t.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:t.fetchFailureCount+1,fetchFailureReason:r,fetchStatus:`idle`,status:`error`,isInvalidated:!0};case`invalidate`:return{...t,isInvalidated:!0};case`setState`:return{...t,...e.state}}})(this.state),G.batch(()=>{this.observers.forEach(e=>{e.onQueryUpdate()}),this.#n.notify({query:this,type:`updated`,action:e})})}};function Hn(e,t){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:Ln(t.networkMode)?`fetching`:`paused`,...e===void 0&&{error:null,status:`pending`}}}function Un(e,t){return{data:e,dataUpdatedAt:t??Date.now(),error:null,isInvalidated:!1,status:`success`}}function Wn(e){let t=typeof e.initialData==`function`?e.initialData():e.initialData,n=t!==void 0,r=n?typeof e.initialDataUpdatedAt==`function`?e.initialDataUpdatedAt():e.initialDataUpdatedAt:0;return{data:t,dataUpdateCount:0,dataUpdatedAt:n?r??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:n?`success`:`pending`,fetchStatus:`idle`}}var Gn=class extends $t{constructor(e,t){super(),this.options=t,this.#e=e,this.#s=null,this.#o=Mn(),this.bindMethods(),this.setOptions(t)}#e;#t=void 0;#n=void 0;#r=void 0;#i;#a;#o;#s;#c;#l;#u;#d;#f;#p;#m=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){this.listeners.size===1&&(this.#t.addObserver(this),qn(this.#t,this.options)?this.#h():this.updateResult(),this.#y())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return Jn(this.#t,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return Jn(this.#t,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#b(),this.#x(),this.#t.removeObserver(this)}setOptions(e){let t=this.options,n=this.#t;if(this.options=this.#e.defaultQueryOptions(e),this.options.enabled!==void 0&&typeof this.options.enabled!=`boolean`&&typeof this.options.enabled!=`function`&&typeof dn(this.options.enabled,this.#t)!=`boolean`)throw Error(`Expected enabled to be a boolean or a callback that returns a boolean`);this.#S(),this.#t.setOptions(this.options),t._defaulted&&!yn(this.options,t)&&this.#e.getQueryCache().notify({type:`observerOptionsUpdated`,query:this.#t,observer:this});let r=this.hasListeners();r&&Yn(this.#t,n,this.options,t)&&this.#h(),this.updateResult(),r&&(this.#t!==n||dn(this.options.enabled,this.#t)!==dn(t.enabled,this.#t)||un(this.options.staleTime,this.#t)!==un(t.staleTime,this.#t))&&this.#g();let i=this.#_();r&&(this.#t!==n||dn(this.options.enabled,this.#t)!==dn(t.enabled,this.#t)||i!==this.#p)&&this.#v(i)}getOptimisticResult(e){let t=this.#e.getQueryCache().build(this.#e,e),n=this.createResult(t,e);return Zn(this,n)&&(this.#r=n,this.#a=this.options,this.#i=this.#t.state),n}getCurrentResult(){return this.#r}trackResult(e,t){return new Proxy(e,{get:(e,n)=>(this.trackProp(n),t?.(n),n===`promise`&&(this.trackProp(`data`),!this.options.experimental_prefetchInRender&&this.#o.status===`pending`&&this.#o.reject(Error(`experimental_prefetchInRender feature flag is not enabled`))),Reflect.get(e,n))})}trackProp(e){this.#m.add(e)}getCurrentQuery(){return this.#t}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),n=this.#e.getQueryCache().build(this.#e,t);return n.fetch().then(()=>this.createResult(n,t))}fetch(e){return this.#h({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#r))}#h(e){this.#S();let t=this.#t.fetch(this.options,e);return e?.throwOnError||(t=t.catch(on)),t}#g(){this.#b();let e=un(this.options.staleTime,this.#t);if(jn.isServer()||this.#r.isStale||!cn(e))return;let t=ln(this.#r.dataUpdatedAt,e)+1;this.#d=nn.setTimeout(()=>{this.#r.isStale||this.updateResult()},t)}#_(){return(typeof this.options.refetchInterval==`function`?this.options.refetchInterval(this.#t):this.options.refetchInterval)??!1}#v(e){this.#x(),this.#p=e,!(jn.isServer()||dn(this.options.enabled,this.#t)===!1||!cn(this.#p)||this.#p===0)&&(this.#f=nn.setInterval(()=>{(this.options.refetchIntervalInBackground||en.isFocused())&&this.#h()},this.#p))}#y(){this.#g(),this.#v(this.#_())}#b(){this.#d&&=(nn.clearTimeout(this.#d),void 0)}#x(){this.#f&&=(nn.clearInterval(this.#f),void 0)}createResult(e,t){let n=this.#t,r=this.options,i=this.#r,a=this.#i,o=this.#a,s=e===n?this.#n:e.state,{state:c}=e,l={...c},u=!1,d;if(t._optimisticResults){let i=this.hasListeners(),a=!i&&qn(e,t),o=i&&Yn(e,n,t,r);(a||o)&&(l={...l,...Hn(c.data,e.options)}),t._optimisticResults===`isRestoring`&&(l.fetchStatus=`idle`)}let{error:f,errorUpdatedAt:p,status:m}=l;d=l.data;let h=!1;if(t.placeholderData!==void 0&&d===void 0&&m===`pending`){let e;i?.isPlaceholderData&&t.placeholderData===o?.placeholderData?(e=i.data,h=!0):e=typeof t.placeholderData==`function`?t.placeholderData(this.#u?.state.data,this.#u):t.placeholderData,e!==void 0&&(m=`success`,d=wn(i?.data,e,t),u=!0)}if(t.select&&d!==void 0&&!h)if(i&&d===a?.data&&t.select===this.#c)d=this.#l;else try{this.#c=t.select,d=t.select(d),d=wn(i?.data,d,t),this.#l=d,this.#s=null}catch(e){this.#s=e}this.#s&&(f=this.#s,d=this.#l,p=Date.now(),m=`error`);let g=l.fetchStatus===`fetching`,_=m===`pending`,v=m===`error`,y=_&&g,b=d!==void 0,x={status:m,fetchStatus:l.fetchStatus,isPending:_,isSuccess:m===`success`,isError:v,isInitialLoading:y,isLoading:y,data:d,dataUpdatedAt:l.dataUpdatedAt,error:f,errorUpdatedAt:p,failureCount:l.fetchFailureCount,failureReason:l.fetchFailureReason,errorUpdateCount:l.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:l.dataUpdateCount>s.dataUpdateCount||l.errorUpdateCount>s.errorUpdateCount,isFetching:g,isRefetching:g&&!_,isLoadingError:v&&!b,isPaused:l.fetchStatus===`paused`,isPlaceholderData:u,isRefetchError:v&&b,isStale:Xn(e,t),refetch:this.refetch,promise:this.#o,isEnabled:dn(t.enabled,e)!==!1};if(this.options.experimental_prefetchInRender){let t=x.data!==void 0,r=x.status===`error`&&!t,i=e=>{r?e.reject(x.error):t&&e.resolve(x.data)},a=()=>{i(this.#o=x.promise=Mn())},o=this.#o;switch(o.status){case`pending`:e.queryHash===n.queryHash&&i(o);break;case`fulfilled`:(r||x.data!==o.value)&&a();break;case`rejected`:(!r||x.error!==o.reason)&&a();break}}return x}updateResult(){let e=this.#r,t=this.createResult(this.#t,this.options);this.#i=this.#t.state,this.#a=this.options,this.#i.data!==void 0&&(this.#u=this.#t),!yn(t,e)&&(this.#r=t,this.#C({listeners:(()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,n=typeof t==`function`?t():t;if(n===`all`||!n&&!this.#m.size)return!0;let r=new Set(n??this.#m);return this.options.throwOnError&&r.add(`error`),Object.keys(this.#r).some(t=>{let n=t;return this.#r[n]!==e[n]&&r.has(n)})})()}))}#S(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#t)return;let t=this.#t;this.#t=e,this.#n=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#y()}#C(e){G.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#r)}),this.#e.getQueryCache().notify({query:this.#t,type:`observerResultsUpdated`})})}};function Kn(e,t){return dn(t.enabled,e)!==!1&&e.state.data===void 0&&!(e.state.status===`error`&&t.retryOnMount===!1)}function qn(e,t){return Kn(e,t)||e.state.data!==void 0&&Jn(e,t,t.refetchOnMount)}function Jn(e,t,n){if(dn(t.enabled,e)!==!1&&un(t.staleTime,e)!==`static`){let r=typeof n==`function`?n(e):n;return r===`always`||r!==!1&&Xn(e,t)}return!1}function Yn(e,t,n,r){return(e!==t||dn(r.enabled,e)===!1)&&(!n.suspense||e.state.status!==`error`)&&Xn(e,n)}function Xn(e,t){return dn(t.enabled,e)!==!1&&e.isStaleByTime(un(t.staleTime,e))}function Zn(e,t){return!yn(e.getCurrentResult(),t)}function Qn(e){return{onFetch:(t,n)=>{let r=t.options,i=t.fetchOptions?.meta?.fetchMore?.direction,a=t.state.data?.pages||[],o=t.state.data?.pageParams||[],s={pages:[],pageParams:[]},c=0,l=async()=>{let n=!1,l=e=>{An(e,()=>t.signal,()=>n=!0)},u=On(t.options,t.fetchOptions),d=async(e,r,i)=>{if(n)return Promise.reject();if(r==null&&e.pages.length)return Promise.resolve(e);let a=await u((()=>{let e={client:t.client,queryKey:t.queryKey,pageParam:r,direction:i?`backward`:`forward`,meta:t.options.meta};return l(e),e})()),{maxPages:o}=t.options,s=i?En:Tn;return{pages:s(e.pages,a,o),pageParams:s(e.pageParams,r,o)}};if(i&&a.length){let e=i===`backward`,t=e?er:$n,n={pages:a,pageParams:o};s=await d(n,t(r,n),e)}else{let t=e??a.length;do{let e=c===0?o[0]??r.initialPageParam:$n(r,s);if(c>0&&e==null)break;s=await d(s,e),c++}while(c<t)}return s};t.options.persister?t.fetchFn=()=>t.options.persister?.(l,{client:t.client,queryKey:t.queryKey,meta:t.options.meta,signal:t.signal},n):t.fetchFn=l}}}function $n(e,{pages:t,pageParams:n}){let r=t.length-1;return t.length>0?e.getNextPageParam(t[r],t,n[r],n):void 0}function er(e,{pages:t,pageParams:n}){return t.length>0?e.getPreviousPageParam?.(t[0],t,n[0],n):void 0}var tr=class extends Bn{#e;#t;#n;#r;constructor(e){super(),this.#e=e.client,this.mutationId=e.mutationId,this.#n=e.mutationCache,this.#t=[],this.state=e.state||nr(),this.setOptions(e.options),this.scheduleGc()}setOptions(e){this.options=e,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(e){this.#t.includes(e)||(this.#t.push(e),this.clearGcTimeout(),this.#n.notify({type:`observerAdded`,mutation:this,observer:e}))}removeObserver(e){this.#t=this.#t.filter(t=>t!==e),this.scheduleGc(),this.#n.notify({type:`observerRemoved`,mutation:this,observer:e})}optionalRemove(){this.#t.length||(this.state.status===`pending`?this.scheduleGc():this.#n.remove(this))}continue(){return this.#r?.continue()??this.execute(this.state.variables)}async execute(e){let t=()=>{this.#i({type:`continue`})},n={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#r=zn({fn:()=>this.options.mutationFn?this.options.mutationFn(e,n):Promise.reject(Error(`No mutationFn found`)),onFail:(e,t)=>{this.#i({type:`failed`,failureCount:e,error:t})},onPause:()=>{this.#i({type:`pause`})},onContinue:t,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#n.canRun(this)});let r=this.state.status===`pending`,i=!this.#r.canStart();try{if(r)t();else{this.#i({type:`pending`,variables:e,isPaused:i}),this.#n.config.onMutate&&await this.#n.config.onMutate(e,this,n);let t=await this.options.onMutate?.(e,n);t!==this.state.context&&this.#i({type:`pending`,context:t,variables:e,isPaused:i})}let a=await this.#r.start();return await this.#n.config.onSuccess?.(a,e,this.state.context,this,n),await this.options.onSuccess?.(a,e,this.state.context,n),await this.#n.config.onSettled?.(a,null,this.state.variables,this.state.context,this,n),await this.options.onSettled?.(a,null,e,this.state.context,n),this.#i({type:`success`,data:a}),a}catch(t){try{await this.#n.config.onError?.(t,e,this.state.context,this,n)}catch(e){Promise.reject(e)}try{await this.options.onError?.(t,e,this.state.context,n)}catch(e){Promise.reject(e)}try{await this.#n.config.onSettled?.(void 0,t,this.state.variables,this.state.context,this,n)}catch(e){Promise.reject(e)}try{await this.options.onSettled?.(void 0,t,e,this.state.context,n)}catch(e){Promise.reject(e)}throw this.#i({type:`error`,error:t}),t}finally{this.#n.runNext(this)}}#i(e){this.state=(t=>{switch(e.type){case`failed`:return{...t,failureCount:e.failureCount,failureReason:e.error};case`pause`:return{...t,isPaused:!0};case`continue`:return{...t,isPaused:!1};case`pending`:return{...t,context:e.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:e.isPaused,status:`pending`,variables:e.variables,submittedAt:Date.now()};case`success`:return{...t,data:e.data,failureCount:0,failureReason:null,error:null,status:`success`,isPaused:!1};case`error`:return{...t,data:void 0,error:e.error,failureCount:t.failureCount+1,failureReason:e.error,isPaused:!1,status:`error`}}})(this.state),G.batch(()=>{this.#t.forEach(t=>{t.onMutationUpdate(e)}),this.#n.notify({mutation:this,type:`updated`,action:e})})}};function nr(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:`idle`,variables:void 0,submittedAt:0}}var rr=class extends $t{constructor(e={}){super(),this.config=e,this.#e=new Set,this.#t=new Map,this.#n=0}#e;#t;#n;build(e,t,n){let r=new tr({client:e,mutationCache:this,mutationId:++this.#n,options:e.defaultMutationOptions(t),state:n});return this.add(r),r}add(e){this.#e.add(e);let t=ir(e);if(typeof t==`string`){let n=this.#t.get(t);n?n.push(e):this.#t.set(t,[e])}this.notify({type:`added`,mutation:e})}remove(e){if(this.#e.delete(e)){let t=ir(e);if(typeof t==`string`){let n=this.#t.get(t);if(n)if(n.length>1){let t=n.indexOf(e);t!==-1&&n.splice(t,1)}else n[0]===e&&this.#t.delete(t)}}this.notify({type:`removed`,mutation:e})}canRun(e){let t=ir(e);if(typeof t==`string`){let n=this.#t.get(t)?.find(e=>e.state.status===`pending`);return!n||n===e}else return!0}runNext(e){let t=ir(e);return typeof t==`string`?(this.#t.get(t)?.find(t=>t!==e&&t.state.isPaused))?.continue()??Promise.resolve():Promise.resolve()}clear(){G.batch(()=>{this.#e.forEach(e=>{this.notify({type:`removed`,mutation:e})}),this.#e.clear(),this.#t.clear()})}getAll(){return Array.from(this.#e)}find(e){let t={exact:!0,...e};return this.getAll().find(e=>pn(t,e))}findAll(e={}){return this.getAll().filter(t=>pn(e,t))}notify(e){G.batch(()=>{this.listeners.forEach(t=>{t(e)})})}resumePausedMutations(){let e=this.getAll().filter(e=>e.state.isPaused);return G.batch(()=>Promise.all(e.map(e=>e.continue().catch(on))))}};function ir(e){return e.options.scope?.id}var ar=class extends $t{constructor(e={}){super(),this.config=e,this.#e=new Map}#e;build(e,t,n){let r=t.queryKey,i=t.queryHash??mn(r,t),a=this.get(i);return a||(a=new Vn({client:e,queryKey:r,queryHash:i,options:e.defaultQueryOptions(t),state:n,defaultOptions:e.getQueryDefaults(r)}),this.add(a)),a}add(e){this.#e.has(e.queryHash)||(this.#e.set(e.queryHash,e),this.notify({type:`added`,query:e}))}remove(e){let t=this.#e.get(e.queryHash);t&&(e.destroy(),t===e&&this.#e.delete(e.queryHash),this.notify({type:`removed`,query:e}))}clear(){G.batch(()=>{this.getAll().forEach(e=>{this.remove(e)})})}get(e){return this.#e.get(e)}getAll(){return[...this.#e.values()]}find(e){let t={exact:!0,...e};return this.getAll().find(e=>fn(t,e))}findAll(e={}){let t=this.getAll();return Object.keys(e).length>0?t.filter(t=>fn(e,t)):t}notify(e){G.batch(()=>{this.listeners.forEach(t=>{t(e)})})}onFocus(){G.batch(()=>{this.getAll().forEach(e=>{e.onFocus()})})}onOnline(){G.batch(()=>{this.getAll().forEach(e=>{e.onOnline()})})}},or=class{#e;#t;#n;#r;#i;#a;#o;#s;constructor(e={}){this.#e=e.queryCache||new ar,this.#t=e.mutationCache||new rr,this.#n=e.defaultOptions||{},this.#r=new Map,this.#i=new Map,this.#a=0}mount(){this.#a++,this.#a===1&&(this.#o=en.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#e.onFocus())}),this.#s=Fn.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#e.onOnline())}))}unmount(){this.#a--,this.#a===0&&(this.#o?.(),this.#o=void 0,this.#s?.(),this.#s=void 0)}isFetching(e){return this.#e.findAll({...e,fetchStatus:`fetching`}).length}isMutating(e){return this.#t.findAll({...e,status:`pending`}).length}getQueryData(e){let t=this.defaultQueryOptions({queryKey:e});return this.#e.get(t.queryHash)?.state.data}ensureQueryData(e){let t=this.defaultQueryOptions(e),n=this.#e.build(this,t),r=n.state.data;return r===void 0?this.fetchQuery(e):(e.revalidateIfStale&&n.isStaleByTime(un(t.staleTime,n))&&this.prefetchQuery(t),Promise.resolve(r))}getQueriesData(e){return this.#e.findAll(e).map(({queryKey:e,state:t})=>[e,t.data])}setQueryData(e,t,n){let r=this.defaultQueryOptions({queryKey:e}),i=this.#e.get(r.queryHash)?.state.data,a=sn(t,i);if(a!==void 0)return this.#e.build(this,r).setData(a,{...n,manual:!0})}setQueriesData(e,t,n){return G.batch(()=>this.#e.findAll(e).map(({queryKey:e})=>[e,this.setQueryData(e,t,n)]))}getQueryState(e){let t=this.defaultQueryOptions({queryKey:e});return this.#e.get(t.queryHash)?.state}removeQueries(e){let t=this.#e;G.batch(()=>{t.findAll(e).forEach(e=>{t.remove(e)})})}resetQueries(e,t){let n=this.#e;return G.batch(()=>(n.findAll(e).forEach(e=>{e.reset()}),this.refetchQueries({type:`active`,...e},t)))}cancelQueries(e,t={}){let n={revert:!0,...t},r=G.batch(()=>this.#e.findAll(e).map(e=>e.cancel(n)));return Promise.all(r).then(on).catch(on)}invalidateQueries(e,t={}){return G.batch(()=>(this.#e.findAll(e).forEach(e=>{e.invalidate()}),e?.refetchType===`none`?Promise.resolve():this.refetchQueries({...e,type:e?.refetchType??e?.type??`active`},t)))}refetchQueries(e,t={}){let n={...t,cancelRefetch:t.cancelRefetch??!0},r=G.batch(()=>this.#e.findAll(e).filter(e=>!e.isDisabled()&&!e.isStatic()).map(e=>{let t=e.fetch(void 0,n);return n.throwOnError||(t=t.catch(on)),e.state.fetchStatus===`paused`?Promise.resolve():t}));return Promise.all(r).then(on)}fetchQuery(e){let t=this.defaultQueryOptions(e);t.retry===void 0&&(t.retry=!1);let n=this.#e.build(this,t);return n.isStaleByTime(un(t.staleTime,n))?n.fetch(t):Promise.resolve(n.state.data)}prefetchQuery(e){return this.fetchQuery(e).then(on).catch(on)}fetchInfiniteQuery(e){return e.behavior=Qn(e.pages),this.fetchQuery(e)}prefetchInfiniteQuery(e){return this.fetchInfiniteQuery(e).then(on).catch(on)}ensureInfiniteQueryData(e){return e.behavior=Qn(e.pages),this.ensureQueryData(e)}resumePausedMutations(){return Fn.isOnline()?this.#t.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#e}getMutationCache(){return this.#t}getDefaultOptions(){return this.#n}setDefaultOptions(e){this.#n=e}setQueryDefaults(e,t){this.#r.set(hn(e),{queryKey:e,defaultOptions:t})}getQueryDefaults(e){let t=[...this.#r.values()],n={};return t.forEach(t=>{gn(e,t.queryKey)&&Object.assign(n,t.defaultOptions)}),n}setMutationDefaults(e,t){this.#i.set(hn(e),{mutationKey:e,defaultOptions:t})}getMutationDefaults(e){let t=[...this.#i.values()],n={};return t.forEach(t=>{gn(e,t.mutationKey)&&Object.assign(n,t.defaultOptions)}),n}defaultQueryOptions(e){if(e._defaulted)return e;let t={...this.#n.queries,...this.getQueryDefaults(e.queryKey),...e,_defaulted:!0};return t.queryHash||=mn(t.queryKey,t),t.refetchOnReconnect===void 0&&(t.refetchOnReconnect=t.networkMode!==`always`),t.throwOnError===void 0&&(t.throwOnError=!!t.suspense),!t.networkMode&&t.persister&&(t.networkMode=`offlineFirst`),t.queryFn===Dn&&(t.enabled=!1),t}defaultMutationOptions(e){return e?._defaulted?e:{...this.#n.mutations,...e?.mutationKey&&this.getMutationDefaults(e.mutationKey),...e,_defaulted:!0}}clear(){this.#e.clear(),this.#t.clear()}},sr=N.createContext(void 0),cr=e=>{let t=N.useContext(sr);if(e)return e;if(!t)throw Error(`No QueryClient set, use QueryClientProvider to set one`);return t},lr=({client:e,children:t})=>(N.useEffect(()=>(e.mount(),()=>{e.unmount()}),[e]),(0,I.jsx)(sr.Provider,{value:e,children:t})),ur=N.createContext(!1),dr=()=>N.useContext(ur);ur.Provider;function fr(){let e=!1;return{clearReset:()=>{e=!1},reset:()=>{e=!0},isReset:()=>e}}var pr=N.createContext(fr()),mr=()=>N.useContext(pr),hr=(e,t,n)=>{let r=n?.state.error&&typeof e.throwOnError==`function`?kn(e.throwOnError,[n.state.error,n]):e.throwOnError;(e.suspense||e.experimental_prefetchInRender||r)&&(t.isReset()||(e.retryOnMount=!1))},gr=e=>{N.useEffect(()=>{e.clearReset()},[e])},_r=({result:e,errorResetBoundary:t,throwOnError:n,query:r,suspense:i})=>e.isError&&!t.isReset()&&!e.isFetching&&r&&(i&&e.data===void 0||kn(n,[e.error,r])),vr=e=>{if(e.suspense){let t=1e3,n=e=>e===`static`?e:Math.max(e??t,t),r=e.staleTime;e.staleTime=typeof r==`function`?(...e)=>n(r(...e)):n(r),typeof e.gcTime==`number`&&(e.gcTime=Math.max(e.gcTime,t))}},yr=(e,t)=>e.isLoading&&e.isFetching&&!t,br=(e,t)=>e?.suspense&&t.isPending,xr=(e,t,n)=>t.fetchOptimistic(e).catch(()=>{n.clearReset()});function Sr(e,t,n){let r=dr(),i=mr(),a=cr(n),o=a.defaultQueryOptions(e);a.getDefaultOptions().queries?._experimental_beforeQuery?.(o);let s=a.getQueryCache().get(o.queryHash);o._optimisticResults=r?`isRestoring`:`optimistic`,vr(o),hr(o,i,s),gr(i);let c=!a.getQueryCache().get(o.queryHash),[l]=N.useState(()=>new t(a,o)),u=l.getOptimisticResult(o),d=!r&&e.subscribed!==!1;if(N.useSyncExternalStore(N.useCallback(e=>{let t=d?l.subscribe(G.batchCalls(e)):on;return l.updateResult(),t},[l,d]),()=>l.getCurrentResult(),()=>l.getCurrentResult()),N.useEffect(()=>{l.setOptions(o)},[o,l]),br(o,u))throw xr(o,l,i);if(_r({result:u,errorResetBoundary:i,throwOnError:o.throwOnError,query:s,suspense:o.suspense}))throw u.error;return a.getDefaultOptions().queries?._experimental_afterQuery?.(o,u),o.experimental_prefetchInRender&&!jn.isServer()&&yr(u,r)&&(c?xr(o,l,i):s?.promise)?.catch(on).finally(()=>{l.updateResult()}),o.notifyOnChangeProps?u:l.trackResult(u)}function Cr(e,t){return Sr(e,Gn,t)}function wr(e,t){return t<5?`UNGRADED`:e>=.8?`HEALTHY`:e>=.5?`WARNING`:`CRITICAL`}function Tr(e){return e==null||!Number.isFinite(e)?`--`:`${Math.round(e*100)}%`}function Er(e){return[...e].sort((e,t)=>{let n=e.passRate??1,r=t.passRate??1;return n===r?t.checks-e.checks:n-r})}function K(e){let t=new Date(e).getTime();if(Number.isNaN(t))return`--`;let n=Math.max(0,Date.now()-t),r=Math.floor(n/6e4);if(r<1)return`just now`;if(r<60)return`${r}m ago`;let i=Math.floor(r/60);return i<24?`${i}h ago`:`${Math.floor(i/24)}d ago`}var Dr=new Set,Or=[],kr=[],Ar=new Set,jr=24,Mr=8,Nr=240,Pr=2048;function Fr(){for(let e of Dr)e()}function Ir(e){return e.filter(Boolean).slice(-Mr)}function Lr(e){return e.slice(-Nr)}function Rr(e){if(Ar.has(e)||(Ar.add(e),kr.push(e),kr.length<=Pr))return;let t=kr.shift();t&&Ar.delete(t)}function zr(e){return e?e.split(/\r?\n/).map(e=>e.trim()).filter(Boolean):[]}function Br(e){return[...e].sort((e,t)=>t.updatedAt-e.updatedAt)}function Vr(e,t){return t?e?{platform:t.platform??e.platform,model:t.model??e.model,session_id:t.session_id??e.session_id,input_tokens:t.input_tokens??e.input_tokens,output_tokens:t.output_tokens??e.output_tokens,cache_creation_input_tokens:t.cache_creation_input_tokens??e.cache_creation_input_tokens,cache_read_input_tokens:t.cache_read_input_tokens??e.cache_read_input_tokens,total_cost_usd:t.total_cost_usd??e.total_cost_usd,duration_ms:t.duration_ms??e.duration_ms,num_turns:t.num_turns??e.num_turns}:t:e}function Hr(e,t){return t?e?{current:t.current??e.current,total:t.total??e.total,status:t.status??e.status,unit:t.unit??e.unit,phase:t.phase??e.phase,label:t.label??e.label,query:t.query??e.query,passed:t.passed??e.passed,evidence:t.evidence??e.evidence}:t:e}function Ur(e){return JSON.stringify({event_id:e.event_id,action:e.action,stage:e.stage,ts:e.ts,chunk:e.chunk??null,success:e.success??null,exit_code:e.exit_code??null,error:e.error??null,summary:e.summary??null,metrics:e.metrics??null,progress:e.progress??null})}function Wr(e,t,n=[]){e.logs=Lr([...e.logs,...t]),n.length>0&&(e.output=Ir([...e.output,...n]))}function Gr(e){switch(e){case`llm_call`:return`Call`;case`step`:return`Step`;default:return`Eval`}}function Kr(e){let t=`${Gr(e.unit)} ${e.current}/${e.total}`,n=e.label??e.query,r=e.phase?e.phase.replaceAll(`_`,` `):null;if(e.status===`started`){let e=[r,n].filter(Boolean).join(` · `);return e?`${t} started · ${e}`:`${t} started`}let i=e.passed==null?`finished`:e.passed?`passed`:`failed`,a=[r,n,e.evidence].filter(Boolean).join(` · `);return a?`${t} ${i} · ${a}`:`${t} ${i}`}function qr(e){let t=[e.platform,e.model,e.session_id?`session ${e.session_id}`:null,e.input_tokens==null?null:`in ${Math.round(e.input_tokens).toLocaleString()}`,e.output_tokens==null?null:`out ${Math.round(e.output_tokens).toLocaleString()}`,e.total_cost_usd==null?null:`$${e.total_cost_usd.toFixed(4)}`,e.duration_ms==null?null:`${(e.duration_ms/1e3).toFixed(1)}s`].filter(Boolean);return t.length===0?null:`Runtime metrics · ${t.join(` · `)}`}function Jr(e){let t=Ur(e);if(Ar.has(t))return!1;Rr(t);let n=Or.find(t=>t.id===e.event_id);if(e.stage===`started`)return Or=[{id:e.event_id,action:e.action,skillName:e.skill_name,skillPath:e.skill_path,status:`running`,startedAt:e.ts,updatedAt:e.ts,output:[],logs:[],error:null,exitCode:null,summary:null,metrics:null,progress:null},...Or.filter(t=>t.id!==e.event_id)].slice(0,jr),Fr(),!0;if(!n)return!1;if(e.stage===`stdout`||e.stage===`stderr`){let t=e.stage,r=zr(e.chunk);return n.updatedAt=e.ts,Wr(n,r.map((n,r)=>({id:`${e.event_id}:${e.ts}:${t}:${r}`,stage:t,text:n,ts:e.ts})),r),t===`stderr`&&e.chunk?.trim()&&(n.error=e.chunk.trim()),Or=Br(Or),Fr(),!0}if(e.stage===`progress`){if(n.updatedAt=e.ts,n.progress=Hr(n.progress,e.progress),e.progress){let t=Kr(e.progress);Wr(n,[{id:`${e.event_id}:${e.ts}:progress:${e.progress.status}:${e.progress.current}`,stage:`progress`,text:t,ts:e.ts}],[t])}return Or=Br(Or),Fr(),!0}if(e.stage===`finished`)return n.updatedAt=e.ts,n.status=e.success?`success`:`error`,n.error=e.error??n.error,n.exitCode=e.exit_code??null,n.summary=e.summary??n.summary,n.metrics=Vr(n.metrics,e.metrics),n.progress=Hr(n.progress,e.progress),Or=Br(Or),Fr(),!0;if(e.stage===`metrics`){if(n.updatedAt=e.ts,n.metrics=Vr(n.metrics,e.metrics),e.metrics){let t=qr(e.metrics);t&&Wr(n,[{id:`${e.event_id}:${e.ts}:metrics`,stage:`metrics`,text:t,ts:e.ts}],[t])}return Or=Br(Or),Fr(),!0}return!1}function Yr(e){return Dr.add(e),()=>Dr.delete(e)}function Xr(){return Or}function Zr(){return(0,N.useSyncExternalStore)(Yr,Xr,Xr)}function Qr(e,t){let{eventId:n,skillName:r,action:i,preferRunning:a=!0}=t;if(n)return e.find(e=>e.id===n)??null;let o=e.filter(e=>!(r&&e.skillName!==r||i&&e.action!==i));return o.length===0?null:a?o.find(e=>e.status===`running`)??o[0]??null:o[0]??null}function $r(e){return Qr(Zr(),e)}function ei(e){switch(e){case`create-check`:return`Verify draft`;case`report-package`:return`Package report`;case`generate-evals`:return`Generate evals`;case`generate-unit-tests`:return`Generate unit tests`;case`replay-dry-run`:return`Replay dry-run`;case`measure-baseline`:return`Measure baseline`;case`deploy-candidate`:return`Ship candidate`;case`watch`:return`Monitor live`;case`search-run`:return`Run search`;case`orchestrate`:return`Run loop`;case`rollback`:return`Rollback`}return e}function ti(e){let t=new URLSearchParams({event:e.event_id,action:e.action});return e.skill_name&&t.set(`skill`,e.skill_name),`/live-run?${t.toString()}`}function ni(e){let t=ti(e);return typeof window>`u`?t:(window.history.pushState({},``,t),window.dispatchEvent(new PopStateEvent(`popstate`)),t)}function ri(e){return e===`running`?(0,I.jsxs)(F,{variant:`secondary`,className:`gap-1`,children:[(0,I.jsx)(Re,{className:`size-3 animate-spin`}),`Live`]}):e===`success`?(0,I.jsx)(F,{variant:`default`,children:`Done`}):(0,I.jsx)(F,{variant:`destructive`,children:`Failed`})}function ii(){let e=Zr();return e.length===0?null:(0,I.jsx)(`div`,{className:`pointer-events-none fixed bottom-6 right-6 z-40 hidden w-[360px] xl:block`,children:(0,I.jsxs)(R,{className:`pointer-events-auto border-border/40 bg-background/95 shadow-2xl backdrop-blur`,children:[(0,I.jsx)(z,{className:`pb-3`,children:(0,I.jsxs)(B,{className:`flex items-center gap-2 text-sm`,children:[(0,I.jsx)(Le,{className:`size-4`}),`Live lifecycle actions`]})}),(0,I.jsx)(H,{className:`space-y-3`,children:e.slice(0,4).map(e=>(0,I.jsxs)(l,{to:ti({event_id:e.id,action:e.action,skill_name:e.skillName}),className:`block rounded-xl border border-border/20 bg-muted/20 px-3 py-2 transition-colors hover:border-primary/30 hover:bg-muted/35 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/60`,children:[(0,I.jsxs)(`div`,{className:`flex items-start justify-between gap-3`,children:[(0,I.jsxs)(`div`,{className:`min-w-0`,children:[(0,I.jsxs)(`div`,{className:`truncate text-sm font-medium`,children:[ei(e.action),e.skillName?` · ${e.skillName}`:``]}),(0,I.jsx)(`div`,{className:`mt-1 text-[11px] font-mono text-muted-foreground`,children:K(new Date(e.updatedAt).toISOString())})]}),ri(e.status)]}),e.output.length>0?(0,I.jsx)(`div`,{className:`mt-2 rounded-lg bg-background px-2 py-1.5 font-mono text-[11px] text-muted-foreground`,children:e.output.at(-1)}):null,e.error&&e.status===`error`?(0,I.jsx)(`p`,{className:`mt-2 text-[11px] text-destructive line-clamp-2`,children:e.error}):null,(0,I.jsxs)(`div`,{className:`mt-2 flex items-center justify-end gap-1 text-[11px] font-medium text-primary`,children:[(0,I.jsx)(`span`,{children:`Live run`}),(0,I.jsx)(nt,{className:`size-3`})]})]},e.id))})]})})}function ai(e){if(typeof e!=`object`||!e)return!1;let t=e;return typeof t.workspace_root==`string`&&typeof t.git_sha==`string`&&typeof t.db_path==`string`&&typeof t.process_mode==`string`&&typeof t.update_available==`boolean`&&typeof t.auto_update_supported==`boolean`&&(`latest_version`in t?t.latest_version===null||typeof t.latest_version==`string`:!0)&&(t.watcher_mode===`wal`||t.watcher_mode===`jsonl`||t.watcher_mode===`none`)}function oi(e){return e===`warning`?{text:`text-amber-400 ring-amber-400/20 hover:bg-amber-400/8`,dot:`bg-amber-400`}:e===`critical`?{text:`text-destructive ring-destructive/20 hover:bg-destructive/8`,dot:`bg-destructive`}:{text:`text-primary ring-primary/20 hover:bg-primary/8`,dot:`animate-pulse bg-primary shadow-[0_0_8px_color-mix(in_srgb,var(--primary)_60%,transparent)]`}}function si({href:e,label:t,detail:n,tone:r}){let i=oi(r);return(0,I.jsxs)(l,{to:e,className:`glass-panel pointer-events-auto flex items-center gap-2 rounded-full border border-foreground/5 px-3 py-2 font-headline text-[10px] uppercase tracking-[0.18em] text-slate-300 shadow-lg transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/40 ${i.text}`,children:[(0,I.jsx)(`span`,{className:`size-1.5 rounded-full ${i.dot}`}),(0,I.jsx)(`span`,{children:t}),(0,I.jsx)(`span`,{className:`text-foreground/25`,children:`/`}),(0,I.jsx)(`span`,{className:`text-slate-400`,children:n})]})}function ci(){let[e,t]=(0,N.useState)(null);if((0,N.useEffect)(()=>{fetch(`/api/health`).then(e=>e.json()).then(e=>{ai(e)&&t(e)}).catch(()=>{})},[]),!e)return null;let n=e.watcher_mode===`jsonl`,r=e.watcher_mode===`none`,i=e.spa_mode===`proxy`?`proxy`:e.spa_mode===`dist`?`dist`:`missing`,a=n?`Legacy watcher`:r?`Watcher disabled`:`Runtime healthy`,o=n?`warning`:r?`critical`:`healthy`,s=e.latest_version?`v${e.latest_version} · ${e.auto_update_supported?`auto`:`manual`}`:`check pending`;return(0,I.jsxs)(`div`,{className:`pointer-events-none fixed bottom-4 right-4 z-20 flex max-w-[calc(100vw-2rem)] flex-wrap justify-end gap-2`,children:[e.update_available?(0,I.jsx)(si,{href:`/status`,label:`Update available`,detail:s,tone:`warning`}):null,(0,I.jsx)(si,{href:`/status`,label:a,detail:`${e.process_mode} · ${i}`,tone:o})]})}function li(e,t){if(!e.ok||e.service!==`selftune-dashboard`)return null;let n=e.version??`unknown`,r=e.spa_build_id??n,i=t.buildId||t.version;return n===t.version&&r===i?null:{serverVersion:n,serverBuildId:r}}var ui={version:`0.2.32`,buildId:`0.2.32`},di=3e4;function fi(){let[e,t]=(0,N.useState)(null);return(0,N.useEffect)(()=>{let e=!0;async function n(){try{let n=await fetch(`/api/health`,{cache:`no-store`});if(!n.ok)return;let r=await n.json();if(!e)return;t(li(r,ui))}catch{}}n();let r=window.setInterval(()=>{n()},di);return()=>{e=!1,window.clearInterval(r)}},[]),e?(0,I.jsxs)(`div`,{className:`fixed right-4 bottom-4 z-[90] max-w-sm rounded-xl border border-amber-500/40 bg-background/95 p-4 shadow-2xl backdrop-blur`,children:[(0,I.jsx)(`p`,{className:`text-sm font-semibold text-foreground`,children:`Dashboard update available`}),(0,I.jsxs)(`p`,{className:`mt-1 text-sm text-muted-foreground`,children:[`The running dashboard is on v`,e.serverVersion,`. Reload to use the newer UI.`]}),(0,I.jsxs)(`div`,{className:`mt-3 flex items-center gap-2`,children:[(0,I.jsx)(`button`,{type:`button`,onClick:()=>window.location.reload(),className:`rounded-md bg-primary px-3 py-1.5 text-sm font-medium text-primary-foreground transition-colors hover:bg-primary/90`,children:`Reload now`}),(0,I.jsxs)(`span`,{className:`text-xs text-muted-foreground`,children:[`Current build: `,ui.buildId]})]})]}):null}var pi=(0,N.createContext)(void 0),mi=`selftune-theme`;function hi({children:e,defaultTheme:t=`dark`}){let[n,r]=(0,N.useState)(`dark`);return(0,N.useEffect)(()=>{let e=window.document.documentElement;e.classList.remove(`light`),e.classList.add(`dark`),localStorage.setItem(mi,`dark`)},[]),(0,I.jsx)(pi.Provider,{value:{theme:n,setTheme:e=>{localStorage.setItem(mi,e),r(e)}},children:e})}function gi(){let e=(0,N.useContext)(pi);if(e===void 0)throw Error(`useTheme must be used within a ThemeProvider`);return e}var _i=t(o(),1);function vi(e){if(!e||typeof document>`u`)return;let t=document.head||document.getElementsByTagName(`head`)[0],n=document.createElement(`style`);n.type=`text/css`,t.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.appendChild(document.createTextNode(e))}var yi=e=>{switch(e){case`success`:return Si;case`info`:return wi;case`warning`:return Ci;case`error`:return Ti;default:return null}},bi=Array(12).fill(0),xi=({visible:e,className:t})=>N.createElement(`div`,{className:[`sonner-loading-wrapper`,t].filter(Boolean).join(` `),"data-visible":e},N.createElement(`div`,{className:`sonner-spinner`},bi.map((e,t)=>N.createElement(`div`,{className:`sonner-loading-bar`,key:`spinner-bar-${t}`})))),Si=N.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 20 20`,fill:`currentColor`,height:`20`,width:`20`},N.createElement(`path`,{fillRule:`evenodd`,d:`M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z`,clipRule:`evenodd`})),Ci=N.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`currentColor`,height:`20`,width:`20`},N.createElement(`path`,{fillRule:`evenodd`,d:`M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003zM12 8.25a.75.75 0 01.75.75v3.75a.75.75 0 01-1.5 0V9a.75.75 0 01.75-.75zm0 8.25a.75.75 0 100-1.5.75.75 0 000 1.5z`,clipRule:`evenodd`})),wi=N.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 20 20`,fill:`currentColor`,height:`20`,width:`20`},N.createElement(`path`,{fillRule:`evenodd`,d:`M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z`,clipRule:`evenodd`})),Ti=N.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 20 20`,fill:`currentColor`,height:`20`,width:`20`},N.createElement(`path`,{fillRule:`evenodd`,d:`M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z`,clipRule:`evenodd`})),Ei=N.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:`12`,height:`12`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.5`,strokeLinecap:`round`,strokeLinejoin:`round`},N.createElement(`line`,{x1:`18`,y1:`6`,x2:`6`,y2:`18`}),N.createElement(`line`,{x1:`6`,y1:`6`,x2:`18`,y2:`18`})),Di=()=>{let[e,t]=N.useState(document.hidden);return N.useEffect(()=>{let e=()=>{t(document.hidden)};return document.addEventListener(`visibilitychange`,e),()=>window.removeEventListener(`visibilitychange`,e)},[]),e},Oi=1,ki=new class{constructor(){this.subscribe=e=>(this.subscribers.push(e),()=>{let t=this.subscribers.indexOf(e);this.subscribers.splice(t,1)}),this.publish=e=>{this.subscribers.forEach(t=>t(e))},this.addToast=e=>{this.publish(e),this.toasts=[...this.toasts,e]},this.create=e=>{let{message:t,...n}=e,r=typeof e?.id==`number`||e.id?.length>0?e.id:Oi++,i=this.toasts.find(e=>e.id===r),a=e.dismissible===void 0?!0:e.dismissible;return this.dismissedToasts.has(r)&&this.dismissedToasts.delete(r),i?this.toasts=this.toasts.map(n=>n.id===r?(this.publish({...n,...e,id:r,title:t}),{...n,...e,id:r,dismissible:a,title:t}):n):this.addToast({title:t,...n,dismissible:a,id:r}),r},this.dismiss=e=>(e?(this.dismissedToasts.add(e),requestAnimationFrame(()=>this.subscribers.forEach(t=>t({id:e,dismiss:!0})))):this.toasts.forEach(e=>{this.subscribers.forEach(t=>t({id:e.id,dismiss:!0}))}),e),this.message=(e,t)=>this.create({...t,message:e}),this.error=(e,t)=>this.create({...t,message:e,type:`error`}),this.success=(e,t)=>this.create({...t,type:`success`,message:e}),this.info=(e,t)=>this.create({...t,type:`info`,message:e}),this.warning=(e,t)=>this.create({...t,type:`warning`,message:e}),this.loading=(e,t)=>this.create({...t,type:`loading`,message:e}),this.promise=(e,t)=>{if(!t)return;let n;t.loading!==void 0&&(n=this.create({...t,promise:e,type:`loading`,message:t.loading,description:typeof t.description==`function`?void 0:t.description}));let r=Promise.resolve(e instanceof Function?e():e),i=n!==void 0,a,o=r.then(async e=>{if(a=[`resolve`,e],N.isValidElement(e))i=!1,this.create({id:n,type:`default`,message:e});else if(ji(e)&&!e.ok){i=!1;let r=typeof t.error==`function`?await t.error(`HTTP error! status: ${e.status}`):t.error,a=typeof t.description==`function`?await t.description(`HTTP error! status: ${e.status}`):t.description,o=typeof r==`object`&&!N.isValidElement(r)?r:{message:r};this.create({id:n,type:`error`,description:a,...o})}else if(e instanceof Error){i=!1;let r=typeof t.error==`function`?await t.error(e):t.error,a=typeof t.description==`function`?await t.description(e):t.description,o=typeof r==`object`&&!N.isValidElement(r)?r:{message:r};this.create({id:n,type:`error`,description:a,...o})}else if(t.success!==void 0){i=!1;let r=typeof t.success==`function`?await t.success(e):t.success,a=typeof t.description==`function`?await t.description(e):t.description,o=typeof r==`object`&&!N.isValidElement(r)?r:{message:r};this.create({id:n,type:`success`,description:a,...o})}}).catch(async e=>{if(a=[`reject`,e],t.error!==void 0){i=!1;let r=typeof t.error==`function`?await t.error(e):t.error,a=typeof t.description==`function`?await t.description(e):t.description,o=typeof r==`object`&&!N.isValidElement(r)?r:{message:r};this.create({id:n,type:`error`,description:a,...o})}}).finally(()=>{i&&(this.dismiss(n),n=void 0),t.finally==null||t.finally.call(t)}),s=()=>new Promise((e,t)=>o.then(()=>a[0]===`reject`?t(a[1]):e(a[1])).catch(t));return typeof n!=`string`&&typeof n!=`number`?{unwrap:s}:Object.assign(n,{unwrap:s})},this.custom=(e,t)=>{let n=t?.id||Oi++;return this.create({jsx:e(n),id:n,...t}),n},this.getActiveToasts=()=>this.toasts.filter(e=>!this.dismissedToasts.has(e.id)),this.subscribers=[],this.toasts=[],this.dismissedToasts=new Set}},Ai=(e,t)=>{let n=t?.id||Oi++;return ki.addToast({title:e,...t,id:n}),n},ji=e=>e&&typeof e==`object`&&`ok`in e&&typeof e.ok==`boolean`&&`status`in e&&typeof e.status==`number`,Mi=Object.assign(Ai,{success:ki.success,info:ki.info,warning:ki.warning,error:ki.error,custom:ki.custom,message:ki.message,promise:ki.promise,dismiss:ki.dismiss,loading:ki.loading},{getHistory:()=>ki.toasts,getToasts:()=>ki.getActiveToasts()});vi(`[data-sonner-toaster][dir=ltr],html[dir=ltr]{--toast-icon-margin-start:-3px;--toast-icon-margin-end:4px;--toast-svg-margin-start:-1px;--toast-svg-margin-end:0px;--toast-button-margin-start:auto;--toast-button-margin-end:0;--toast-close-button-start:0;--toast-close-button-end:unset;--toast-close-button-transform:translate(-35%, -35%)}[data-sonner-toaster][dir=rtl],html[dir=rtl]{--toast-icon-margin-start:4px;--toast-icon-margin-end:-3px;--toast-svg-margin-start:0px;--toast-svg-margin-end:-1px;--toast-button-margin-start:0;--toast-button-margin-end:auto;--toast-close-button-start:unset;--toast-close-button-end:0;--toast-close-button-transform:translate(35%, -35%)}[data-sonner-toaster]{position:fixed;width:var(--width);font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--gray1:hsl(0, 0%, 99%);--gray2:hsl(0, 0%, 97.3%);--gray3:hsl(0, 0%, 95.1%);--gray4:hsl(0, 0%, 93%);--gray5:hsl(0, 0%, 90.9%);--gray6:hsl(0, 0%, 88.7%);--gray7:hsl(0, 0%, 85.8%);--gray8:hsl(0, 0%, 78%);--gray9:hsl(0, 0%, 56.1%);--gray10:hsl(0, 0%, 52.3%);--gray11:hsl(0, 0%, 43.5%);--gray12:hsl(0, 0%, 9%);--border-radius:8px;box-sizing:border-box;padding:0;margin:0;list-style:none;outline:0;z-index:999999999;transition:transform .4s ease}@media (hover:none) and (pointer:coarse){[data-sonner-toaster][data-lifted=true]{transform:none}}[data-sonner-toaster][data-x-position=right]{right:var(--offset-right)}[data-sonner-toaster][data-x-position=left]{left:var(--offset-left)}[data-sonner-toaster][data-x-position=center]{left:50%;transform:translateX(-50%)}[data-sonner-toaster][data-y-position=top]{top:var(--offset-top)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--offset-bottom)}[data-sonner-toast]{--y:translateY(100%);--lift-amount:calc(var(--lift) * var(--gap));z-index:var(--z-index);position:absolute;opacity:0;transform:var(--y);touch-action:none;transition:transform .4s,opacity .4s,height .4s,box-shadow .2s;box-sizing:border-box;outline:0;overflow-wrap:anywhere}[data-sonner-toast][data-styled=true]{padding:16px;background:var(--normal-bg);border:1px solid var(--normal-border);color:var(--normal-text);border-radius:var(--border-radius);box-shadow:0 4px 12px rgba(0,0,0,.1);width:var(--width);font-size:13px;display:flex;align-items:center;gap:6px}[data-sonner-toast]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-y-position=top]{top:0;--y:translateY(-100%);--lift:1;--lift-amount:calc(1 * var(--gap))}[data-sonner-toast][data-y-position=bottom]{bottom:0;--y:translateY(100%);--lift:-1;--lift-amount:calc(var(--lift) * var(--gap))}[data-sonner-toast][data-styled=true] [data-description]{font-weight:400;line-height:1.4;color:#3f3f3f}[data-rich-colors=true][data-sonner-toast][data-styled=true] [data-description]{color:inherit}[data-sonner-toaster][data-sonner-theme=dark] [data-description]{color:#e8e8e8}[data-sonner-toast][data-styled=true] [data-title]{font-weight:500;line-height:1.5;color:inherit}[data-sonner-toast][data-styled=true] [data-icon]{display:flex;height:16px;width:16px;position:relative;justify-content:flex-start;align-items:center;flex-shrink:0;margin-left:var(--toast-icon-margin-start);margin-right:var(--toast-icon-margin-end)}[data-sonner-toast][data-promise=true] [data-icon]>svg{opacity:0;transform:scale(.8);transform-origin:center;animation:sonner-fade-in .3s ease forwards}[data-sonner-toast][data-styled=true] [data-icon]>*{flex-shrink:0}[data-sonner-toast][data-styled=true] [data-icon] svg{margin-left:var(--toast-svg-margin-start);margin-right:var(--toast-svg-margin-end)}[data-sonner-toast][data-styled=true] [data-content]{display:flex;flex-direction:column;gap:2px}[data-sonner-toast][data-styled=true] [data-button]{border-radius:4px;padding-left:8px;padding-right:8px;height:24px;font-size:12px;color:var(--normal-bg);background:var(--normal-text);margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end);border:none;font-weight:500;cursor:pointer;outline:0;display:flex;align-items:center;flex-shrink:0;transition:opacity .4s,box-shadow .2s}[data-sonner-toast][data-styled=true] [data-button]:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.4)}[data-sonner-toast][data-styled=true] [data-button]:first-of-type{margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end)}[data-sonner-toast][data-styled=true] [data-cancel]{color:var(--normal-text);background:rgba(0,0,0,.08)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-styled=true] [data-cancel]{background:rgba(255,255,255,.3)}[data-sonner-toast][data-styled=true] [data-close-button]{position:absolute;left:var(--toast-close-button-start);right:var(--toast-close-button-end);top:0;height:20px;width:20px;display:flex;justify-content:center;align-items:center;padding:0;color:var(--gray12);background:var(--normal-bg);border:1px solid var(--gray4);transform:var(--toast-close-button-transform);border-radius:50%;cursor:pointer;z-index:1;transition:opacity .1s,background .2s,border-color .2s}[data-sonner-toast][data-styled=true] [data-close-button]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-styled=true] [data-disabled=true]{cursor:not-allowed}[data-sonner-toast][data-styled=true]:hover [data-close-button]:hover{background:var(--gray2);border-color:var(--gray5)}[data-sonner-toast][data-swiping=true]::before{content:'';position:absolute;left:-100%;right:-100%;height:100%;z-index:-1}[data-sonner-toast][data-y-position=top][data-swiping=true]::before{bottom:50%;transform:scaleY(3) translateY(50%)}[data-sonner-toast][data-y-position=bottom][data-swiping=true]::before{top:50%;transform:scaleY(3) translateY(-50%)}[data-sonner-toast][data-swiping=false][data-removed=true]::before{content:'';position:absolute;inset:0;transform:scaleY(2)}[data-sonner-toast][data-expanded=true]::after{content:'';position:absolute;left:0;height:calc(var(--gap) + 1px);bottom:100%;width:100%}[data-sonner-toast][data-mounted=true]{--y:translateY(0);opacity:1}[data-sonner-toast][data-expanded=false][data-front=false]{--scale:var(--toasts-before) * 0.05 + 1;--y:translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));height:var(--front-toast-height)}[data-sonner-toast]>*{transition:opacity .4s}[data-sonner-toast][data-x-position=right]{right:0}[data-sonner-toast][data-x-position=left]{left:0}[data-sonner-toast][data-expanded=false][data-front=false][data-styled=true]>*{opacity:0}[data-sonner-toast][data-visible=false]{opacity:0;pointer-events:none}[data-sonner-toast][data-mounted=true][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset)));height:var(--initial-height)}[data-sonner-toast][data-removed=true][data-front=true][data-swipe-out=false]{--y:translateY(calc(var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=false]{--y:translateY(40%);opacity:0;transition:transform .5s,opacity .2s}[data-sonner-toast][data-removed=true][data-front=false]::before{height:calc(var(--initial-height) + 20%)}[data-sonner-toast][data-swiping=true]{transform:var(--y) translateY(var(--swipe-amount-y,0)) translateX(var(--swipe-amount-x,0));transition:none}[data-sonner-toast][data-swiped=true]{user-select:none}[data-sonner-toast][data-swipe-out=true][data-y-position=bottom],[data-sonner-toast][data-swipe-out=true][data-y-position=top]{animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=left]{animation-name:swipe-out-left}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=right]{animation-name:swipe-out-right}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=up]{animation-name:swipe-out-up}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=down]{animation-name:swipe-out-down}@keyframes swipe-out-left{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) - 100%));opacity:0}}@keyframes swipe-out-right{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) + 100%));opacity:0}}@keyframes swipe-out-up{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) - 100%));opacity:0}}@keyframes swipe-out-down{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) + 100%));opacity:0}}@media (max-width:600px){[data-sonner-toaster]{position:fixed;right:var(--mobile-offset-right);left:var(--mobile-offset-left);width:100%}[data-sonner-toaster][dir=rtl]{left:calc(var(--mobile-offset-left) * -1)}[data-sonner-toaster] [data-sonner-toast]{left:0;right:0;width:calc(100% - var(--mobile-offset-left) * 2)}[data-sonner-toaster][data-x-position=left]{left:var(--mobile-offset-left)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--mobile-offset-bottom)}[data-sonner-toaster][data-y-position=top]{top:var(--mobile-offset-top)}[data-sonner-toaster][data-x-position=center]{left:var(--mobile-offset-left);right:var(--mobile-offset-right);transform:none}}[data-sonner-toaster][data-sonner-theme=light]{--normal-bg:#fff;--normal-border:var(--gray4);--normal-text:var(--gray12);--success-bg:hsl(143, 85%, 96%);--success-border:hsl(145, 92%, 87%);--success-text:hsl(140, 100%, 27%);--info-bg:hsl(208, 100%, 97%);--info-border:hsl(221, 91%, 93%);--info-text:hsl(210, 92%, 45%);--warning-bg:hsl(49, 100%, 97%);--warning-border:hsl(49, 91%, 84%);--warning-text:hsl(31, 92%, 45%);--error-bg:hsl(359, 100%, 97%);--error-border:hsl(359, 100%, 94%);--error-text:hsl(360, 100%, 45%)}[data-sonner-toaster][data-sonner-theme=light] [data-sonner-toast][data-invert=true]{--normal-bg:#000;--normal-border:hsl(0, 0%, 20%);--normal-text:var(--gray1)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-invert=true]{--normal-bg:#fff;--normal-border:var(--gray3);--normal-text:var(--gray12)}[data-sonner-toaster][data-sonner-theme=dark]{--normal-bg:#000;--normal-bg-hover:hsl(0, 0%, 12%);--normal-border:hsl(0, 0%, 20%);--normal-border-hover:hsl(0, 0%, 25%);--normal-text:var(--gray1);--success-bg:hsl(150, 100%, 6%);--success-border:hsl(147, 100%, 12%);--success-text:hsl(150, 86%, 65%);--info-bg:hsl(215, 100%, 6%);--info-border:hsl(223, 43%, 17%);--info-text:hsl(216, 87%, 65%);--warning-bg:hsl(64, 100%, 6%);--warning-border:hsl(60, 100%, 9%);--warning-text:hsl(46, 87%, 65%);--error-bg:hsl(358, 76%, 10%);--error-border:hsl(357, 89%, 16%);--error-text:hsl(358, 100%, 81%)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]{background:var(--normal-bg);border-color:var(--normal-border);color:var(--normal-text)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]:hover{background:var(--normal-bg-hover);border-color:var(--normal-border-hover)}[data-rich-colors=true][data-sonner-toast][data-type=success]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=info]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=error]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}[data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}.sonner-loading-wrapper{--size:16px;height:var(--size);width:var(--size);position:absolute;inset:0;z-index:10}.sonner-loading-wrapper[data-visible=false]{transform-origin:center;animation:sonner-fade-out .2s ease forwards}.sonner-spinner{position:relative;top:50%;left:50%;height:var(--size);width:var(--size)}.sonner-loading-bar{animation:sonner-spin 1.2s linear infinite;background:var(--gray11);border-radius:6px;height:8%;left:-10%;position:absolute;top:-3.9%;width:24%}.sonner-loading-bar:first-child{animation-delay:-1.2s;transform:rotate(.0001deg) translate(146%)}.sonner-loading-bar:nth-child(2){animation-delay:-1.1s;transform:rotate(30deg) translate(146%)}.sonner-loading-bar:nth-child(3){animation-delay:-1s;transform:rotate(60deg) translate(146%)}.sonner-loading-bar:nth-child(4){animation-delay:-.9s;transform:rotate(90deg) translate(146%)}.sonner-loading-bar:nth-child(5){animation-delay:-.8s;transform:rotate(120deg) translate(146%)}.sonner-loading-bar:nth-child(6){animation-delay:-.7s;transform:rotate(150deg) translate(146%)}.sonner-loading-bar:nth-child(7){animation-delay:-.6s;transform:rotate(180deg) translate(146%)}.sonner-loading-bar:nth-child(8){animation-delay:-.5s;transform:rotate(210deg) translate(146%)}.sonner-loading-bar:nth-child(9){animation-delay:-.4s;transform:rotate(240deg) translate(146%)}.sonner-loading-bar:nth-child(10){animation-delay:-.3s;transform:rotate(270deg) translate(146%)}.sonner-loading-bar:nth-child(11){animation-delay:-.2s;transform:rotate(300deg) translate(146%)}.sonner-loading-bar:nth-child(12){animation-delay:-.1s;transform:rotate(330deg) translate(146%)}@keyframes sonner-fade-in{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes sonner-fade-out{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.8)}}@keyframes sonner-spin{0%{opacity:1}100%{opacity:.15}}@media (prefers-reduced-motion){.sonner-loading-bar,[data-sonner-toast],[data-sonner-toast]>*{transition:none!important;animation:none!important}}.sonner-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform-origin:center;transition:opacity .2s,transform .2s}.sonner-loader[data-visible=false]{opacity:0;transform:scale(.8) translate(-50%,-50%)}`);function Ni(e){return e.label!==void 0}var Pi=3,Fi=`24px`,Ii=`16px`,Li=4e3,Ri=356,zi=14,Bi=45,Vi=200;function Hi(...e){return e.filter(Boolean).join(` `)}function Ui(e){let[t,n]=e.split(`-`),r=[];return t&&r.push(t),n&&r.push(n),r}var Wi=e=>{let{invert:t,toast:n,unstyled:r,interacting:i,setHeights:a,visibleToasts:o,heights:s,index:c,toasts:l,expanded:u,removeToast:d,defaultRichColors:f,closeButton:p,style:m,cancelButtonStyle:h,actionButtonStyle:g,className:_=``,descriptionClassName:v=``,duration:y,position:b,gap:x,expandByDefault:S,classNames:C,icons:w,closeButtonAriaLabel:T=`Close toast`}=e,[E,D]=N.useState(null),[O,ee]=N.useState(null),[k,te]=N.useState(!1),[A,j]=N.useState(!1),[ne,re]=N.useState(!1),[M,ie]=N.useState(!1),[ae,oe]=N.useState(!1),[se,ce]=N.useState(0),[le,ue]=N.useState(0),de=N.useRef(n.duration||y||Li),fe=N.useRef(null),pe=N.useRef(null),me=c===0,he=c+1<=o,ge=n.type,_e=n.dismissible!==!1,ve=n.className||``,ye=n.descriptionClassName||``,be=N.useMemo(()=>s.findIndex(e=>e.toastId===n.id)||0,[s,n.id]),xe=N.useMemo(()=>n.closeButton??p,[n.closeButton,p]),Se=N.useMemo(()=>n.duration||y||Li,[n.duration,y]),Ce=N.useRef(0),we=N.useRef(0),Te=N.useRef(0),Ee=N.useRef(null),[De,Oe]=b.split(`-`),ke=N.useMemo(()=>s.reduce((e,t,n)=>n>=be?e:e+t.height,0),[s,be]),Ae=Di(),je=n.invert||t,Me=ge===`loading`;we.current=N.useMemo(()=>be*x+ke,[be,ke]),N.useEffect(()=>{de.current=Se},[Se]),N.useEffect(()=>{te(!0)},[]),N.useEffect(()=>{let e=pe.current;if(e){let t=e.getBoundingClientRect().height;return ue(t),a(e=>[{toastId:n.id,height:t,position:n.position},...e]),()=>a(e=>e.filter(e=>e.toastId!==n.id))}},[a,n.id]),N.useLayoutEffect(()=>{if(!k)return;let e=pe.current,t=e.style.height;e.style.height=`auto`;let r=e.getBoundingClientRect().height;e.style.height=t,ue(r),a(e=>e.find(e=>e.toastId===n.id)?e.map(e=>e.toastId===n.id?{...e,height:r}:e):[{toastId:n.id,height:r,position:n.position},...e])},[k,n.title,n.description,a,n.id,n.jsx,n.action,n.cancel]);let Ne=N.useCallback(()=>{j(!0),ce(we.current),a(e=>e.filter(e=>e.toastId!==n.id)),setTimeout(()=>{d(n)},Vi)},[n,d,a,we]);N.useEffect(()=>{if(n.promise&&ge===`loading`||n.duration===1/0||n.type===`loading`)return;let e;return u||i||Ae?(()=>{if(Te.current<Ce.current){let e=new Date().getTime()-Ce.current;de.current-=e}Te.current=new Date().getTime()})():de.current!==1/0&&(Ce.current=new Date().getTime(),e=setTimeout(()=>{n.onAutoClose==null||n.onAutoClose.call(n,n),Ne()},de.current)),()=>clearTimeout(e)},[u,i,n,ge,Ae,Ne]),N.useEffect(()=>{n.delete&&(Ne(),n.onDismiss==null||n.onDismiss.call(n,n))},[Ne,n.delete]);function Pe(){return w?.loading?N.createElement(`div`,{className:Hi(C?.loader,n?.classNames?.loader,`sonner-loader`),"data-visible":ge===`loading`},w.loading):N.createElement(xi,{className:Hi(C?.loader,n?.classNames?.loader),visible:ge===`loading`})}let Fe=n.icon||w?.[ge]||yi(ge);return N.createElement(`li`,{tabIndex:0,ref:pe,className:Hi(_,ve,C?.toast,n?.classNames?.toast,C?.default,C?.[ge],n?.classNames?.[ge]),"data-sonner-toast":``,"data-rich-colors":n.richColors??f,"data-styled":!(n.jsx||n.unstyled||r),"data-mounted":k,"data-promise":!!n.promise,"data-swiped":ae,"data-removed":A,"data-visible":he,"data-y-position":De,"data-x-position":Oe,"data-index":c,"data-front":me,"data-swiping":ne,"data-dismissible":_e,"data-type":ge,"data-invert":je,"data-swipe-out":M,"data-swipe-direction":O,"data-expanded":!!(u||S&&k),"data-testid":n.testId,style:{"--index":c,"--toasts-before":c,"--z-index":l.length-c,"--offset":`${A?se:we.current}px`,"--initial-height":S?`auto`:`${le}px`,...m,...n.style},onDragEnd:()=>{re(!1),D(null),Ee.current=null},onPointerDown:e=>{e.button!==2&&(Me||!_e||(fe.current=new Date,ce(we.current),e.target.setPointerCapture(e.pointerId),e.target.tagName!==`BUTTON`&&(re(!0),Ee.current={x:e.clientX,y:e.clientY})))},onPointerUp:()=>{if(M||!_e)return;Ee.current=null;let e=Number(pe.current?.style.getPropertyValue(`--swipe-amount-x`).replace(`px`,``)||0),t=Number(pe.current?.style.getPropertyValue(`--swipe-amount-y`).replace(`px`,``)||0),r=new Date().getTime()-fe.current?.getTime(),i=E===`x`?e:t,a=Math.abs(i)/r;if(Math.abs(i)>=Bi||a>.11){ce(we.current),n.onDismiss==null||n.onDismiss.call(n,n),ee(E===`x`?e>0?`right`:`left`:t>0?`down`:`up`),Ne(),ie(!0);return}else{var o,s;(o=pe.current)==null||o.style.setProperty(`--swipe-amount-x`,`0px`),(s=pe.current)==null||s.style.setProperty(`--swipe-amount-y`,`0px`)}oe(!1),re(!1),D(null)},onPointerMove:t=>{var n,r;if(!Ee.current||!_e||window.getSelection()?.toString().length>0)return;let i=t.clientY-Ee.current.y,a=t.clientX-Ee.current.x,o=e.swipeDirections??Ui(b);!E&&(Math.abs(a)>1||Math.abs(i)>1)&&D(Math.abs(a)>Math.abs(i)?`x`:`y`);let s={x:0,y:0},c=e=>1/(1.5+Math.abs(e)/20);if(E===`y`){if(o.includes(`top`)||o.includes(`bottom`))if(o.includes(`top`)&&i<0||o.includes(`bottom`)&&i>0)s.y=i;else{let e=i*c(i);s.y=Math.abs(e)<Math.abs(i)?e:i}}else if(E===`x`&&(o.includes(`left`)||o.includes(`right`)))if(o.includes(`left`)&&a<0||o.includes(`right`)&&a>0)s.x=a;else{let e=a*c(a);s.x=Math.abs(e)<Math.abs(a)?e:a}(Math.abs(s.x)>0||Math.abs(s.y)>0)&&oe(!0),(n=pe.current)==null||n.style.setProperty(`--swipe-amount-x`,`${s.x}px`),(r=pe.current)==null||r.style.setProperty(`--swipe-amount-y`,`${s.y}px`)}},xe&&!n.jsx&&ge!==`loading`?N.createElement(`button`,{"aria-label":T,"data-disabled":Me,"data-close-button":!0,onClick:Me||!_e?()=>{}:()=>{Ne(),n.onDismiss==null||n.onDismiss.call(n,n)},className:Hi(C?.closeButton,n?.classNames?.closeButton)},w?.close??Ei):null,(ge||n.icon||n.promise)&&n.icon!==null&&(w?.[ge]!==null||n.icon)?N.createElement(`div`,{"data-icon":``,className:Hi(C?.icon,n?.classNames?.icon)},n.promise||n.type===`loading`&&!n.icon?n.icon||Pe():null,n.type===`loading`?null:Fe):null,N.createElement(`div`,{"data-content":``,className:Hi(C?.content,n?.classNames?.content)},N.createElement(`div`,{"data-title":``,className:Hi(C?.title,n?.classNames?.title)},n.jsx?n.jsx:typeof n.title==`function`?n.title():n.title),n.description?N.createElement(`div`,{"data-description":``,className:Hi(v,ye,C?.description,n?.classNames?.description)},typeof n.description==`function`?n.description():n.description):null),N.isValidElement(n.cancel)?n.cancel:n.cancel&&Ni(n.cancel)?N.createElement(`button`,{"data-button":!0,"data-cancel":!0,style:n.cancelButtonStyle||h,onClick:e=>{Ni(n.cancel)&&_e&&(n.cancel.onClick==null||n.cancel.onClick.call(n.cancel,e),Ne())},className:Hi(C?.cancelButton,n?.classNames?.cancelButton)},n.cancel.label):null,N.isValidElement(n.action)?n.action:n.action&&Ni(n.action)?N.createElement(`button`,{"data-button":!0,"data-action":!0,style:n.actionButtonStyle||g,onClick:e=>{Ni(n.action)&&(n.action.onClick==null||n.action.onClick.call(n.action,e),!e.defaultPrevented&&Ne())},className:Hi(C?.actionButton,n?.classNames?.actionButton)},n.action.label):null)};function Gi(){if(typeof window>`u`||typeof document>`u`)return`ltr`;let e=document.documentElement.getAttribute(`dir`);return e===`auto`||!e?window.getComputedStyle(document.documentElement).direction:e}function Ki(e,t){let n={};return[e,t].forEach((e,t)=>{let r=t===1,i=r?`--mobile-offset`:`--offset`,a=r?Ii:Fi;function o(e){[`top`,`right`,`bottom`,`left`].forEach(t=>{n[`${i}-${t}`]=typeof e==`number`?`${e}px`:e})}typeof e==`number`||typeof e==`string`?o(e):typeof e==`object`?[`top`,`right`,`bottom`,`left`].forEach(t=>{e[t]===void 0?n[`${i}-${t}`]=a:n[`${i}-${t}`]=typeof e[t]==`number`?`${e[t]}px`:e[t]}):o(a)}),n}var qi=N.forwardRef(function(e,t){let{id:n,invert:r,position:i=`bottom-right`,hotkey:a=[`altKey`,`KeyT`],expand:o,closeButton:s,className:c,offset:l,mobileOffset:u,theme:d=`light`,richColors:f,duration:p,style:m,visibleToasts:h=Pi,toastOptions:g,dir:_=Gi(),gap:v=zi,icons:y,containerAriaLabel:b=`Notifications`}=e,[x,S]=N.useState([]),C=N.useMemo(()=>n?x.filter(e=>e.toasterId===n):x.filter(e=>!e.toasterId),[x,n]),w=N.useMemo(()=>Array.from(new Set([i].concat(C.filter(e=>e.position).map(e=>e.position)))),[C,i]),[T,E]=N.useState([]),[D,O]=N.useState(!1),[ee,k]=N.useState(!1),[te,A]=N.useState(d===`system`?typeof window<`u`&&window.matchMedia&&window.matchMedia(`(prefers-color-scheme: dark)`).matches?`dark`:`light`:d),j=N.useRef(null),ne=a.join(`+`).replace(/Key/g,``).replace(/Digit/g,``),re=N.useRef(null),M=N.useRef(!1),ie=N.useCallback(e=>{S(t=>(t.find(t=>t.id===e.id)?.delete||ki.dismiss(e.id),t.filter(({id:t})=>t!==e.id)))},[]);return N.useEffect(()=>ki.subscribe(e=>{if(e.dismiss){requestAnimationFrame(()=>{S(t=>t.map(t=>t.id===e.id?{...t,delete:!0}:t))});return}setTimeout(()=>{_i.flushSync(()=>{S(t=>{let n=t.findIndex(t=>t.id===e.id);return n===-1?[e,...t]:[...t.slice(0,n),{...t[n],...e},...t.slice(n+1)]})})})}),[x]),N.useEffect(()=>{if(d!==`system`){A(d);return}if(d===`system`&&(window.matchMedia&&window.matchMedia(`(prefers-color-scheme: dark)`).matches?A(`dark`):A(`light`)),typeof window>`u`)return;let e=window.matchMedia(`(prefers-color-scheme: dark)`);try{e.addEventListener(`change`,({matches:e})=>{A(e?`dark`:`light`)})}catch{e.addListener(({matches:e})=>{try{A(e?`dark`:`light`)}catch(e){console.error(e)}})}},[d]),N.useEffect(()=>{x.length<=1&&O(!1)},[x]),N.useEffect(()=>{let e=e=>{if(a.every(t=>e[t]||e.code===t)){var t;O(!0),(t=j.current)==null||t.focus()}e.code===`Escape`&&(document.activeElement===j.current||j.current?.contains(document.activeElement))&&O(!1)};return document.addEventListener(`keydown`,e),()=>document.removeEventListener(`keydown`,e)},[a]),N.useEffect(()=>{if(j.current)return()=>{re.current&&(re.current.focus({preventScroll:!0}),re.current=null,M.current=!1)}},[j.current]),N.createElement(`section`,{ref:t,"aria-label":`${b} ${ne}`,tabIndex:-1,"aria-live":`polite`,"aria-relevant":`additions text`,"aria-atomic":`false`,suppressHydrationWarning:!0},w.map((t,n)=>{let[i,a]=t.split(`-`);return C.length?N.createElement(`ol`,{key:t,dir:_===`auto`?Gi():_,tabIndex:-1,ref:j,className:c,"data-sonner-toaster":!0,"data-sonner-theme":te,"data-y-position":i,"data-x-position":a,style:{"--front-toast-height":`${T[0]?.height||0}px`,"--width":`${Ri}px`,"--gap":`${v}px`,...m,...Ki(l,u)},onBlur:e=>{M.current&&!e.currentTarget.contains(e.relatedTarget)&&(M.current=!1,re.current&&=(re.current.focus({preventScroll:!0}),null))},onFocus:e=>{e.target instanceof HTMLElement&&e.target.dataset.dismissible===`false`||M.current||(M.current=!0,re.current=e.relatedTarget)},onMouseEnter:()=>O(!0),onMouseMove:()=>O(!0),onMouseLeave:()=>{ee||O(!1)},onDragEnd:()=>O(!1),onPointerDown:e=>{e.target instanceof HTMLElement&&e.target.dataset.dismissible===`false`||k(!0)},onPointerUp:()=>k(!1)},C.filter(e=>!e.position&&n===0||e.position===t).map((n,i)=>N.createElement(Wi,{key:n.id,icons:y,index:i,toast:n,defaultRichColors:f,duration:g?.duration??p,className:g?.className,descriptionClassName:g?.descriptionClassName,invert:r,visibleToasts:h,closeButton:g?.closeButton??s,interacting:ee,position:t,style:g?.style,unstyled:g?.unstyled,classNames:g?.classNames,cancelButtonStyle:g?.cancelButtonStyle,actionButtonStyle:g?.actionButtonStyle,closeButtonAriaLabel:g?.closeButtonAriaLabel,removeToast:ie,toasts:C.filter(e=>e.position==n.position),heights:T.filter(e=>e.position==n.position),setHeights:E,expandByDefault:o,gap:v,expanded:D,swipeDirections:e.swipeDirections}))):null}))}),Ji=({...e})=>{let{theme:t=`system`}=gi();return(0,I.jsx)(qi,{theme:t,className:`toaster group`,icons:{success:(0,I.jsx)(O,{className:`size-4`}),info:(0,I.jsx)(M,{className:`size-4`}),warning:(0,I.jsx)(at,{className:`size-4`}),error:(0,I.jsx)(_,{className:`size-4`}),loading:(0,I.jsx)(Re,{className:`size-4 animate-spin`})},style:{"--normal-bg":`var(--popover)`,"--normal-text":`var(--popover-foreground)`,"--normal-border":`var(--border)`,"--border-radius":`var(--radius)`},toastOptions:{classNames:{toast:`cn-toast`}},...e})},Yi=``;async function Xi(){let e=await fetch(`${Yi}/api/v2/overview`);if(!e.ok)throw Error(`API error: ${e.status} ${e.statusText}`);return e.json()}async function Zi(e){let t=await fetch(`${Yi}/api/v2/skills/${encodeURIComponent(e)}`);if(!t.ok)throw t.status===404?new na(e):Error(`API error: ${t.status} ${t.statusText}`);return t.json()}async function Qi(e=20){let t=await fetch(`${Yi}/api/v2/orchestrate-runs?limit=${e}`);if(!t.ok)throw Error(`API error: ${t.status} ${t.statusText}`);return t.json()}async function $i(){let e=await fetch(`${Yi}/api/v2/analytics`);if(!e.ok)throw Error(`API error: ${e.status} ${e.statusText}`);return e.json()}async function ea(){let e=await fetch(`${Yi}/api/v2/doctor`);if(!e.ok)throw Error(`API error: ${e.status} ${e.statusText}`);return e.json()}async function ta(e,t){let n=await fetch(`${Yi}/api/actions/${e}`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify(t)}),r=await n.json();if(!n.ok)throw Error(r.error||`API error: ${n.status} ${n.statusText}`);return r}var na=class extends Error{constructor(e){super(`Skill "${e}" not found`),this.name=`NotFoundError`}},ra=6e4;function ia(){return Cr({queryKey:[`overview`],queryFn:Xi,staleTime:5e3,refetchInterval:ra})}function aa(){let e=cr();(0,N.useEffect)(()=>{let t=Date.now(),n=new EventSource(`/api/v2/events`);return n.addEventListener(`update`,()=>{e.invalidateQueries()}),n.addEventListener(`action`,n=>{let r=JSON.parse(n.data),i=Jr(r),a=r.ts<t;if(!i||a){r.stage===`finished`&&e.invalidateQueries();return}let o=ei(r.action),s=r.skill_name??`Dashboard action`,c=()=>{ni(r)};if(r.stage===`started`){Mi.loading(o,{id:r.event_id,description:s,action:{label:`Live run`,onClick:c}});return}r.stage===`finished`&&(r.success?Mi.success(o,{id:r.event_id,description:s,action:{label:`Live run`,onClick:c}}):Mi.error(o,{id:r.event_id,description:r.error??s,action:{label:`Live run`,onClick:c}}),e.invalidateQueries())}),n.addEventListener(`error`,()=>{}),()=>{n.close()}},[e])}function oa(e){let t=e.split(`-`),n=t[1],r=t[2];return!n||!r?e:`${Number(n)}/${Number(r)}`}function sa({data:e,mode:t}){let n=e.map(e=>t===`pass_rate`?e.pass_rate*100:e.total_checks),r=Math.max(...n,t===`pass_rate`?100:1),i=n.map((e,t)=>({x:48+t/Math.max(1,n.length-1)*624,y:232-(e-0)/Math.max(1,r-0)*200})),a=i.map((e,t)=>`${t===0?`M`:`L`}${e.x},${e.y}`).join(` `),o=`${a} L${i[i.length-1]?.x??48},232 L48,232 Z`,s=t===`pass_rate`?[0,25,50,75,100]:Array.from({length:5},(e,t)=>Math.round(r/4*t)),c=[],l=Math.max(1,Math.floor(e.length/6));for(let t=0;t<e.length;t+=l){let n=e[t],r=i[t];n&&r&&c.push({label:oa(n.date),x:r.x})}return e.length===0?(0,I.jsx)(`div`,{className:`flex items-center justify-center h-[260px] text-muted-foreground text-sm`,children:`No trend data available yet`}):(0,I.jsxs)(`svg`,{viewBox:`0 0 720 260`,className:`w-full h-auto`,preserveAspectRatio:`xMidYMid meet`,children:[(0,I.jsx)(`defs`,{children:(0,I.jsxs)(`linearGradient`,{id:`analytics-chart-fill`,x1:`0`,y1:`0`,x2:`0`,y2:`1`,children:[(0,I.jsx)(`stop`,{offset:`0%`,stopColor:`var(--primary)`,stopOpacity:`0.3`}),(0,I.jsx)(`stop`,{offset:`100%`,stopColor:`var(--primary)`,stopOpacity:`0.02`})]})}),s.map(e=>{let n=232-(e-0)/Math.max(1,r-0)*200;return(0,I.jsxs)(`g`,{children:[(0,I.jsx)(`line`,{x1:48,y1:n,x2:672,y2:n,stroke:`var(--border)`,strokeWidth:`0.5`,strokeDasharray:`4 4`}),(0,I.jsx)(`text`,{x:40,y:n+3,textAnchor:`end`,fill:`var(--muted-foreground)`,fontSize:`9`,fontFamily:`var(--font-headline)`,children:t===`pass_rate`?`${e}%`:e})]},e)}),c.map(e=>(0,I.jsx)(`text`,{x:e.x,y:256,textAnchor:`middle`,fill:`var(--muted-foreground)`,fontSize:`9`,fontFamily:`var(--font-headline)`,children:e.label},e.label)),i.length>1&&(0,I.jsx)(`path`,{d:o,fill:`url(#analytics-chart-fill)`}),i.length>1&&(0,I.jsx)(`path`,{d:a,fill:`none`,stroke:`var(--primary)`,strokeWidth:`2`,strokeLinecap:`round`,strokeLinejoin:`round`,style:{filter:`drop-shadow(0 0 4px rgba(79,242,255,0.5))`}}),i.map((e,t)=>(0,I.jsx)(`circle`,{cx:e.x,cy:e.y,r:`3`,fill:`var(--primary)`,stroke:`var(--muted)`,strokeWidth:`1.5`},t))]})}function ca({skills:e}){return e.length===0?(0,I.jsx)(`div`,{className:`flex-1 flex items-center justify-center`,children:(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No skills graded yet`})}):(0,I.jsx)(`div`,{className:`flex-1 flex flex-col gap-4`,children:e.map(e=>(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`flex items-center justify-between mb-1.5`,children:[(0,I.jsx)(`span`,{className:`font-headline text-[11px] uppercase tracking-wider text-foreground truncate max-w-[65%]`,children:e.skill_name}),(0,I.jsxs)(`span`,{className:`font-headline text-xs font-semibold text-primary`,children:[Math.round(e.pass_rate*100),`%`]})]}),(0,I.jsx)(`div`,{className:`h-[1.5px] rounded-full bg-border/30 overflow-hidden`,children:(0,I.jsx)(`div`,{className:`h-full rounded-full bg-primary transition-all duration-500`,style:{width:`${Math.round(e.pass_rate*100)}%`,boxShadow:`0 0 6px rgba(79,242,255,0.4)`}})}),(0,I.jsxs)(`p`,{className:`text-[10px] text-muted-foreground mt-1`,children:[e.total_checks,` checks · `,e.triggered_count,` triggered`]})]},e.skill_name))})}function la({data:e}){let t=e.slice(-84),n=Math.max(...t.map(e=>e.checks),1);return t.length===0?(0,I.jsx)(`div`,{className:`flex items-center justify-center h-32 text-muted-foreground text-sm`,children:`No grading activity recorded yet`}):(0,I.jsxs)(`div`,{className:`flex flex-col h-full`,children:[(0,I.jsx)(`div`,{className:`flex flex-wrap gap-1.5 flex-1 content-start`,children:t.map(e=>{let t=e.checks/n;return(0,I.jsx)(`div`,{className:`size-5 rounded-sm transition-colors`,style:{backgroundColor:`color-mix(in srgb, var(--primary) ${Math.round(Math.max(.08,t)*100)}%, transparent)`},title:`${e.date}: ${e.checks} checks`},e.date)})}),(0,I.jsxs)(`div`,{className:`flex items-center justify-end gap-2 mt-auto pt-3`,children:[(0,I.jsx)(`span`,{className:`text-[10px] font-headline uppercase tracking-widest text-muted-foreground`,children:`Quiet`}),[8,25,50,75,100].map(e=>(0,I.jsx)(`div`,{className:`size-3 rounded-sm`,style:{backgroundColor:`color-mix(in srgb, var(--primary) ${e}%, transparent)`}},e)),(0,I.jsx)(`span`,{className:`text-[10px] font-headline uppercase tracking-widest text-muted-foreground`,children:`Active`})]})]})}function ua({impacts:e}){return e.length===0?(0,I.jsx)(`div`,{className:`flex items-center justify-center h-32`,children:(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No evolution deployments yet`})}):(0,I.jsx)(`div`,{className:`flex flex-col gap-3 max-h-[260px] overflow-y-auto`,children:e.map(e=>{let t=(e.pass_rate_after-e.pass_rate_before)*100,n=t>0;return(0,I.jsxs)(`div`,{className:`flex items-center justify-between bg-muted/50 rounded-lg px-4 py-3`,children:[(0,I.jsxs)(`div`,{className:`min-w-0`,children:[(0,I.jsx)(`p`,{className:`font-headline text-[11px] uppercase tracking-wider text-foreground truncate`,children:e.skill_name}),(0,I.jsxs)(`p`,{className:`text-[10px] text-muted-foreground mt-0.5`,children:[Math.round(e.pass_rate_before*100),`% →`,` `,Math.round(e.pass_rate_after*100),`%`]})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-1.5 shrink-0`,children:[(0,I.jsxs)(`svg`,{className:`size-3.5 ${n?`text-primary`:`text-destructive rotate-90`}`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:`2`,strokeLinecap:`round`,strokeLinejoin:`round`,children:[(0,I.jsx)(`line`,{x1:`7`,y1:`17`,x2:`17`,y2:`7`}),(0,I.jsx)(`polyline`,{points:`7 7 17 7 17 17`})]}),(0,I.jsxs)(`span`,{className:`font-headline text-sm font-semibold ${n?`text-primary`:`text-destructive`}`,children:[n?`+`:``,Math.round(t),`%`]})]})]},e.proposal_id)})})}function da(e,t){let n=t||{};return(e[e.length-1]===``?[...e,``]:e).join((n.padRight?` `:``)+`,`+(n.padLeft===!1?``:` `)).trim()}var fa=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,pa=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,ma={};function ha(e,t){return((t||ma).jsx?pa:fa).test(e)}var ga=/[ \t\n\f\r]/g;function _a(e){return typeof e==`object`?e.type===`text`?va(e.value):!1:va(e)}function va(e){return e.replace(ga,``)===``}var ya=class{constructor(e,t,n){this.normal=t,this.property=e,n&&(this.space=n)}};ya.prototype.normal={},ya.prototype.property={},ya.prototype.space=void 0;function ba(e,t){let n={},r={};for(let t of e)Object.assign(n,t.property),Object.assign(r,t.normal);return new ya(n,r,t)}function xa(e){return e.toLowerCase()}var Sa=class{constructor(e,t){this.attribute=t,this.property=e}};Sa.prototype.attribute=``,Sa.prototype.booleanish=!1,Sa.prototype.boolean=!1,Sa.prototype.commaOrSpaceSeparated=!1,Sa.prototype.commaSeparated=!1,Sa.prototype.defined=!1,Sa.prototype.mustUseProperty=!1,Sa.prototype.number=!1,Sa.prototype.overloadedBoolean=!1,Sa.prototype.property=``,Sa.prototype.spaceSeparated=!1,Sa.prototype.space=void 0;var Ca=e({boolean:()=>q,booleanish:()=>J,commaOrSpaceSeparated:()=>Da,commaSeparated:()=>Ea,number:()=>Y,overloadedBoolean:()=>Ta,spaceSeparated:()=>X}),wa=0,q=Oa(),J=Oa(),Ta=Oa(),Y=Oa(),X=Oa(),Ea=Oa(),Da=Oa();function Oa(){return 2**++wa}var ka=Object.keys(Ca),Aa=class extends Sa{constructor(e,t,n,r){let i=-1;if(super(e,t),ja(this,`space`,r),typeof n==`number`)for(;++i<ka.length;){let e=ka[i];ja(this,ka[i],(n&Ca[e])===Ca[e])}}};Aa.prototype.defined=!0;function ja(e,t,n){n&&(e[t]=n)}function Ma(e){let t={},n={};for(let[r,i]of Object.entries(e.properties)){let a=new Aa(r,e.transform(e.attributes||{},r),i,e.space);e.mustUseProperty&&e.mustUseProperty.includes(r)&&(a.mustUseProperty=!0),t[r]=a,n[xa(r)]=r,n[xa(a.attribute)]=r}return new ya(t,n,e.space)}var Na=Ma({properties:{ariaActiveDescendant:null,ariaAtomic:J,ariaAutoComplete:null,ariaBusy:J,ariaChecked:J,ariaColCount:Y,ariaColIndex:Y,ariaColSpan:Y,ariaControls:X,ariaCurrent:null,ariaDescribedBy:X,ariaDetails:null,ariaDisabled:J,ariaDropEffect:X,ariaErrorMessage:null,ariaExpanded:J,ariaFlowTo:X,ariaGrabbed:J,ariaHasPopup:null,ariaHidden:J,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:X,ariaLevel:Y,ariaLive:null,ariaModal:J,ariaMultiLine:J,ariaMultiSelectable:J,ariaOrientation:null,ariaOwns:X,ariaPlaceholder:null,ariaPosInSet:Y,ariaPressed:J,ariaReadOnly:J,ariaRelevant:null,ariaRequired:J,ariaRoleDescription:X,ariaRowCount:Y,ariaRowIndex:Y,ariaRowSpan:Y,ariaSelected:J,ariaSetSize:Y,ariaSort:null,ariaValueMax:Y,ariaValueMin:Y,ariaValueNow:Y,ariaValueText:null,role:null},transform(e,t){return t===`role`?t:`aria-`+t.slice(4).toLowerCase()}});function Pa(e,t){return t in e?e[t]:t}function Fa(e,t){return Pa(e,t.toLowerCase())}var Ia=Ma({attributes:{acceptcharset:`accept-charset`,classname:`class`,htmlfor:`for`,httpequiv:`http-equiv`},mustUseProperty:[`checked`,`multiple`,`muted`,`selected`],properties:{abbr:null,accept:Ea,acceptCharset:X,accessKey:X,action:null,allow:null,allowFullScreen:q,allowPaymentRequest:q,allowUserMedia:q,alt:null,as:null,async:q,autoCapitalize:null,autoComplete:X,autoFocus:q,autoPlay:q,blocking:X,capture:null,charSet:null,checked:q,cite:null,className:X,cols:Y,colSpan:null,content:null,contentEditable:J,controls:q,controlsList:X,coords:Y|Ea,crossOrigin:null,data:null,dateTime:null,decoding:null,default:q,defer:q,dir:null,dirName:null,disabled:q,download:Ta,draggable:J,encType:null,enterKeyHint:null,fetchPriority:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:q,formTarget:null,headers:X,height:Y,hidden:Ta,high:Y,href:null,hrefLang:null,htmlFor:X,httpEquiv:X,id:null,imageSizes:null,imageSrcSet:null,inert:q,inputMode:null,integrity:null,is:null,isMap:q,itemId:null,itemProp:X,itemRef:X,itemScope:q,itemType:X,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:q,low:Y,manifest:null,max:null,maxLength:Y,media:null,method:null,min:null,minLength:Y,multiple:q,muted:q,name:null,nonce:null,noModule:q,noValidate:q,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforeMatch:null,onBeforePrint:null,onBeforeToggle:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextLost:null,onContextMenu:null,onContextRestored:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onScrollEnd:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:q,optimum:Y,pattern:null,ping:X,placeholder:null,playsInline:q,popover:null,popoverTarget:null,popoverTargetAction:null,poster:null,preload:null,readOnly:q,referrerPolicy:null,rel:X,required:q,reversed:q,rows:Y,rowSpan:Y,sandbox:X,scope:null,scoped:q,seamless:q,selected:q,shadowRootClonable:q,shadowRootDelegatesFocus:q,shadowRootMode:null,shape:null,size:Y,sizes:null,slot:null,span:Y,spellCheck:J,src:null,srcDoc:null,srcLang:null,srcSet:null,start:Y,step:null,style:null,tabIndex:Y,target:null,title:null,translate:null,type:null,typeMustMatch:q,useMap:null,value:J,width:Y,wrap:null,writingSuggestions:null,align:null,aLink:null,archive:X,axis:null,background:null,bgColor:null,border:Y,borderColor:null,bottomMargin:Y,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:q,declare:q,event:null,face:null,frame:null,frameBorder:null,hSpace:Y,leftMargin:Y,link:null,longDesc:null,lowSrc:null,marginHeight:Y,marginWidth:Y,noResize:q,noHref:q,noShade:q,noWrap:q,object:null,profile:null,prompt:null,rev:null,rightMargin:Y,rules:null,scheme:null,scrolling:J,standby:null,summary:null,text:null,topMargin:Y,valueType:null,version:null,vAlign:null,vLink:null,vSpace:Y,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:q,disableRemotePlayback:q,prefix:null,property:null,results:Y,security:null,unselectable:null},space:`html`,transform:Fa}),La=Ma({attributes:{accentHeight:`accent-height`,alignmentBaseline:`alignment-baseline`,arabicForm:`arabic-form`,baselineShift:`baseline-shift`,capHeight:`cap-height`,className:`class`,clipPath:`clip-path`,clipRule:`clip-rule`,colorInterpolation:`color-interpolation`,colorInterpolationFilters:`color-interpolation-filters`,colorProfile:`color-profile`,colorRendering:`color-rendering`,crossOrigin:`crossorigin`,dataType:`datatype`,dominantBaseline:`dominant-baseline`,enableBackground:`enable-background`,fillOpacity:`fill-opacity`,fillRule:`fill-rule`,floodColor:`flood-color`,floodOpacity:`flood-opacity`,fontFamily:`font-family`,fontSize:`font-size`,fontSizeAdjust:`font-size-adjust`,fontStretch:`font-stretch`,fontStyle:`font-style`,fontVariant:`font-variant`,fontWeight:`font-weight`,glyphName:`glyph-name`,glyphOrientationHorizontal:`glyph-orientation-horizontal`,glyphOrientationVertical:`glyph-orientation-vertical`,hrefLang:`hreflang`,horizAdvX:`horiz-adv-x`,horizOriginX:`horiz-origin-x`,horizOriginY:`horiz-origin-y`,imageRendering:`image-rendering`,letterSpacing:`letter-spacing`,lightingColor:`lighting-color`,markerEnd:`marker-end`,markerMid:`marker-mid`,markerStart:`marker-start`,navDown:`nav-down`,navDownLeft:`nav-down-left`,navDownRight:`nav-down-right`,navLeft:`nav-left`,navNext:`nav-next`,navPrev:`nav-prev`,navRight:`nav-right`,navUp:`nav-up`,navUpLeft:`nav-up-left`,navUpRight:`nav-up-right`,onAbort:`onabort`,onActivate:`onactivate`,onAfterPrint:`onafterprint`,onBeforePrint:`onbeforeprint`,onBegin:`onbegin`,onCancel:`oncancel`,onCanPlay:`oncanplay`,onCanPlayThrough:`oncanplaythrough`,onChange:`onchange`,onClick:`onclick`,onClose:`onclose`,onCopy:`oncopy`,onCueChange:`oncuechange`,onCut:`oncut`,onDblClick:`ondblclick`,onDrag:`ondrag`,onDragEnd:`ondragend`,onDragEnter:`ondragenter`,onDragExit:`ondragexit`,onDragLeave:`ondragleave`,onDragOver:`ondragover`,onDragStart:`ondragstart`,onDrop:`ondrop`,onDurationChange:`ondurationchange`,onEmptied:`onemptied`,onEnd:`onend`,onEnded:`onended`,onError:`onerror`,onFocus:`onfocus`,onFocusIn:`onfocusin`,onFocusOut:`onfocusout`,onHashChange:`onhashchange`,onInput:`oninput`,onInvalid:`oninvalid`,onKeyDown:`onkeydown`,onKeyPress:`onkeypress`,onKeyUp:`onkeyup`,onLoad:`onload`,onLoadedData:`onloadeddata`,onLoadedMetadata:`onloadedmetadata`,onLoadStart:`onloadstart`,onMessage:`onmessage`,onMouseDown:`onmousedown`,onMouseEnter:`onmouseenter`,onMouseLeave:`onmouseleave`,onMouseMove:`onmousemove`,onMouseOut:`onmouseout`,onMouseOver:`onmouseover`,onMouseUp:`onmouseup`,onMouseWheel:`onmousewheel`,onOffline:`onoffline`,onOnline:`ononline`,onPageHide:`onpagehide`,onPageShow:`onpageshow`,onPaste:`onpaste`,onPause:`onpause`,onPlay:`onplay`,onPlaying:`onplaying`,onPopState:`onpopstate`,onProgress:`onprogress`,onRateChange:`onratechange`,onRepeat:`onrepeat`,onReset:`onreset`,onResize:`onresize`,onScroll:`onscroll`,onSeeked:`onseeked`,onSeeking:`onseeking`,onSelect:`onselect`,onShow:`onshow`,onStalled:`onstalled`,onStorage:`onstorage`,onSubmit:`onsubmit`,onSuspend:`onsuspend`,onTimeUpdate:`ontimeupdate`,onToggle:`ontoggle`,onUnload:`onunload`,onVolumeChange:`onvolumechange`,onWaiting:`onwaiting`,onZoom:`onzoom`,overlinePosition:`overline-position`,overlineThickness:`overline-thickness`,paintOrder:`paint-order`,panose1:`panose-1`,pointerEvents:`pointer-events`,referrerPolicy:`referrerpolicy`,renderingIntent:`rendering-intent`,shapeRendering:`shape-rendering`,stopColor:`stop-color`,stopOpacity:`stop-opacity`,strikethroughPosition:`strikethrough-position`,strikethroughThickness:`strikethrough-thickness`,strokeDashArray:`stroke-dasharray`,strokeDashOffset:`stroke-dashoffset`,strokeLineCap:`stroke-linecap`,strokeLineJoin:`stroke-linejoin`,strokeMiterLimit:`stroke-miterlimit`,strokeOpacity:`stroke-opacity`,strokeWidth:`stroke-width`,tabIndex:`tabindex`,textAnchor:`text-anchor`,textDecoration:`text-decoration`,textRendering:`text-rendering`,transformOrigin:`transform-origin`,typeOf:`typeof`,underlinePosition:`underline-position`,underlineThickness:`underline-thickness`,unicodeBidi:`unicode-bidi`,unicodeRange:`unicode-range`,unitsPerEm:`units-per-em`,vAlphabetic:`v-alphabetic`,vHanging:`v-hanging`,vIdeographic:`v-ideographic`,vMathematical:`v-mathematical`,vectorEffect:`vector-effect`,vertAdvY:`vert-adv-y`,vertOriginX:`vert-origin-x`,vertOriginY:`vert-origin-y`,wordSpacing:`word-spacing`,writingMode:`writing-mode`,xHeight:`x-height`,playbackOrder:`playbackorder`,timelineBegin:`timelinebegin`},properties:{about:Da,accentHeight:Y,accumulate:null,additive:null,alignmentBaseline:null,alphabetic:Y,amplitude:Y,arabicForm:null,ascent:Y,attributeName:null,attributeType:null,azimuth:Y,bandwidth:null,baselineShift:null,baseFrequency:null,baseProfile:null,bbox:null,begin:null,bias:Y,by:null,calcMode:null,capHeight:Y,className:X,clip:null,clipPath:null,clipPathUnits:null,clipRule:null,color:null,colorInterpolation:null,colorInterpolationFilters:null,colorProfile:null,colorRendering:null,content:null,contentScriptType:null,contentStyleType:null,crossOrigin:null,cursor:null,cx:null,cy:null,d:null,dataType:null,defaultAction:null,descent:Y,diffuseConstant:Y,direction:null,display:null,dur:null,divisor:Y,dominantBaseline:null,download:q,dx:null,dy:null,edgeMode:null,editable:null,elevation:Y,enableBackground:null,end:null,event:null,exponent:Y,externalResourcesRequired:null,fill:null,fillOpacity:Y,fillRule:null,filter:null,filterRes:null,filterUnits:null,floodColor:null,floodOpacity:null,focusable:null,focusHighlight:null,fontFamily:null,fontSize:null,fontSizeAdjust:null,fontStretch:null,fontStyle:null,fontVariant:null,fontWeight:null,format:null,fr:null,from:null,fx:null,fy:null,g1:Ea,g2:Ea,glyphName:Ea,glyphOrientationHorizontal:null,glyphOrientationVertical:null,glyphRef:null,gradientTransform:null,gradientUnits:null,handler:null,hanging:Y,hatchContentUnits:null,hatchUnits:null,height:null,href:null,hrefLang:null,horizAdvX:Y,horizOriginX:Y,horizOriginY:Y,id:null,ideographic:Y,imageRendering:null,initialVisibility:null,in:null,in2:null,intercept:Y,k:Y,k1:Y,k2:Y,k3:Y,k4:Y,kernelMatrix:Da,kernelUnitLength:null,keyPoints:null,keySplines:null,keyTimes:null,kerning:null,lang:null,lengthAdjust:null,letterSpacing:null,lightingColor:null,limitingConeAngle:Y,local:null,markerEnd:null,markerMid:null,markerStart:null,markerHeight:null,markerUnits:null,markerWidth:null,mask:null,maskContentUnits:null,maskUnits:null,mathematical:null,max:null,media:null,mediaCharacterEncoding:null,mediaContentEncodings:null,mediaSize:Y,mediaTime:null,method:null,min:null,mode:null,name:null,navDown:null,navDownLeft:null,navDownRight:null,navLeft:null,navNext:null,navPrev:null,navRight:null,navUp:null,navUpLeft:null,navUpRight:null,numOctaves:null,observer:null,offset:null,onAbort:null,onActivate:null,onAfterPrint:null,onBeforePrint:null,onBegin:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnd:null,onEnded:null,onError:null,onFocus:null,onFocusIn:null,onFocusOut:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadStart:null,onMessage:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onMouseWheel:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRepeat:null,onReset:null,onResize:null,onScroll:null,onSeeked:null,onSeeking:null,onSelect:null,onShow:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnload:null,onVolumeChange:null,onWaiting:null,onZoom:null,opacity:null,operator:null,order:null,orient:null,orientation:null,origin:null,overflow:null,overlay:null,overlinePosition:Y,overlineThickness:Y,paintOrder:null,panose1:null,path:null,pathLength:Y,patternContentUnits:null,patternTransform:null,patternUnits:null,phase:null,ping:X,pitch:null,playbackOrder:null,pointerEvents:null,points:null,pointsAtX:Y,pointsAtY:Y,pointsAtZ:Y,preserveAlpha:null,preserveAspectRatio:null,primitiveUnits:null,propagate:null,property:Da,r:null,radius:null,referrerPolicy:null,refX:null,refY:null,rel:Da,rev:Da,renderingIntent:null,repeatCount:null,repeatDur:null,requiredExtensions:Da,requiredFeatures:Da,requiredFonts:Da,requiredFormats:Da,resource:null,restart:null,result:null,rotate:null,rx:null,ry:null,scale:null,seed:null,shapeRendering:null,side:null,slope:null,snapshotTime:null,specularConstant:Y,specularExponent:Y,spreadMethod:null,spacing:null,startOffset:null,stdDeviation:null,stemh:null,stemv:null,stitchTiles:null,stopColor:null,stopOpacity:null,strikethroughPosition:Y,strikethroughThickness:Y,string:null,stroke:null,strokeDashArray:Da,strokeDashOffset:null,strokeLineCap:null,strokeLineJoin:null,strokeMiterLimit:Y,strokeOpacity:Y,strokeWidth:null,style:null,surfaceScale:Y,syncBehavior:null,syncBehaviorDefault:null,syncMaster:null,syncTolerance:null,syncToleranceDefault:null,systemLanguage:Da,tabIndex:Y,tableValues:null,target:null,targetX:Y,targetY:Y,textAnchor:null,textDecoration:null,textRendering:null,textLength:null,timelineBegin:null,title:null,transformBehavior:null,type:null,typeOf:Da,to:null,transform:null,transformOrigin:null,u1:null,u2:null,underlinePosition:Y,underlineThickness:Y,unicode:null,unicodeBidi:null,unicodeRange:null,unitsPerEm:Y,values:null,vAlphabetic:Y,vMathematical:Y,vectorEffect:null,vHanging:Y,vIdeographic:Y,version:null,vertAdvY:Y,vertOriginX:Y,vertOriginY:Y,viewBox:null,viewTarget:null,visibility:null,width:null,widths:null,wordSpacing:null,writingMode:null,x:null,x1:null,x2:null,xChannelSelector:null,xHeight:Y,y:null,y1:null,y2:null,yChannelSelector:null,z:null,zoomAndPan:null},space:`svg`,transform:Pa}),Ra=Ma({properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null},space:`xlink`,transform(e,t){return`xlink:`+t.slice(5).toLowerCase()}}),za=Ma({attributes:{xmlnsxlink:`xmlns:xlink`},properties:{xmlnsXLink:null,xmlns:null},space:`xmlns`,transform:Fa}),Ba=Ma({properties:{xmlBase:null,xmlLang:null,xmlSpace:null},space:`xml`,transform(e,t){return`xml:`+t.slice(3).toLowerCase()}}),Va={classId:`classID`,dataType:`datatype`,itemId:`itemID`,strokeDashArray:`strokeDasharray`,strokeDashOffset:`strokeDashoffset`,strokeLineCap:`strokeLinecap`,strokeLineJoin:`strokeLinejoin`,strokeMiterLimit:`strokeMiterlimit`,typeOf:`typeof`,xLinkActuate:`xlinkActuate`,xLinkArcRole:`xlinkArcrole`,xLinkHref:`xlinkHref`,xLinkRole:`xlinkRole`,xLinkShow:`xlinkShow`,xLinkTitle:`xlinkTitle`,xLinkType:`xlinkType`,xmlnsXLink:`xmlnsXlink`},Ha=/[A-Z]/g,Ua=/-[a-z]/g,Wa=/^data[-\w.:]+$/i;function Ga(e,t){let n=xa(t),r=t,i=Sa;if(n in e.normal)return e.property[e.normal[n]];if(n.length>4&&n.slice(0,4)===`data`&&Wa.test(t)){if(t.charAt(4)===`-`){let e=t.slice(5).replace(Ua,qa);r=`data`+e.charAt(0).toUpperCase()+e.slice(1)}else{let e=t.slice(4);if(!Ua.test(e)){let n=e.replace(Ha,Ka);n.charAt(0)!==`-`&&(n=`-`+n),t=`data`+n}}i=Aa}return new i(r,t)}function Ka(e){return`-`+e.toLowerCase()}function qa(e){return e.charAt(1).toUpperCase()}var Ja=ba([Na,Ia,Ra,za,Ba],`html`),Ya=ba([Na,La,Ra,za,Ba],`svg`);function Xa(e){return e.join(` `).trim()}var Za=n(((e,t)=>{var n=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,r=/\n/g,i=/^\s*/,a=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,o=/^:\s*/,s=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,c=/^[;\s]*/,l=/^\s+|\s+$/g,u=`
2
+ `,d=`/`,f=`*`,p=``,m=`comment`,h=`declaration`;function g(e,t){if(typeof e!=`string`)throw TypeError(`First argument must be a string`);if(!e)return[];t||={};var l=1,g=1;function v(e){var t=e.match(r);t&&(l+=t.length);var n=e.lastIndexOf(u);g=~n?e.length-n:g+e.length}function y(){var e={line:l,column:g};return function(t){return t.position=new b(e),C(),t}}function b(e){this.start=e,this.end={line:l,column:g},this.source=t.source}b.prototype.content=e;function x(n){var r=Error(t.source+`:`+l+`:`+g+`: `+n);if(r.reason=n,r.filename=t.source,r.line=l,r.column=g,r.source=e,!t.silent)throw r}function S(t){var n=t.exec(e);if(n){var r=n[0];return v(r),e=e.slice(r.length),n}}function C(){S(i)}function w(e){var t;for(e||=[];t=T();)t!==!1&&e.push(t);return e}function T(){var t=y();if(!(d!=e.charAt(0)||f!=e.charAt(1))){for(var n=2;p!=e.charAt(n)&&(f!=e.charAt(n)||d!=e.charAt(n+1));)++n;if(n+=2,p===e.charAt(n-1))return x(`End of comment missing`);var r=e.slice(2,n-2);return g+=2,v(r),e=e.slice(n),g+=2,t({type:m,comment:r})}}function E(){var e=y(),t=S(a);if(t){if(T(),!S(o))return x(`property missing ':'`);var r=S(s),i=e({type:h,property:_(t[0].replace(n,p)),value:r?_(r[0].replace(n,p)):p});return S(c),i}}function D(){var e=[];w(e);for(var t;t=E();)t!==!1&&(e.push(t),w(e));return e}return C(),D()}function _(e){return e?e.replace(l,p):p}t.exports=g})),Qa=n((e=>{var t=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,`__esModule`,{value:!0}),e.default=r;var n=t(Za());function r(e,t){let r=null;if(!e||typeof e!=`string`)return r;let i=(0,n.default)(e),a=typeof t==`function`;return i.forEach(e=>{if(e.type!==`declaration`)return;let{property:n,value:i}=e;a?t(n,i,e):i&&(r||={},r[n]=i)}),r}})),$a=n((e=>{Object.defineProperty(e,`__esModule`,{value:!0}),e.camelCase=void 0;var t=/^--[a-zA-Z0-9_-]+$/,n=/-([a-z])/g,r=/^[^-]+$/,i=/^-(webkit|moz|ms|o|khtml)-/,a=/^-(ms)-/,o=function(e){return!e||r.test(e)||t.test(e)},s=function(e,t){return t.toUpperCase()},c=function(e,t){return`${t}-`};e.camelCase=function(e,t){return t===void 0&&(t={}),o(e)?e:(e=e.toLowerCase(),e=t.reactCompat?e.replace(a,c):e.replace(i,c),e.replace(n,s))}})),eo=n(((e,t)=>{var n=(e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}})(Qa()),r=$a();function i(e,t){var i={};return!e||typeof e!=`string`||(0,n.default)(e,function(e,n){e&&n&&(i[(0,r.camelCase)(e,t)]=n)}),i}i.default=i,t.exports=i})),to=ro(`end`),no=ro(`start`);function ro(e){return t;function t(t){let n=t&&t.position&&t.position[e]||{};if(typeof n.line==`number`&&n.line>0&&typeof n.column==`number`&&n.column>0)return{line:n.line,column:n.column,offset:typeof n.offset==`number`&&n.offset>-1?n.offset:void 0}}}function io(e){let t=no(e),n=to(e);if(t&&n)return{start:t,end:n}}function ao(e){return!e||typeof e!=`object`?``:`position`in e||`type`in e?so(e.position):`start`in e||`end`in e?so(e):`line`in e||`column`in e?oo(e):``}function oo(e){return co(e&&e.line)+`:`+co(e&&e.column)}function so(e){return oo(e&&e.start)+`-`+oo(e&&e.end)}function co(e){return e&&typeof e==`number`?e:1}var lo=class extends Error{constructor(e,t,n){super(),typeof t==`string`&&(n=t,t=void 0);let r=``,i={},a=!1;if(t&&(i=`line`in t&&`column`in t||`start`in t&&`end`in t?{place:t}:`type`in t?{ancestors:[t],place:t.position}:{...t}),typeof e==`string`?r=e:!i.cause&&e&&(a=!0,r=e.message,i.cause=e),!i.ruleId&&!i.source&&typeof n==`string`){let e=n.indexOf(`:`);e===-1?i.ruleId=n:(i.source=n.slice(0,e),i.ruleId=n.slice(e+1))}if(!i.place&&i.ancestors&&i.ancestors){let e=i.ancestors[i.ancestors.length-1];e&&(i.place=e.position)}let o=i.place&&`start`in i.place?i.place.start:i.place;this.ancestors=i.ancestors||void 0,this.cause=i.cause||void 0,this.column=o?o.column:void 0,this.fatal=void 0,this.file=``,this.message=r,this.line=o?o.line:void 0,this.name=ao(i.place)||`1:1`,this.place=i.place||void 0,this.reason=this.message,this.ruleId=i.ruleId||void 0,this.source=i.source||void 0,this.stack=a&&i.cause&&typeof i.cause.stack==`string`?i.cause.stack:``,this.actual=void 0,this.expected=void 0,this.note=void 0,this.url=void 0}};lo.prototype.file=``,lo.prototype.name=``,lo.prototype.reason=``,lo.prototype.message=``,lo.prototype.stack=``,lo.prototype.column=void 0,lo.prototype.line=void 0,lo.prototype.ancestors=void 0,lo.prototype.cause=void 0,lo.prototype.fatal=void 0,lo.prototype.place=void 0,lo.prototype.ruleId=void 0,lo.prototype.source=void 0;var uo=t(eo(),1),fo={}.hasOwnProperty,po=new Map,mo=/[A-Z]/g,ho=new Set([`table`,`tbody`,`thead`,`tfoot`,`tr`]),go=new Set([`td`,`th`]),_o=`https://github.com/syntax-tree/hast-util-to-jsx-runtime`;function vo(e,t){if(!t||t.Fragment===void 0)throw TypeError("Expected `Fragment` in options");let n=t.filePath||void 0,r;if(t.development){if(typeof t.jsxDEV!=`function`)throw TypeError("Expected `jsxDEV` in options when `development: true`");r=ko(n,t.jsxDEV)}else{if(typeof t.jsx!=`function`)throw TypeError("Expected `jsx` in production options");if(typeof t.jsxs!=`function`)throw TypeError("Expected `jsxs` in production options");r=Oo(n,t.jsx,t.jsxs)}let i={Fragment:t.Fragment,ancestors:[],components:t.components||{},create:r,elementAttributeNameCase:t.elementAttributeNameCase||`react`,evaluater:t.createEvaluater?t.createEvaluater():void 0,filePath:n,ignoreInvalidStyle:t.ignoreInvalidStyle||!1,passKeys:t.passKeys!==!1,passNode:t.passNode||!1,schema:t.space===`svg`?Ya:Ja,stylePropertyNameCase:t.stylePropertyNameCase||`dom`,tableCellAlignToStyle:t.tableCellAlignToStyle!==!1},a=yo(i,e,void 0);return a&&typeof a!=`string`?a:i.create(e,i.Fragment,{children:a||void 0},void 0)}function yo(e,t,n){if(t.type===`element`)return bo(e,t,n);if(t.type===`mdxFlowExpression`||t.type===`mdxTextExpression`)return xo(e,t);if(t.type===`mdxJsxFlowElement`||t.type===`mdxJsxTextElement`)return Co(e,t,n);if(t.type===`mdxjsEsm`)return So(e,t);if(t.type===`root`)return wo(e,t,n);if(t.type===`text`)return To(e,t)}function bo(e,t,n){let r=e.schema,i=r;t.tagName.toLowerCase()===`svg`&&r.space===`html`&&(i=Ya,e.schema=i),e.ancestors.push(t);let a=Fo(e,t.tagName,!1),o=Ao(e,t),s=Mo(e,t);return ho.has(t.tagName)&&(s=s.filter(function(e){return typeof e==`string`?!_a(e):!0})),Eo(e,o,a,t),Do(o,s),e.ancestors.pop(),e.schema=r,e.create(t,a,o,n)}function xo(e,t){if(t.data&&t.data.estree&&e.evaluater){let n=t.data.estree.body[0];return n.type,e.evaluater.evaluateExpression(n.expression)}Io(e,t.position)}function So(e,t){if(t.data&&t.data.estree&&e.evaluater)return e.evaluater.evaluateProgram(t.data.estree);Io(e,t.position)}function Co(e,t,n){let r=e.schema,i=r;t.name===`svg`&&r.space===`html`&&(i=Ya,e.schema=i),e.ancestors.push(t);let a=t.name===null?e.Fragment:Fo(e,t.name,!0),o=jo(e,t),s=Mo(e,t);return Eo(e,o,a,t),Do(o,s),e.ancestors.pop(),e.schema=r,e.create(t,a,o,n)}function wo(e,t,n){let r={};return Do(r,Mo(e,t)),e.create(t,e.Fragment,r,n)}function To(e,t){return t.value}function Eo(e,t,n,r){typeof n!=`string`&&n!==e.Fragment&&e.passNode&&(t.node=r)}function Do(e,t){if(t.length>0){let n=t.length>1?t:t[0];n&&(e.children=n)}}function Oo(e,t,n){return r;function r(e,r,i,a){let o=Array.isArray(i.children)?n:t;return a?o(r,i,a):o(r,i)}}function ko(e,t){return n;function n(n,r,i,a){let o=Array.isArray(i.children),s=no(n);return t(r,i,a,o,{columnNumber:s?s.column-1:void 0,fileName:e,lineNumber:s?s.line:void 0},void 0)}}function Ao(e,t){let n={},r,i;for(i in t.properties)if(i!==`children`&&fo.call(t.properties,i)){let a=No(e,i,t.properties[i]);if(a){let[i,o]=a;e.tableCellAlignToStyle&&i===`align`&&typeof o==`string`&&go.has(t.tagName)?r=o:n[i]=o}}if(r){let t=n.style||={};t[e.stylePropertyNameCase===`css`?`text-align`:`textAlign`]=r}return n}function jo(e,t){let n={};for(let r of t.attributes)if(r.type===`mdxJsxExpressionAttribute`)if(r.data&&r.data.estree&&e.evaluater){let t=r.data.estree.body[0];t.type;let i=t.expression;i.type;let a=i.properties[0];a.type,Object.assign(n,e.evaluater.evaluateExpression(a.argument))}else Io(e,t.position);else{let i=r.name,a;if(r.value&&typeof r.value==`object`)if(r.value.data&&r.value.data.estree&&e.evaluater){let t=r.value.data.estree.body[0];t.type,a=e.evaluater.evaluateExpression(t.expression)}else Io(e,t.position);else a=r.value===null?!0:r.value;n[i]=a}return n}function Mo(e,t){let n=[],r=-1,i=e.passKeys?new Map:po;for(;++r<t.children.length;){let a=t.children[r],o;if(e.passKeys){let e=a.type===`element`?a.tagName:a.type===`mdxJsxFlowElement`||a.type===`mdxJsxTextElement`?a.name:void 0;if(e){let t=i.get(e)||0;o=e+`-`+t,i.set(e,t+1)}}let s=yo(e,a,o);s!==void 0&&n.push(s)}return n}function No(e,t,n){let r=Ga(e.schema,t);if(!(n==null||typeof n==`number`&&Number.isNaN(n))){if(Array.isArray(n)&&(n=r.commaSeparated?da(n):Xa(n)),r.property===`style`){let t=typeof n==`object`?n:Po(e,String(n));return e.stylePropertyNameCase===`css`&&(t=Lo(t)),[`style`,t]}return[e.elementAttributeNameCase===`react`&&r.space?Va[r.property]||r.property:r.attribute,n]}}function Po(e,t){try{return(0,uo.default)(t,{reactCompat:!0})}catch(t){if(e.ignoreInvalidStyle)return{};let n=t,r=new lo("Cannot parse `style` attribute",{ancestors:e.ancestors,cause:n,ruleId:`style`,source:`hast-util-to-jsx-runtime`});throw r.file=e.filePath||void 0,r.url=_o+`#cannot-parse-style-attribute`,r}}function Fo(e,t,n){let r;if(!n)r={type:`Literal`,value:t};else if(t.includes(`.`)){let e=t.split(`.`),n=-1,i;for(;++n<e.length;){let t=ha(e[n])?{type:`Identifier`,name:e[n]}:{type:`Literal`,value:e[n]};i=i?{type:`MemberExpression`,object:i,property:t,computed:!!(n&&t.type===`Literal`),optional:!1}:t}r=i}else r=ha(t)&&!/^[a-z]/.test(t)?{type:`Identifier`,name:t}:{type:`Literal`,value:t};if(r.type===`Literal`){let t=r.value;return fo.call(e.components,t)?e.components[t]:t}if(e.evaluater)return e.evaluater.evaluateExpression(r);Io(e)}function Io(e,t){let n=new lo("Cannot handle MDX estrees without `createEvaluater`",{ancestors:e.ancestors,place:t,ruleId:`mdx-estree`,source:`hast-util-to-jsx-runtime`});throw n.file=e.filePath||void 0,n.url=_o+`#cannot-handle-mdx-estrees-without-createevaluater`,n}function Lo(e){let t={},n;for(n in e)fo.call(e,n)&&(t[Ro(n)]=e[n]);return t}function Ro(e){let t=e.replace(mo,zo);return t.slice(0,3)===`ms-`&&(t=`-`+t),t}function zo(e){return`-`+e.toLowerCase()}var Bo={action:[`form`],cite:[`blockquote`,`del`,`ins`,`q`],data:[`object`],formAction:[`button`,`input`],href:[`a`,`area`,`base`,`link`],icon:[`menuitem`],itemId:null,manifest:[`html`],ping:[`a`,`area`],poster:[`video`],src:[`audio`,`embed`,`iframe`,`img`,`input`,`script`,`source`,`track`,`video`]},Vo={};function Ho(e,t){let n=t||Vo;return Uo(e,typeof n.includeImageAlt==`boolean`?n.includeImageAlt:!0,typeof n.includeHtml==`boolean`?n.includeHtml:!0)}function Uo(e,t,n){if(Go(e)){if(`value`in e)return e.type===`html`&&!n?``:e.value;if(t&&`alt`in e&&e.alt)return e.alt;if(`children`in e)return Wo(e.children,t,n)}return Array.isArray(e)?Wo(e,t,n):``}function Wo(e,t,n){let r=[],i=-1;for(;++i<e.length;)r[i]=Uo(e[i],t,n);return r.join(``)}function Go(e){return!!(e&&typeof e==`object`)}var Ko=document.createElement(`i`);function qo(e){let t=`&`+e+`;`;Ko.innerHTML=t;let n=Ko.textContent;return n.charCodeAt(n.length-1)===59&&e!==`semi`||n===t?!1:n}function Jo(e,t,n,r){let i=e.length,a=0,o;if(t=t<0?-t>i?0:i+t:t>i?i:t,n=n>0?n:0,r.length<1e4)o=Array.from(r),o.unshift(t,n),e.splice(...o);else for(n&&e.splice(t,n);a<r.length;)o=r.slice(a,a+1e4),o.unshift(t,0),e.splice(...o),a+=1e4,t+=1e4}function Yo(e,t){return e.length>0?(Jo(e,e.length,0,t),e):t}var Xo={}.hasOwnProperty;function Zo(e){let t={},n=-1;for(;++n<e.length;)Qo(t,e[n]);return t}function Qo(e,t){let n;for(n in t){let r=(Xo.call(e,n)?e[n]:void 0)||(e[n]={}),i=t[n],a;if(i)for(a in i){Xo.call(r,a)||(r[a]=[]);let e=i[a];$o(r[a],Array.isArray(e)?e:e?[e]:[])}}}function $o(e,t){let n=-1,r=[];for(;++n<t.length;)(t[n].add===`after`?e:r).push(t[n]);Jo(e,0,0,r)}function es(e,t){let n=Number.parseInt(e,t);return n<9||n===11||n>13&&n<32||n>126&&n<160||n>55295&&n<57344||n>64975&&n<65008||(n&65535)==65535||(n&65535)==65534||n>1114111?`�`:String.fromCodePoint(n)}function ts(e){return e.replace(/[\t\n\r ]+/g,` `).replace(/^ | $/g,``).toLowerCase().toUpperCase()}var ns=fs(/[A-Za-z]/),rs=fs(/[\dA-Za-z]/),is=fs(/[#-'*+\--9=?A-Z^-~]/);function as(e){return e!==null&&(e<32||e===127)}var os=fs(/\d/),ss=fs(/[\dA-Fa-f]/),cs=fs(/[!-/:-@[-`{-~]/);function Z(e){return e!==null&&e<-2}function ls(e){return e!==null&&(e<0||e===32)}function Q(e){return e===-2||e===-1||e===32}var us=fs(/\p{P}|\p{S}/u),ds=fs(/\s/);function fs(e){return t;function t(t){return t!==null&&t>-1&&e.test(String.fromCharCode(t))}}function ps(e){let t=[],n=-1,r=0,i=0;for(;++n<e.length;){let a=e.charCodeAt(n),o=``;if(a===37&&rs(e.charCodeAt(n+1))&&rs(e.charCodeAt(n+2)))i=2;else if(a<128)/[!#$&-;=?-Z_a-z~]/.test(String.fromCharCode(a))||(o=String.fromCharCode(a));else if(a>55295&&a<57344){let t=e.charCodeAt(n+1);a<56320&&t>56319&&t<57344?(o=String.fromCharCode(a,t),i=1):o=`�`}else o=String.fromCharCode(a);o&&=(t.push(e.slice(r,n),encodeURIComponent(o)),r=n+i+1,``),i&&=(n+=i,0)}return t.join(``)+e.slice(r)}function $(e,t,n,r){let i=r?r-1:1/0,a=0;return o;function o(r){return Q(r)?(e.enter(n),s(r)):t(r)}function s(r){return Q(r)&&a++<i?(e.consume(r),s):(e.exit(n),t(r))}}var ms={tokenize:hs};function hs(e){let t=e.attempt(this.parser.constructs.contentInitial,r,i),n;return t;function r(n){if(n===null){e.consume(n);return}return e.enter(`lineEnding`),e.consume(n),e.exit(`lineEnding`),$(e,t,`linePrefix`)}function i(t){return e.enter(`paragraph`),a(t)}function a(t){let r=e.enter(`chunkText`,{contentType:`text`,previous:n});return n&&(n.next=r),n=r,o(t)}function o(t){if(t===null){e.exit(`chunkText`),e.exit(`paragraph`),e.consume(t);return}return Z(t)?(e.consume(t),e.exit(`chunkText`),a):(e.consume(t),o)}}var gs={tokenize:vs},_s={tokenize:ys};function vs(e){let t=this,n=[],r=0,i,a,o;return s;function s(i){if(r<n.length){let a=n[r];return t.containerState=a[1],e.attempt(a[0].continuation,c,l)(i)}return l(i)}function c(e){if(r++,t.containerState._closeFlow){t.containerState._closeFlow=void 0,i&&v();let n=t.events.length,a=n,o;for(;a--;)if(t.events[a][0]===`exit`&&t.events[a][1].type===`chunkFlow`){o=t.events[a][1].end;break}_(r);let s=n;for(;s<t.events.length;)t.events[s][1].end={...o},s++;return Jo(t.events,a+1,0,t.events.slice(n)),t.events.length=s,l(e)}return s(e)}function l(a){if(r===n.length){if(!i)return f(a);if(i.currentConstruct&&i.currentConstruct.concrete)return m(a);t.interrupt=!!(i.currentConstruct&&!i._gfmTableDynamicInterruptHack)}return t.containerState={},e.check(_s,u,d)(a)}function u(e){return i&&v(),_(r),f(e)}function d(e){return t.parser.lazy[t.now().line]=r!==n.length,o=t.now().offset,m(e)}function f(n){return t.containerState={},e.attempt(_s,p,m)(n)}function p(e){return r++,n.push([t.currentConstruct,t.containerState]),f(e)}function m(n){if(n===null){i&&v(),_(0),e.consume(n);return}return i||=t.parser.flow(t.now()),e.enter(`chunkFlow`,{_tokenizer:i,contentType:`flow`,previous:a}),h(n)}function h(n){if(n===null){g(e.exit(`chunkFlow`),!0),_(0),e.consume(n);return}return Z(n)?(e.consume(n),g(e.exit(`chunkFlow`)),r=0,t.interrupt=void 0,s):(e.consume(n),h)}function g(e,n){let s=t.sliceStream(e);if(n&&s.push(null),e.previous=a,a&&(a.next=e),a=e,i.defineSkip(e.start),i.write(s),t.parser.lazy[e.start.line]){let e=i.events.length;for(;e--;)if(i.events[e][1].start.offset<o&&(!i.events[e][1].end||i.events[e][1].end.offset>o))return;let n=t.events.length,a=n,s,c;for(;a--;)if(t.events[a][0]===`exit`&&t.events[a][1].type===`chunkFlow`){if(s){c=t.events[a][1].end;break}s=!0}for(_(r),e=n;e<t.events.length;)t.events[e][1].end={...c},e++;Jo(t.events,a+1,0,t.events.slice(n)),t.events.length=e}}function _(r){let i=n.length;for(;i-- >r;){let r=n[i];t.containerState=r[1],r[0].exit.call(t,e)}n.length=r}function v(){i.write([null]),a=void 0,i=void 0,t.containerState._closeFlow=void 0}}function ys(e,t,n){return $(e,e.attempt(this.parser.constructs.document,t,n),`linePrefix`,this.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)}function bs(e){if(e===null||ls(e)||ds(e))return 1;if(us(e))return 2}function xs(e,t,n){let r=[],i=-1;for(;++i<e.length;){let a=e[i].resolveAll;a&&!r.includes(a)&&(t=a(t,n),r.push(a))}return t}var Ss={name:`attention`,resolveAll:Cs,tokenize:ws};function Cs(e,t){let n=-1,r,i,a,o,s,c,l,u;for(;++n<e.length;)if(e[n][0]===`enter`&&e[n][1].type===`attentionSequence`&&e[n][1]._close){for(r=n;r--;)if(e[r][0]===`exit`&&e[r][1].type===`attentionSequence`&&e[r][1]._open&&t.sliceSerialize(e[r][1]).charCodeAt(0)===t.sliceSerialize(e[n][1]).charCodeAt(0)){if((e[r][1]._close||e[n][1]._open)&&(e[n][1].end.offset-e[n][1].start.offset)%3&&!((e[r][1].end.offset-e[r][1].start.offset+e[n][1].end.offset-e[n][1].start.offset)%3))continue;c=e[r][1].end.offset-e[r][1].start.offset>1&&e[n][1].end.offset-e[n][1].start.offset>1?2:1;let d={...e[r][1].end},f={...e[n][1].start};Ts(d,-c),Ts(f,c),o={type:c>1?`strongSequence`:`emphasisSequence`,start:d,end:{...e[r][1].end}},s={type:c>1?`strongSequence`:`emphasisSequence`,start:{...e[n][1].start},end:f},a={type:c>1?`strongText`:`emphasisText`,start:{...e[r][1].end},end:{...e[n][1].start}},i={type:c>1?`strong`:`emphasis`,start:{...o.start},end:{...s.end}},e[r][1].end={...o.start},e[n][1].start={...s.end},l=[],e[r][1].end.offset-e[r][1].start.offset&&(l=Yo(l,[[`enter`,e[r][1],t],[`exit`,e[r][1],t]])),l=Yo(l,[[`enter`,i,t],[`enter`,o,t],[`exit`,o,t],[`enter`,a,t]]),l=Yo(l,xs(t.parser.constructs.insideSpan.null,e.slice(r+1,n),t)),l=Yo(l,[[`exit`,a,t],[`enter`,s,t],[`exit`,s,t],[`exit`,i,t]]),e[n][1].end.offset-e[n][1].start.offset?(u=2,l=Yo(l,[[`enter`,e[n][1],t],[`exit`,e[n][1],t]])):u=0,Jo(e,r-1,n-r+3,l),n=r+l.length-u-2;break}}for(n=-1;++n<e.length;)e[n][1].type===`attentionSequence`&&(e[n][1].type=`data`);return e}function ws(e,t){let n=this.parser.constructs.attentionMarkers.null,r=this.previous,i=bs(r),a;return o;function o(t){return a=t,e.enter(`attentionSequence`),s(t)}function s(o){if(o===a)return e.consume(o),s;let c=e.exit(`attentionSequence`),l=bs(o),u=!l||l===2&&i||n.includes(o),d=!i||i===2&&l||n.includes(r);return c._open=!!(a===42?u:u&&(i||!d)),c._close=!!(a===42?d:d&&(l||!u)),t(o)}}function Ts(e,t){e.column+=t,e.offset+=t,e._bufferIndex+=t}var Es={name:`autolink`,tokenize:Ds};function Ds(e,t,n){let r=0;return i;function i(t){return e.enter(`autolink`),e.enter(`autolinkMarker`),e.consume(t),e.exit(`autolinkMarker`),e.enter(`autolinkProtocol`),a}function a(t){return ns(t)?(e.consume(t),o):t===64?n(t):l(t)}function o(e){return e===43||e===45||e===46||rs(e)?(r=1,s(e)):l(e)}function s(t){return t===58?(e.consume(t),r=0,c):(t===43||t===45||t===46||rs(t))&&r++<32?(e.consume(t),s):(r=0,l(t))}function c(r){return r===62?(e.exit(`autolinkProtocol`),e.enter(`autolinkMarker`),e.consume(r),e.exit(`autolinkMarker`),e.exit(`autolink`),t):r===null||r===32||r===60||as(r)?n(r):(e.consume(r),c)}function l(t){return t===64?(e.consume(t),u):is(t)?(e.consume(t),l):n(t)}function u(e){return rs(e)?d(e):n(e)}function d(n){return n===46?(e.consume(n),r=0,u):n===62?(e.exit(`autolinkProtocol`).type=`autolinkEmail`,e.enter(`autolinkMarker`),e.consume(n),e.exit(`autolinkMarker`),e.exit(`autolink`),t):f(n)}function f(t){if((t===45||rs(t))&&r++<63){let n=t===45?f:d;return e.consume(t),n}return n(t)}}var Os={partial:!0,tokenize:ks};function ks(e,t,n){return r;function r(t){return Q(t)?$(e,i,`linePrefix`)(t):i(t)}function i(e){return e===null||Z(e)?t(e):n(e)}}var As={continuation:{tokenize:Ms},exit:Ns,name:`blockQuote`,tokenize:js};function js(e,t,n){let r=this;return i;function i(t){if(t===62){let n=r.containerState;return n.open||=(e.enter(`blockQuote`,{_container:!0}),!0),e.enter(`blockQuotePrefix`),e.enter(`blockQuoteMarker`),e.consume(t),e.exit(`blockQuoteMarker`),a}return n(t)}function a(n){return Q(n)?(e.enter(`blockQuotePrefixWhitespace`),e.consume(n),e.exit(`blockQuotePrefixWhitespace`),e.exit(`blockQuotePrefix`),t):(e.exit(`blockQuotePrefix`),t(n))}}function Ms(e,t,n){let r=this;return i;function i(t){return Q(t)?$(e,a,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):a(t)}function a(r){return e.attempt(As,t,n)(r)}}function Ns(e){e.exit(`blockQuote`)}var Ps={name:`characterEscape`,tokenize:Fs};function Fs(e,t,n){return r;function r(t){return e.enter(`characterEscape`),e.enter(`escapeMarker`),e.consume(t),e.exit(`escapeMarker`),i}function i(r){return cs(r)?(e.enter(`characterEscapeValue`),e.consume(r),e.exit(`characterEscapeValue`),e.exit(`characterEscape`),t):n(r)}}var Is={name:`characterReference`,tokenize:Ls};function Ls(e,t,n){let r=this,i=0,a,o;return s;function s(t){return e.enter(`characterReference`),e.enter(`characterReferenceMarker`),e.consume(t),e.exit(`characterReferenceMarker`),c}function c(t){return t===35?(e.enter(`characterReferenceMarkerNumeric`),e.consume(t),e.exit(`characterReferenceMarkerNumeric`),l):(e.enter(`characterReferenceValue`),a=31,o=rs,u(t))}function l(t){return t===88||t===120?(e.enter(`characterReferenceMarkerHexadecimal`),e.consume(t),e.exit(`characterReferenceMarkerHexadecimal`),e.enter(`characterReferenceValue`),a=6,o=ss,u):(e.enter(`characterReferenceValue`),a=7,o=os,u(t))}function u(s){if(s===59&&i){let i=e.exit(`characterReferenceValue`);return o===rs&&!qo(r.sliceSerialize(i))?n(s):(e.enter(`characterReferenceMarker`),e.consume(s),e.exit(`characterReferenceMarker`),e.exit(`characterReference`),t)}return o(s)&&i++<a?(e.consume(s),u):n(s)}}var Rs={partial:!0,tokenize:Vs},zs={concrete:!0,name:`codeFenced`,tokenize:Bs};function Bs(e,t,n){let r=this,i={partial:!0,tokenize:x},a=0,o=0,s;return c;function c(e){return l(e)}function l(t){let n=r.events[r.events.length-1];return a=n&&n[1].type===`linePrefix`?n[2].sliceSerialize(n[1],!0).length:0,s=t,e.enter(`codeFenced`),e.enter(`codeFencedFence`),e.enter(`codeFencedFenceSequence`),u(t)}function u(t){return t===s?(o++,e.consume(t),u):o<3?n(t):(e.exit(`codeFencedFenceSequence`),Q(t)?$(e,d,`whitespace`)(t):d(t))}function d(n){return n===null||Z(n)?(e.exit(`codeFencedFence`),r.interrupt?t(n):e.check(Rs,h,b)(n)):(e.enter(`codeFencedFenceInfo`),e.enter(`chunkString`,{contentType:`string`}),f(n))}function f(t){return t===null||Z(t)?(e.exit(`chunkString`),e.exit(`codeFencedFenceInfo`),d(t)):Q(t)?(e.exit(`chunkString`),e.exit(`codeFencedFenceInfo`),$(e,p,`whitespace`)(t)):t===96&&t===s?n(t):(e.consume(t),f)}function p(t){return t===null||Z(t)?d(t):(e.enter(`codeFencedFenceMeta`),e.enter(`chunkString`,{contentType:`string`}),m(t))}function m(t){return t===null||Z(t)?(e.exit(`chunkString`),e.exit(`codeFencedFenceMeta`),d(t)):t===96&&t===s?n(t):(e.consume(t),m)}function h(t){return e.attempt(i,b,g)(t)}function g(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),_}function _(t){return a>0&&Q(t)?$(e,v,`linePrefix`,a+1)(t):v(t)}function v(t){return t===null||Z(t)?e.check(Rs,h,b)(t):(e.enter(`codeFlowValue`),y(t))}function y(t){return t===null||Z(t)?(e.exit(`codeFlowValue`),v(t)):(e.consume(t),y)}function b(n){return e.exit(`codeFenced`),t(n)}function x(e,t,n){let i=0;return a;function a(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),c}function c(t){return e.enter(`codeFencedFence`),Q(t)?$(e,l,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):l(t)}function l(t){return t===s?(e.enter(`codeFencedFenceSequence`),u(t)):n(t)}function u(t){return t===s?(i++,e.consume(t),u):i>=o?(e.exit(`codeFencedFenceSequence`),Q(t)?$(e,d,`whitespace`)(t):d(t)):n(t)}function d(r){return r===null||Z(r)?(e.exit(`codeFencedFence`),t(r)):n(r)}}}function Vs(e,t,n){let r=this;return i;function i(t){return t===null?n(t):(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),a)}function a(e){return r.parser.lazy[r.now().line]?n(e):t(e)}}var Hs={name:`codeIndented`,tokenize:Ws},Us={partial:!0,tokenize:Gs};function Ws(e,t,n){let r=this;return i;function i(t){return e.enter(`codeIndented`),$(e,a,`linePrefix`,5)(t)}function a(e){let t=r.events[r.events.length-1];return t&&t[1].type===`linePrefix`&&t[2].sliceSerialize(t[1],!0).length>=4?o(e):n(e)}function o(t){return t===null?c(t):Z(t)?e.attempt(Us,o,c)(t):(e.enter(`codeFlowValue`),s(t))}function s(t){return t===null||Z(t)?(e.exit(`codeFlowValue`),o(t)):(e.consume(t),s)}function c(n){return e.exit(`codeIndented`),t(n)}}function Gs(e,t,n){let r=this;return i;function i(t){return r.parser.lazy[r.now().line]?n(t):Z(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),i):$(e,a,`linePrefix`,5)(t)}function a(e){let a=r.events[r.events.length-1];return a&&a[1].type===`linePrefix`&&a[2].sliceSerialize(a[1],!0).length>=4?t(e):Z(e)?i(e):n(e)}}var Ks={name:`codeText`,previous:Js,resolve:qs,tokenize:Ys};function qs(e){let t=e.length-4,n=3,r,i;if((e[n][1].type===`lineEnding`||e[n][1].type===`space`)&&(e[t][1].type===`lineEnding`||e[t][1].type===`space`)){for(r=n;++r<t;)if(e[r][1].type===`codeTextData`){e[n][1].type=`codeTextPadding`,e[t][1].type=`codeTextPadding`,n+=2,t-=2;break}}for(r=n-1,t++;++r<=t;)i===void 0?r!==t&&e[r][1].type!==`lineEnding`&&(i=r):(r===t||e[r][1].type===`lineEnding`)&&(e[i][1].type=`codeTextData`,r!==i+2&&(e[i][1].end=e[r-1][1].end,e.splice(i+2,r-i-2),t-=r-i-2,r=i+2),i=void 0);return e}function Js(e){return e!==96||this.events[this.events.length-1][1].type===`characterEscape`}function Ys(e,t,n){let r=0,i,a;return o;function o(t){return e.enter(`codeText`),e.enter(`codeTextSequence`),s(t)}function s(t){return t===96?(e.consume(t),r++,s):(e.exit(`codeTextSequence`),c(t))}function c(t){return t===null?n(t):t===32?(e.enter(`space`),e.consume(t),e.exit(`space`),c):t===96?(a=e.enter(`codeTextSequence`),i=0,u(t)):Z(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),c):(e.enter(`codeTextData`),l(t))}function l(t){return t===null||t===32||t===96||Z(t)?(e.exit(`codeTextData`),c(t)):(e.consume(t),l)}function u(n){return n===96?(e.consume(n),i++,u):i===r?(e.exit(`codeTextSequence`),e.exit(`codeText`),t(n)):(a.type=`codeTextData`,l(n))}}var Xs=class{constructor(e){this.left=e?[...e]:[],this.right=[]}get(e){if(e<0||e>=this.left.length+this.right.length)throw RangeError("Cannot access index `"+e+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");return e<this.left.length?this.left[e]:this.right[this.right.length-e+this.left.length-1]}get length(){return this.left.length+this.right.length}shift(){return this.setCursor(0),this.right.pop()}slice(e,t){let n=t??1/0;return n<this.left.length?this.left.slice(e,n):e>this.left.length?this.right.slice(this.right.length-n+this.left.length,this.right.length-e+this.left.length).reverse():this.left.slice(e).concat(this.right.slice(this.right.length-n+this.left.length).reverse())}splice(e,t,n){let r=t||0;this.setCursor(Math.trunc(e));let i=this.right.splice(this.right.length-r,1/0);return n&&Zs(this.left,n),i.reverse()}pop(){return this.setCursor(1/0),this.left.pop()}push(e){this.setCursor(1/0),this.left.push(e)}pushMany(e){this.setCursor(1/0),Zs(this.left,e)}unshift(e){this.setCursor(0),this.right.push(e)}unshiftMany(e){this.setCursor(0),Zs(this.right,e.reverse())}setCursor(e){if(!(e===this.left.length||e>this.left.length&&this.right.length===0||e<0&&this.left.length===0))if(e<this.left.length){let t=this.left.splice(e,1/0);Zs(this.right,t.reverse())}else{let t=this.right.splice(this.left.length+this.right.length-e,1/0);Zs(this.left,t.reverse())}}};function Zs(e,t){let n=0;if(t.length<1e4)e.push(...t);else for(;n<t.length;)e.push(...t.slice(n,n+1e4)),n+=1e4}function Qs(e){let t={},n=-1,r,i,a,o,s,c,l,u=new Xs(e);for(;++n<u.length;){for(;n in t;)n=t[n];if(r=u.get(n),n&&r[1].type===`chunkFlow`&&u.get(n-1)[1].type===`listItemPrefix`&&(c=r[1]._tokenizer.events,a=0,a<c.length&&c[a][1].type===`lineEndingBlank`&&(a+=2),a<c.length&&c[a][1].type===`content`))for(;++a<c.length&&c[a][1].type!==`content`;)c[a][1].type===`chunkText`&&(c[a][1]._isInFirstContentOfListItem=!0,a++);if(r[0]===`enter`)r[1].contentType&&(Object.assign(t,$s(u,n)),n=t[n],l=!0);else if(r[1]._container){for(a=n,i=void 0;a--;)if(o=u.get(a),o[1].type===`lineEnding`||o[1].type===`lineEndingBlank`)o[0]===`enter`&&(i&&(u.get(i)[1].type=`lineEndingBlank`),o[1].type=`lineEnding`,i=a);else if(!(o[1].type===`linePrefix`||o[1].type===`listItemIndent`))break;i&&(r[1].end={...u.get(i)[1].start},s=u.slice(i,n),s.unshift(r),u.splice(i,n-i+1,s))}}return Jo(e,0,1/0,u.slice(0)),!l}function $s(e,t){let n=e.get(t)[1],r=e.get(t)[2],i=t-1,a=[],o=n._tokenizer;o||(o=r.parser[n.contentType](n.start),n._contentTypeTextTrailing&&(o._contentTypeTextTrailing=!0));let s=o.events,c=[],l={},u,d,f=-1,p=n,m=0,h=0,g=[h];for(;p;){for(;e.get(++i)[1]!==p;);a.push(i),p._tokenizer||(u=r.sliceStream(p),p.next||u.push(null),d&&o.defineSkip(p.start),p._isInFirstContentOfListItem&&(o._gfmTasklistFirstContentOfListItem=!0),o.write(u),p._isInFirstContentOfListItem&&(o._gfmTasklistFirstContentOfListItem=void 0)),d=p,p=p.next}for(p=n;++f<s.length;)s[f][0]===`exit`&&s[f-1][0]===`enter`&&s[f][1].type===s[f-1][1].type&&s[f][1].start.line!==s[f][1].end.line&&(h=f+1,g.push(h),p._tokenizer=void 0,p.previous=void 0,p=p.next);for(o.events=[],p?(p._tokenizer=void 0,p.previous=void 0):g.pop(),f=g.length;f--;){let t=s.slice(g[f],g[f+1]),n=a.pop();c.push([n,n+t.length-1]),e.splice(n,2,t)}for(c.reverse(),f=-1;++f<c.length;)l[m+c[f][0]]=m+c[f][1],m+=c[f][1]-c[f][0]-1;return l}var ec={resolve:nc,tokenize:rc},tc={partial:!0,tokenize:ic};function nc(e){return Qs(e),e}function rc(e,t){let n;return r;function r(t){return e.enter(`content`),n=e.enter(`chunkContent`,{contentType:`content`}),i(t)}function i(t){return t===null?a(t):Z(t)?e.check(tc,o,a)(t):(e.consume(t),i)}function a(n){return e.exit(`chunkContent`),e.exit(`content`),t(n)}function o(t){return e.consume(t),e.exit(`chunkContent`),n.next=e.enter(`chunkContent`,{contentType:`content`,previous:n}),n=n.next,i}}function ic(e,t,n){let r=this;return i;function i(t){return e.exit(`chunkContent`),e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),$(e,a,`linePrefix`)}function a(i){if(i===null||Z(i))return n(i);let a=r.events[r.events.length-1];return!r.parser.constructs.disable.null.includes(`codeIndented`)&&a&&a[1].type===`linePrefix`&&a[2].sliceSerialize(a[1],!0).length>=4?t(i):e.interrupt(r.parser.constructs.flow,n,t)(i)}}function ac(e,t,n,r,i,a,o,s,c){let l=c||1/0,u=0;return d;function d(t){return t===60?(e.enter(r),e.enter(i),e.enter(a),e.consume(t),e.exit(a),f):t===null||t===32||t===41||as(t)?n(t):(e.enter(r),e.enter(o),e.enter(s),e.enter(`chunkString`,{contentType:`string`}),h(t))}function f(n){return n===62?(e.enter(a),e.consume(n),e.exit(a),e.exit(i),e.exit(r),t):(e.enter(s),e.enter(`chunkString`,{contentType:`string`}),p(n))}function p(t){return t===62?(e.exit(`chunkString`),e.exit(s),f(t)):t===null||t===60||Z(t)?n(t):(e.consume(t),t===92?m:p)}function m(t){return t===60||t===62||t===92?(e.consume(t),p):p(t)}function h(i){return!u&&(i===null||i===41||ls(i))?(e.exit(`chunkString`),e.exit(s),e.exit(o),e.exit(r),t(i)):u<l&&i===40?(e.consume(i),u++,h):i===41?(e.consume(i),u--,h):i===null||i===32||i===40||as(i)?n(i):(e.consume(i),i===92?g:h)}function g(t){return t===40||t===41||t===92?(e.consume(t),h):h(t)}}function oc(e,t,n,r,i,a){let o=this,s=0,c;return l;function l(t){return e.enter(r),e.enter(i),e.consume(t),e.exit(i),e.enter(a),u}function u(l){return s>999||l===null||l===91||l===93&&!c||l===94&&!s&&`_hiddenFootnoteSupport`in o.parser.constructs?n(l):l===93?(e.exit(a),e.enter(i),e.consume(l),e.exit(i),e.exit(r),t):Z(l)?(e.enter(`lineEnding`),e.consume(l),e.exit(`lineEnding`),u):(e.enter(`chunkString`,{contentType:`string`}),d(l))}function d(t){return t===null||t===91||t===93||Z(t)||s++>999?(e.exit(`chunkString`),u(t)):(e.consume(t),c||=!Q(t),t===92?f:d)}function f(t){return t===91||t===92||t===93?(e.consume(t),s++,d):d(t)}}function sc(e,t,n,r,i,a){let o;return s;function s(t){return t===34||t===39||t===40?(e.enter(r),e.enter(i),e.consume(t),e.exit(i),o=t===40?41:t,c):n(t)}function c(n){return n===o?(e.enter(i),e.consume(n),e.exit(i),e.exit(r),t):(e.enter(a),l(n))}function l(t){return t===o?(e.exit(a),c(o)):t===null?n(t):Z(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),$(e,l,`linePrefix`)):(e.enter(`chunkString`,{contentType:`string`}),u(t))}function u(t){return t===o||t===null||Z(t)?(e.exit(`chunkString`),l(t)):(e.consume(t),t===92?d:u)}function d(t){return t===o||t===92?(e.consume(t),u):u(t)}}function cc(e,t){let n;return r;function r(i){return Z(i)?(e.enter(`lineEnding`),e.consume(i),e.exit(`lineEnding`),n=!0,r):Q(i)?$(e,r,n?`linePrefix`:`lineSuffix`)(i):t(i)}}var lc={name:`definition`,tokenize:dc},uc={partial:!0,tokenize:fc};function dc(e,t,n){let r=this,i;return a;function a(t){return e.enter(`definition`),o(t)}function o(t){return oc.call(r,e,s,n,`definitionLabel`,`definitionLabelMarker`,`definitionLabelString`)(t)}function s(t){return i=ts(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)),t===58?(e.enter(`definitionMarker`),e.consume(t),e.exit(`definitionMarker`),c):n(t)}function c(t){return ls(t)?cc(e,l)(t):l(t)}function l(t){return ac(e,u,n,`definitionDestination`,`definitionDestinationLiteral`,`definitionDestinationLiteralMarker`,`definitionDestinationRaw`,`definitionDestinationString`)(t)}function u(t){return e.attempt(uc,d,d)(t)}function d(t){return Q(t)?$(e,f,`whitespace`)(t):f(t)}function f(a){return a===null||Z(a)?(e.exit(`definition`),r.parser.defined.push(i),t(a)):n(a)}}function fc(e,t,n){return r;function r(t){return ls(t)?cc(e,i)(t):n(t)}function i(t){return sc(e,a,n,`definitionTitle`,`definitionTitleMarker`,`definitionTitleString`)(t)}function a(t){return Q(t)?$(e,o,`whitespace`)(t):o(t)}function o(e){return e===null||Z(e)?t(e):n(e)}}var pc={name:`hardBreakEscape`,tokenize:mc};function mc(e,t,n){return r;function r(t){return e.enter(`hardBreakEscape`),e.consume(t),i}function i(r){return Z(r)?(e.exit(`hardBreakEscape`),t(r)):n(r)}}var hc={name:`headingAtx`,resolve:gc,tokenize:_c};function gc(e,t){let n=e.length-2,r=3,i,a;return e[r][1].type===`whitespace`&&(r+=2),n-2>r&&e[n][1].type===`whitespace`&&(n-=2),e[n][1].type===`atxHeadingSequence`&&(r===n-1||n-4>r&&e[n-2][1].type===`whitespace`)&&(n-=r+1===n?2:4),n>r&&(i={type:`atxHeadingText`,start:e[r][1].start,end:e[n][1].end},a={type:`chunkText`,start:e[r][1].start,end:e[n][1].end,contentType:`text`},Jo(e,r,n-r+1,[[`enter`,i,t],[`enter`,a,t],[`exit`,a,t],[`exit`,i,t]])),e}function _c(e,t,n){let r=0;return i;function i(t){return e.enter(`atxHeading`),a(t)}function a(t){return e.enter(`atxHeadingSequence`),o(t)}function o(t){return t===35&&r++<6?(e.consume(t),o):t===null||ls(t)?(e.exit(`atxHeadingSequence`),s(t)):n(t)}function s(n){return n===35?(e.enter(`atxHeadingSequence`),c(n)):n===null||Z(n)?(e.exit(`atxHeading`),t(n)):Q(n)?$(e,s,`whitespace`)(n):(e.enter(`atxHeadingText`),l(n))}function c(t){return t===35?(e.consume(t),c):(e.exit(`atxHeadingSequence`),s(t))}function l(t){return t===null||t===35||ls(t)?(e.exit(`atxHeadingText`),s(t)):(e.consume(t),l)}}var vc=`address.article.aside.base.basefont.blockquote.body.caption.center.col.colgroup.dd.details.dialog.dir.div.dl.dt.fieldset.figcaption.figure.footer.form.frame.frameset.h1.h2.h3.h4.h5.h6.head.header.hr.html.iframe.legend.li.link.main.menu.menuitem.nav.noframes.ol.optgroup.option.p.param.search.section.summary.table.tbody.td.tfoot.th.thead.title.tr.track.ul`.split(`.`),yc=[`pre`,`script`,`style`,`textarea`],bc={concrete:!0,name:`htmlFlow`,resolveTo:Cc,tokenize:wc},xc={partial:!0,tokenize:Ec},Sc={partial:!0,tokenize:Tc};function Cc(e){let t=e.length;for(;t--&&!(e[t][0]===`enter`&&e[t][1].type===`htmlFlow`););return t>1&&e[t-2][1].type===`linePrefix`&&(e[t][1].start=e[t-2][1].start,e[t+1][1].start=e[t-2][1].start,e.splice(t-2,2)),e}function wc(e,t,n){let r=this,i,a,o,s,c;return l;function l(e){return u(e)}function u(t){return e.enter(`htmlFlow`),e.enter(`htmlFlowData`),e.consume(t),d}function d(s){return s===33?(e.consume(s),f):s===47?(e.consume(s),a=!0,h):s===63?(e.consume(s),i=3,r.interrupt?t:M):ns(s)?(e.consume(s),o=String.fromCharCode(s),g):n(s)}function f(a){return a===45?(e.consume(a),i=2,p):a===91?(e.consume(a),i=5,s=0,m):ns(a)?(e.consume(a),i=4,r.interrupt?t:M):n(a)}function p(i){return i===45?(e.consume(i),r.interrupt?t:M):n(i)}function m(i){return i===`CDATA[`.charCodeAt(s++)?(e.consume(i),s===6?r.interrupt?t:O:m):n(i)}function h(t){return ns(t)?(e.consume(t),o=String.fromCharCode(t),g):n(t)}function g(s){if(s===null||s===47||s===62||ls(s)){let c=s===47,l=o.toLowerCase();return!c&&!a&&yc.includes(l)?(i=1,r.interrupt?t(s):O(s)):vc.includes(o.toLowerCase())?(i=6,c?(e.consume(s),_):r.interrupt?t(s):O(s)):(i=7,r.interrupt&&!r.parser.lazy[r.now().line]?n(s):a?v(s):y(s))}return s===45||rs(s)?(e.consume(s),o+=String.fromCharCode(s),g):n(s)}function _(i){return i===62?(e.consume(i),r.interrupt?t:O):n(i)}function v(t){return Q(t)?(e.consume(t),v):E(t)}function y(t){return t===47?(e.consume(t),E):t===58||t===95||ns(t)?(e.consume(t),b):Q(t)?(e.consume(t),y):E(t)}function b(t){return t===45||t===46||t===58||t===95||rs(t)?(e.consume(t),b):x(t)}function x(t){return t===61?(e.consume(t),S):Q(t)?(e.consume(t),x):y(t)}function S(t){return t===null||t===60||t===61||t===62||t===96?n(t):t===34||t===39?(e.consume(t),c=t,C):Q(t)?(e.consume(t),S):w(t)}function C(t){return t===c?(e.consume(t),c=null,T):t===null||Z(t)?n(t):(e.consume(t),C)}function w(t){return t===null||t===34||t===39||t===47||t===60||t===61||t===62||t===96||ls(t)?x(t):(e.consume(t),w)}function T(e){return e===47||e===62||Q(e)?y(e):n(e)}function E(t){return t===62?(e.consume(t),D):n(t)}function D(t){return t===null||Z(t)?O(t):Q(t)?(e.consume(t),D):n(t)}function O(t){return t===45&&i===2?(e.consume(t),A):t===60&&i===1?(e.consume(t),j):t===62&&i===4?(e.consume(t),ie):t===63&&i===3?(e.consume(t),M):t===93&&i===5?(e.consume(t),re):Z(t)&&(i===6||i===7)?(e.exit(`htmlFlowData`),e.check(xc,ae,ee)(t)):t===null||Z(t)?(e.exit(`htmlFlowData`),ee(t)):(e.consume(t),O)}function ee(t){return e.check(Sc,k,ae)(t)}function k(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),te}function te(t){return t===null||Z(t)?ee(t):(e.enter(`htmlFlowData`),O(t))}function A(t){return t===45?(e.consume(t),M):O(t)}function j(t){return t===47?(e.consume(t),o=``,ne):O(t)}function ne(t){if(t===62){let n=o.toLowerCase();return yc.includes(n)?(e.consume(t),ie):O(t)}return ns(t)&&o.length<8?(e.consume(t),o+=String.fromCharCode(t),ne):O(t)}function re(t){return t===93?(e.consume(t),M):O(t)}function M(t){return t===62?(e.consume(t),ie):t===45&&i===2?(e.consume(t),M):O(t)}function ie(t){return t===null||Z(t)?(e.exit(`htmlFlowData`),ae(t)):(e.consume(t),ie)}function ae(n){return e.exit(`htmlFlow`),t(n)}}function Tc(e,t,n){let r=this;return i;function i(t){return Z(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),a):n(t)}function a(e){return r.parser.lazy[r.now().line]?n(e):t(e)}}function Ec(e,t,n){return r;function r(r){return e.enter(`lineEnding`),e.consume(r),e.exit(`lineEnding`),e.attempt(Os,t,n)}}var Dc={name:`htmlText`,tokenize:Oc};function Oc(e,t,n){let r=this,i,a,o;return s;function s(t){return e.enter(`htmlText`),e.enter(`htmlTextData`),e.consume(t),c}function c(t){return t===33?(e.consume(t),l):t===47?(e.consume(t),x):t===63?(e.consume(t),y):ns(t)?(e.consume(t),w):n(t)}function l(t){return t===45?(e.consume(t),u):t===91?(e.consume(t),a=0,m):ns(t)?(e.consume(t),v):n(t)}function u(t){return t===45?(e.consume(t),p):n(t)}function d(t){return t===null?n(t):t===45?(e.consume(t),f):Z(t)?(o=d,j(t)):(e.consume(t),d)}function f(t){return t===45?(e.consume(t),p):d(t)}function p(e){return e===62?A(e):e===45?f(e):d(e)}function m(t){return t===`CDATA[`.charCodeAt(a++)?(e.consume(t),a===6?h:m):n(t)}function h(t){return t===null?n(t):t===93?(e.consume(t),g):Z(t)?(o=h,j(t)):(e.consume(t),h)}function g(t){return t===93?(e.consume(t),_):h(t)}function _(t){return t===62?A(t):t===93?(e.consume(t),_):h(t)}function v(t){return t===null||t===62?A(t):Z(t)?(o=v,j(t)):(e.consume(t),v)}function y(t){return t===null?n(t):t===63?(e.consume(t),b):Z(t)?(o=y,j(t)):(e.consume(t),y)}function b(e){return e===62?A(e):y(e)}function x(t){return ns(t)?(e.consume(t),S):n(t)}function S(t){return t===45||rs(t)?(e.consume(t),S):C(t)}function C(t){return Z(t)?(o=C,j(t)):Q(t)?(e.consume(t),C):A(t)}function w(t){return t===45||rs(t)?(e.consume(t),w):t===47||t===62||ls(t)?T(t):n(t)}function T(t){return t===47?(e.consume(t),A):t===58||t===95||ns(t)?(e.consume(t),E):Z(t)?(o=T,j(t)):Q(t)?(e.consume(t),T):A(t)}function E(t){return t===45||t===46||t===58||t===95||rs(t)?(e.consume(t),E):D(t)}function D(t){return t===61?(e.consume(t),O):Z(t)?(o=D,j(t)):Q(t)?(e.consume(t),D):T(t)}function O(t){return t===null||t===60||t===61||t===62||t===96?n(t):t===34||t===39?(e.consume(t),i=t,ee):Z(t)?(o=O,j(t)):Q(t)?(e.consume(t),O):(e.consume(t),k)}function ee(t){return t===i?(e.consume(t),i=void 0,te):t===null?n(t):Z(t)?(o=ee,j(t)):(e.consume(t),ee)}function k(t){return t===null||t===34||t===39||t===60||t===61||t===96?n(t):t===47||t===62||ls(t)?T(t):(e.consume(t),k)}function te(e){return e===47||e===62||ls(e)?T(e):n(e)}function A(r){return r===62?(e.consume(r),e.exit(`htmlTextData`),e.exit(`htmlText`),t):n(r)}function j(t){return e.exit(`htmlTextData`),e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),ne}function ne(t){return Q(t)?$(e,re,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):re(t)}function re(t){return e.enter(`htmlTextData`),o(t)}}var kc={name:`labelEnd`,resolveAll:Nc,resolveTo:Pc,tokenize:Fc},Ac={tokenize:Ic},jc={tokenize:Lc},Mc={tokenize:Rc};function Nc(e){let t=-1,n=[];for(;++t<e.length;){let r=e[t][1];if(n.push(e[t]),r.type===`labelImage`||r.type===`labelLink`||r.type===`labelEnd`){let e=r.type===`labelImage`?4:2;r.type=`data`,t+=e}}return e.length!==n.length&&Jo(e,0,e.length,n),e}function Pc(e,t){let n=e.length,r=0,i,a,o,s;for(;n--;)if(i=e[n][1],a){if(i.type===`link`||i.type===`labelLink`&&i._inactive)break;e[n][0]===`enter`&&i.type===`labelLink`&&(i._inactive=!0)}else if(o){if(e[n][0]===`enter`&&(i.type===`labelImage`||i.type===`labelLink`)&&!i._balanced&&(a=n,i.type!==`labelLink`)){r=2;break}}else i.type===`labelEnd`&&(o=n);let c={type:e[a][1].type===`labelLink`?`link`:`image`,start:{...e[a][1].start},end:{...e[e.length-1][1].end}},l={type:`label`,start:{...e[a][1].start},end:{...e[o][1].end}},u={type:`labelText`,start:{...e[a+r+2][1].end},end:{...e[o-2][1].start}};return s=[[`enter`,c,t],[`enter`,l,t]],s=Yo(s,e.slice(a+1,a+r+3)),s=Yo(s,[[`enter`,u,t]]),s=Yo(s,xs(t.parser.constructs.insideSpan.null,e.slice(a+r+4,o-3),t)),s=Yo(s,[[`exit`,u,t],e[o-2],e[o-1],[`exit`,l,t]]),s=Yo(s,e.slice(o+1)),s=Yo(s,[[`exit`,c,t]]),Jo(e,a,e.length,s),e}function Fc(e,t,n){let r=this,i=r.events.length,a,o;for(;i--;)if((r.events[i][1].type===`labelImage`||r.events[i][1].type===`labelLink`)&&!r.events[i][1]._balanced){a=r.events[i][1];break}return s;function s(t){return a?a._inactive?d(t):(o=r.parser.defined.includes(ts(r.sliceSerialize({start:a.end,end:r.now()}))),e.enter(`labelEnd`),e.enter(`labelMarker`),e.consume(t),e.exit(`labelMarker`),e.exit(`labelEnd`),c):n(t)}function c(t){return t===40?e.attempt(Ac,u,o?u:d)(t):t===91?e.attempt(jc,u,o?l:d)(t):o?u(t):d(t)}function l(t){return e.attempt(Mc,u,d)(t)}function u(e){return t(e)}function d(e){return a._balanced=!0,n(e)}}function Ic(e,t,n){return r;function r(t){return e.enter(`resource`),e.enter(`resourceMarker`),e.consume(t),e.exit(`resourceMarker`),i}function i(t){return ls(t)?cc(e,a)(t):a(t)}function a(t){return t===41?u(t):ac(e,o,s,`resourceDestination`,`resourceDestinationLiteral`,`resourceDestinationLiteralMarker`,`resourceDestinationRaw`,`resourceDestinationString`,32)(t)}function o(t){return ls(t)?cc(e,c)(t):u(t)}function s(e){return n(e)}function c(t){return t===34||t===39||t===40?sc(e,l,n,`resourceTitle`,`resourceTitleMarker`,`resourceTitleString`)(t):u(t)}function l(t){return ls(t)?cc(e,u)(t):u(t)}function u(r){return r===41?(e.enter(`resourceMarker`),e.consume(r),e.exit(`resourceMarker`),e.exit(`resource`),t):n(r)}}function Lc(e,t,n){let r=this;return i;function i(t){return oc.call(r,e,a,o,`reference`,`referenceMarker`,`referenceString`)(t)}function a(e){return r.parser.defined.includes(ts(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)))?t(e):n(e)}function o(e){return n(e)}}function Rc(e,t,n){return r;function r(t){return e.enter(`reference`),e.enter(`referenceMarker`),e.consume(t),e.exit(`referenceMarker`),i}function i(r){return r===93?(e.enter(`referenceMarker`),e.consume(r),e.exit(`referenceMarker`),e.exit(`reference`),t):n(r)}}var zc={name:`labelStartImage`,resolveAll:kc.resolveAll,tokenize:Bc};function Bc(e,t,n){let r=this;return i;function i(t){return e.enter(`labelImage`),e.enter(`labelImageMarker`),e.consume(t),e.exit(`labelImageMarker`),a}function a(t){return t===91?(e.enter(`labelMarker`),e.consume(t),e.exit(`labelMarker`),e.exit(`labelImage`),o):n(t)}function o(e){return e===94&&`_hiddenFootnoteSupport`in r.parser.constructs?n(e):t(e)}}var Vc={name:`labelStartLink`,resolveAll:kc.resolveAll,tokenize:Hc};function Hc(e,t,n){let r=this;return i;function i(t){return e.enter(`labelLink`),e.enter(`labelMarker`),e.consume(t),e.exit(`labelMarker`),e.exit(`labelLink`),a}function a(e){return e===94&&`_hiddenFootnoteSupport`in r.parser.constructs?n(e):t(e)}}var Uc={name:`lineEnding`,tokenize:Wc};function Wc(e,t){return n;function n(n){return e.enter(`lineEnding`),e.consume(n),e.exit(`lineEnding`),$(e,t,`linePrefix`)}}var Gc={name:`thematicBreak`,tokenize:Kc};function Kc(e,t,n){let r=0,i;return a;function a(t){return e.enter(`thematicBreak`),o(t)}function o(e){return i=e,s(e)}function s(a){return a===i?(e.enter(`thematicBreakSequence`),c(a)):r>=3&&(a===null||Z(a))?(e.exit(`thematicBreak`),t(a)):n(a)}function c(t){return t===i?(e.consume(t),r++,c):(e.exit(`thematicBreakSequence`),Q(t)?$(e,s,`whitespace`)(t):s(t))}}var qc={continuation:{tokenize:Zc},exit:$c,name:`list`,tokenize:Xc},Jc={partial:!0,tokenize:el},Yc={partial:!0,tokenize:Qc};function Xc(e,t,n){let r=this,i=r.events[r.events.length-1],a=i&&i[1].type===`linePrefix`?i[2].sliceSerialize(i[1],!0).length:0,o=0;return s;function s(t){let i=r.containerState.type||(t===42||t===43||t===45?`listUnordered`:`listOrdered`);if(i===`listUnordered`?!r.containerState.marker||t===r.containerState.marker:os(t)){if(r.containerState.type||(r.containerState.type=i,e.enter(i,{_container:!0})),i===`listUnordered`)return e.enter(`listItemPrefix`),t===42||t===45?e.check(Gc,n,l)(t):l(t);if(!r.interrupt||t===49)return e.enter(`listItemPrefix`),e.enter(`listItemValue`),c(t)}return n(t)}function c(t){return os(t)&&++o<10?(e.consume(t),c):(!r.interrupt||o<2)&&(r.containerState.marker?t===r.containerState.marker:t===41||t===46)?(e.exit(`listItemValue`),l(t)):n(t)}function l(t){return e.enter(`listItemMarker`),e.consume(t),e.exit(`listItemMarker`),r.containerState.marker=r.containerState.marker||t,e.check(Os,r.interrupt?n:u,e.attempt(Jc,f,d))}function u(e){return r.containerState.initialBlankLine=!0,a++,f(e)}function d(t){return Q(t)?(e.enter(`listItemPrefixWhitespace`),e.consume(t),e.exit(`listItemPrefixWhitespace`),f):n(t)}function f(n){return r.containerState.size=a+r.sliceSerialize(e.exit(`listItemPrefix`),!0).length,t(n)}}function Zc(e,t,n){let r=this;return r.containerState._closeFlow=void 0,e.check(Os,i,a);function i(n){return r.containerState.furtherBlankLines=r.containerState.furtherBlankLines||r.containerState.initialBlankLine,$(e,t,`listItemIndent`,r.containerState.size+1)(n)}function a(n){return r.containerState.furtherBlankLines||!Q(n)?(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,o(n)):(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,e.attempt(Yc,t,o)(n))}function o(i){return r.containerState._closeFlow=!0,r.interrupt=void 0,$(e,e.attempt(qc,t,n),`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(i)}}function Qc(e,t,n){let r=this;return $(e,i,`listItemIndent`,r.containerState.size+1);function i(e){let i=r.events[r.events.length-1];return i&&i[1].type===`listItemIndent`&&i[2].sliceSerialize(i[1],!0).length===r.containerState.size?t(e):n(e)}}function $c(e){e.exit(this.containerState.type)}function el(e,t,n){let r=this;return $(e,i,`listItemPrefixWhitespace`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:5);function i(e){let i=r.events[r.events.length-1];return!Q(e)&&i&&i[1].type===`listItemPrefixWhitespace`?t(e):n(e)}}var tl={name:`setextUnderline`,resolveTo:nl,tokenize:rl};function nl(e,t){let n=e.length,r,i,a;for(;n--;)if(e[n][0]===`enter`){if(e[n][1].type===`content`){r=n;break}e[n][1].type===`paragraph`&&(i=n)}else e[n][1].type===`content`&&e.splice(n,1),!a&&e[n][1].type===`definition`&&(a=n);let o={type:`setextHeading`,start:{...e[r][1].start},end:{...e[e.length-1][1].end}};return e[i][1].type=`setextHeadingText`,a?(e.splice(i,0,[`enter`,o,t]),e.splice(a+1,0,[`exit`,e[r][1],t]),e[r][1].end={...e[a][1].end}):e[r][1]=o,e.push([`exit`,o,t]),e}function rl(e,t,n){let r=this,i;return a;function a(t){let a=r.events.length,s;for(;a--;)if(r.events[a][1].type!==`lineEnding`&&r.events[a][1].type!==`linePrefix`&&r.events[a][1].type!==`content`){s=r.events[a][1].type===`paragraph`;break}return!r.parser.lazy[r.now().line]&&(r.interrupt||s)?(e.enter(`setextHeadingLine`),i=t,o(t)):n(t)}function o(t){return e.enter(`setextHeadingLineSequence`),s(t)}function s(t){return t===i?(e.consume(t),s):(e.exit(`setextHeadingLineSequence`),Q(t)?$(e,c,`lineSuffix`)(t):c(t))}function c(r){return r===null||Z(r)?(e.exit(`setextHeadingLine`),t(r)):n(r)}}var il={tokenize:al};function al(e){let t=this,n=e.attempt(Os,r,e.attempt(this.parser.constructs.flowInitial,i,$(e,e.attempt(this.parser.constructs.flow,i,e.attempt(ec,i)),`linePrefix`)));return n;function r(r){if(r===null){e.consume(r);return}return e.enter(`lineEndingBlank`),e.consume(r),e.exit(`lineEndingBlank`),t.currentConstruct=void 0,n}function i(r){if(r===null){e.consume(r);return}return e.enter(`lineEnding`),e.consume(r),e.exit(`lineEnding`),t.currentConstruct=void 0,n}}var ol={resolveAll:ul()},sl=ll(`string`),cl=ll(`text`);function ll(e){return{resolveAll:ul(e===`text`?dl:void 0),tokenize:t};function t(t){let n=this,r=this.parser.constructs[e],i=t.attempt(r,a,o);return a;function a(e){return c(e)?i(e):o(e)}function o(e){if(e===null){t.consume(e);return}return t.enter(`data`),t.consume(e),s}function s(e){return c(e)?(t.exit(`data`),i(e)):(t.consume(e),s)}function c(e){if(e===null)return!0;let t=r[e],i=-1;if(t)for(;++i<t.length;){let e=t[i];if(!e.previous||e.previous.call(n,n.previous))return!0}return!1}}}function ul(e){return t;function t(t,n){let r=-1,i;for(;++r<=t.length;)i===void 0?t[r]&&t[r][1].type===`data`&&(i=r,r++):(!t[r]||t[r][1].type!==`data`)&&(r!==i+2&&(t[i][1].end=t[r-1][1].end,t.splice(i+2,r-i-2),r=i+2),i=void 0);return e?e(t,n):t}}function dl(e,t){let n=0;for(;++n<=e.length;)if((n===e.length||e[n][1].type===`lineEnding`)&&e[n-1][1].type===`data`){let r=e[n-1][1],i=t.sliceStream(r),a=i.length,o=-1,s=0,c;for(;a--;){let e=i[a];if(typeof e==`string`){for(o=e.length;e.charCodeAt(o-1)===32;)s++,o--;if(o)break;o=-1}else if(e===-2)c=!0,s++;else if(e!==-1){a++;break}}if(t._contentTypeTextTrailing&&n===e.length&&(s=0),s){let i={type:n===e.length||c||s<2?`lineSuffix`:`hardBreakTrailing`,start:{_bufferIndex:a?o:r.start._bufferIndex+o,_index:r.start._index+a,line:r.end.line,column:r.end.column-s,offset:r.end.offset-s},end:{...r.end}};r.end={...i.start},r.start.offset===r.end.offset?Object.assign(r,i):(e.splice(n,0,[`enter`,i,t],[`exit`,i,t]),n+=2)}n++}return e}var fl=e({attentionMarkers:()=>bl,contentInitial:()=>ml,disable:()=>xl,document:()=>pl,flow:()=>gl,flowInitial:()=>hl,insideSpan:()=>yl,string:()=>_l,text:()=>vl}),pl={42:qc,43:qc,45:qc,48:qc,49:qc,50:qc,51:qc,52:qc,53:qc,54:qc,55:qc,56:qc,57:qc,62:As},ml={91:lc},hl={[-2]:Hs,[-1]:Hs,32:Hs},gl={35:hc,42:Gc,45:[tl,Gc],60:bc,61:tl,95:Gc,96:zs,126:zs},_l={38:Is,92:Ps},vl={[-5]:Uc,[-4]:Uc,[-3]:Uc,33:zc,38:Is,42:Ss,60:[Es,Dc],91:Vc,92:[pc,Ps],93:kc,95:Ss,96:Ks},yl={null:[Ss,ol]},bl={null:[42,95]},xl={null:[]};function Sl(e,t,n){let r={_bufferIndex:-1,_index:0,line:n&&n.line||1,column:n&&n.column||1,offset:n&&n.offset||0},i={},a=[],o=[],s=[],c={attempt:C(x),check:C(S),consume:v,enter:y,exit:b,interrupt:C(S,{interrupt:!0})},l={code:null,containerState:{},defineSkip:h,events:[],now:m,parser:e,previous:null,sliceSerialize:f,sliceStream:p,write:d},u=t.tokenize.call(l,c);return t.resolveAll&&a.push(t),l;function d(e){return o=Yo(o,e),g(),o[o.length-1]===null?(w(t,0),l.events=xs(a,l.events,l),l.events):[]}function f(e,t){return wl(p(e),t)}function p(e){return Cl(o,e)}function m(){let{_bufferIndex:e,_index:t,line:n,column:i,offset:a}=r;return{_bufferIndex:e,_index:t,line:n,column:i,offset:a}}function h(e){i[e.line]=e.column,E()}function g(){let e;for(;r._index<o.length;){let t=o[r._index];if(typeof t==`string`)for(e=r._index,r._bufferIndex<0&&(r._bufferIndex=0);r._index===e&&r._bufferIndex<t.length;)_(t.charCodeAt(r._bufferIndex));else _(t)}}function _(e){u=u(e)}function v(e){Z(e)?(r.line++,r.column=1,r.offset+=e===-3?2:1,E()):e!==-1&&(r.column++,r.offset++),r._bufferIndex<0?r._index++:(r._bufferIndex++,r._bufferIndex===o[r._index].length&&(r._bufferIndex=-1,r._index++)),l.previous=e}function y(e,t){let n=t||{};return n.type=e,n.start=m(),l.events.push([`enter`,n,l]),s.push(n),n}function b(e){let t=s.pop();return t.end=m(),l.events.push([`exit`,t,l]),t}function x(e,t){w(e,t.from)}function S(e,t){t.restore()}function C(e,t){return n;function n(n,r,i){let a,o,s,u;return Array.isArray(n)?f(n):`tokenize`in n?f([n]):d(n);function d(e){return t;function t(t){let n=t!==null&&e[t],r=t!==null&&e.null;return f([...Array.isArray(n)?n:n?[n]:[],...Array.isArray(r)?r:r?[r]:[]])(t)}}function f(e){return a=e,o=0,e.length===0?i:p(e[o])}function p(e){return n;function n(n){return u=T(),s=e,e.partial||(l.currentConstruct=e),e.name&&l.parser.constructs.disable.null.includes(e.name)?h(n):e.tokenize.call(t?Object.assign(Object.create(l),t):l,c,m,h)(n)}}function m(t){return e(s,u),r}function h(e){return u.restore(),++o<a.length?p(a[o]):i}}}function w(e,t){e.resolveAll&&!a.includes(e)&&a.push(e),e.resolve&&Jo(l.events,t,l.events.length-t,e.resolve(l.events.slice(t),l)),e.resolveTo&&(l.events=e.resolveTo(l.events,l))}function T(){let e=m(),t=l.previous,n=l.currentConstruct,i=l.events.length,a=Array.from(s);return{from:i,restore:o};function o(){r=e,l.previous=t,l.currentConstruct=n,l.events.length=i,s=a,E()}}function E(){r.line in i&&r.column<2&&(r.column=i[r.line],r.offset+=i[r.line]-1)}}function Cl(e,t){let n=t.start._index,r=t.start._bufferIndex,i=t.end._index,a=t.end._bufferIndex,o;if(n===i)o=[e[n].slice(r,a)];else{if(o=e.slice(n,i),r>-1){let e=o[0];typeof e==`string`?o[0]=e.slice(r):o.shift()}a>0&&o.push(e[i].slice(0,a))}return o}function wl(e,t){let n=-1,r=[],i;for(;++n<e.length;){let a=e[n],o;if(typeof a==`string`)o=a;else switch(a){case-5:o=`\r`;break;case-4:o=`
3
+ `;break;case-3:o=`\r
4
+ `;break;case-2:o=t?` `:` `;break;case-1:if(!t&&i)continue;o=` `;break;default:o=String.fromCharCode(a)}i=a===-2,r.push(o)}return r.join(``)}function Tl(e){let t={constructs:Zo([fl,...(e||{}).extensions||[]]),content:n(ms),defined:[],document:n(gs),flow:n(il),lazy:{},string:n(sl),text:n(cl)};return t;function n(e){return n;function n(n){return Sl(t,e,n)}}}function El(e){for(;!Qs(e););return e}var Dl=/[\0\t\n\r]/g;function Ol(){let e=1,t=``,n=!0,r;return i;function i(i,a,o){let s=[],c,l,u,d,f;for(i=t+(typeof i==`string`?i.toString():new TextDecoder(a||void 0).decode(i)),u=0,t=``,n&&=(i.charCodeAt(0)===65279&&u++,void 0);u<i.length;){if(Dl.lastIndex=u,c=Dl.exec(i),d=c&&c.index!==void 0?c.index:i.length,f=i.charCodeAt(d),!c){t=i.slice(u);break}if(f===10&&u===d&&r)s.push(-3),r=void 0;else switch(r&&=(s.push(-5),void 0),u<d&&(s.push(i.slice(u,d)),e+=d-u),f){case 0:s.push(65533),e++;break;case 9:for(l=Math.ceil(e/4)*4,s.push(-2);e++<l;)s.push(-1);break;case 10:s.push(-4),e=1;break;default:r=!0,e=1}u=d+1}return o&&(r&&s.push(-5),t&&s.push(t),s.push(null)),s}}var kl=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function Al(e){return e.replace(kl,jl)}function jl(e,t,n){if(t)return t;if(n.charCodeAt(0)===35){let e=n.charCodeAt(1),t=e===120||e===88;return es(n.slice(t?2:1),t?16:10)}return qo(n)||e}var Ml={}.hasOwnProperty;function Nl(e,t,n){return t&&typeof t==`object`&&(n=t,t=void 0),Pl(n)(El(Tl(n).document().write(Ol()(e,t,!0))))}function Pl(e){let t={transforms:[],canContainEols:[`emphasis`,`fragment`,`heading`,`paragraph`,`strong`],enter:{autolink:a(Se),autolinkProtocol:T,autolinkEmail:T,atxHeading:a(ve),blockQuote:a(pe),characterEscape:T,characterReference:T,codeFenced:a(me),codeFencedFenceInfo:o,codeFencedFenceMeta:o,codeIndented:a(me,o),codeText:a(he,o),codeTextData:T,data:T,codeFlowValue:T,definition:a(ge),definitionDestinationString:o,definitionLabelString:o,definitionTitleString:o,emphasis:a(_e),hardBreakEscape:a(ye),hardBreakTrailing:a(ye),htmlFlow:a(be,o),htmlFlowData:T,htmlText:a(be,o),htmlTextData:T,image:a(xe),label:o,link:a(Se),listItem:a(we),listItemValue:f,listOrdered:a(Ce,d),listUnordered:a(Ce),paragraph:a(Te),reference:oe,referenceString:o,resourceDestinationString:o,resourceTitleString:o,setextHeading:a(ve),strong:a(Ee),thematicBreak:a(Oe)},exit:{atxHeading:c(),atxHeadingSequence:x,autolink:c(),autolinkEmail:fe,autolinkProtocol:de,blockQuote:c(),characterEscapeValue:E,characterReferenceMarkerHexadecimal:ce,characterReferenceMarkerNumeric:ce,characterReferenceValue:le,characterReference:ue,codeFenced:c(g),codeFencedFence:h,codeFencedFenceInfo:p,codeFencedFenceMeta:m,codeFlowValue:E,codeIndented:c(_),codeText:c(te),codeTextData:E,data:E,definition:c(),definitionDestinationString:b,definitionLabelString:v,definitionTitleString:y,emphasis:c(),hardBreakEscape:c(O),hardBreakTrailing:c(O),htmlFlow:c(ee),htmlFlowData:E,htmlText:c(k),htmlTextData:E,image:c(j),label:re,labelText:ne,lineEnding:D,link:c(A),listItem:c(),listOrdered:c(),listUnordered:c(),paragraph:c(),referenceString:se,resourceDestinationString:M,resourceTitleString:ie,resource:ae,setextHeading:c(w),setextHeadingLineSequence:C,setextHeadingText:S,strong:c(),thematicBreak:c()}};Il(t,(e||{}).mdastExtensions||[]);let n={};return r;function r(e){let r={type:`root`,children:[]},a={stack:[r],tokenStack:[],config:t,enter:s,exit:l,buffer:o,resume:u,data:n},c=[],d=-1;for(;++d<e.length;)(e[d][1].type===`listOrdered`||e[d][1].type===`listUnordered`)&&(e[d][0]===`enter`?c.push(d):d=i(e,c.pop(),d));for(d=-1;++d<e.length;){let n=t[e[d][0]];Ml.call(n,e[d][1].type)&&n[e[d][1].type].call(Object.assign({sliceSerialize:e[d][2].sliceSerialize},a),e[d][1])}if(a.tokenStack.length>0){let e=a.tokenStack[a.tokenStack.length-1];(e[1]||Rl).call(a,void 0,e[0])}for(r.position={start:Fl(e.length>0?e[0][1].start:{line:1,column:1,offset:0}),end:Fl(e.length>0?e[e.length-2][1].end:{line:1,column:1,offset:0})},d=-1;++d<t.transforms.length;)r=t.transforms[d](r)||r;return r}function i(e,t,n){let r=t-1,i=-1,a=!1,o,s,c,l;for(;++r<=n;){let t=e[r];switch(t[1].type){case`listUnordered`:case`listOrdered`:case`blockQuote`:t[0]===`enter`?i++:i--,l=void 0;break;case`lineEndingBlank`:t[0]===`enter`&&(o&&!l&&!i&&!c&&(c=r),l=void 0);break;case`linePrefix`:case`listItemValue`:case`listItemMarker`:case`listItemPrefix`:case`listItemPrefixWhitespace`:break;default:l=void 0}if(!i&&t[0]===`enter`&&t[1].type===`listItemPrefix`||i===-1&&t[0]===`exit`&&(t[1].type===`listUnordered`||t[1].type===`listOrdered`)){if(o){let i=r;for(s=void 0;i--;){let t=e[i];if(t[1].type===`lineEnding`||t[1].type===`lineEndingBlank`){if(t[0]===`exit`)continue;s&&(e[s][1].type=`lineEndingBlank`,a=!0),t[1].type=`lineEnding`,s=i}else if(!(t[1].type===`linePrefix`||t[1].type===`blockQuotePrefix`||t[1].type===`blockQuotePrefixWhitespace`||t[1].type===`blockQuoteMarker`||t[1].type===`listItemIndent`))break}c&&(!s||c<s)&&(o._spread=!0),o.end=Object.assign({},s?e[s][1].start:t[1].end),e.splice(s||r,0,[`exit`,o,t[2]]),r++,n++}if(t[1].type===`listItemPrefix`){let i={type:`listItem`,_spread:!1,start:Object.assign({},t[1].start),end:void 0};o=i,e.splice(r,0,[`enter`,i,t[2]]),r++,n++,c=void 0,l=!0}}}return e[t][1]._spread=a,n}function a(e,t){return n;function n(n){s.call(this,e(n),n),t&&t.call(this,n)}}function o(){this.stack.push({type:`fragment`,children:[]})}function s(e,t,n){this.stack[this.stack.length-1].children.push(e),this.stack.push(e),this.tokenStack.push([t,n||void 0]),e.position={start:Fl(t.start),end:void 0}}function c(e){return t;function t(t){e&&e.call(this,t),l.call(this,t)}}function l(e,t){let n=this.stack.pop(),r=this.tokenStack.pop();if(r)r[0].type!==e.type&&(t?t.call(this,e,r[0]):(r[1]||Rl).call(this,e,r[0]));else throw Error("Cannot close `"+e.type+"` ("+ao({start:e.start,end:e.end})+`): it’s not open`);n.position.end=Fl(e.end)}function u(){return Ho(this.stack.pop())}function d(){this.data.expectingFirstListItemValue=!0}function f(e){if(this.data.expectingFirstListItemValue){let t=this.stack[this.stack.length-2];t.start=Number.parseInt(this.sliceSerialize(e),10),this.data.expectingFirstListItemValue=void 0}}function p(){let e=this.resume(),t=this.stack[this.stack.length-1];t.lang=e}function m(){let e=this.resume(),t=this.stack[this.stack.length-1];t.meta=e}function h(){this.data.flowCodeInside||(this.buffer(),this.data.flowCodeInside=!0)}function g(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e.replace(/^(\r?\n|\r)|(\r?\n|\r)$/g,``),this.data.flowCodeInside=void 0}function _(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e.replace(/(\r?\n|\r)$/g,``)}function v(e){let t=this.resume(),n=this.stack[this.stack.length-1];n.label=t,n.identifier=ts(this.sliceSerialize(e)).toLowerCase()}function y(){let e=this.resume(),t=this.stack[this.stack.length-1];t.title=e}function b(){let e=this.resume(),t=this.stack[this.stack.length-1];t.url=e}function x(e){let t=this.stack[this.stack.length-1];t.depth||=this.sliceSerialize(e).length}function S(){this.data.setextHeadingSlurpLineEnding=!0}function C(e){let t=this.stack[this.stack.length-1];t.depth=this.sliceSerialize(e).codePointAt(0)===61?1:2}function w(){this.data.setextHeadingSlurpLineEnding=void 0}function T(e){let t=this.stack[this.stack.length-1].children,n=t[t.length-1];(!n||n.type!==`text`)&&(n=De(),n.position={start:Fl(e.start),end:void 0},t.push(n)),this.stack.push(n)}function E(e){let t=this.stack.pop();t.value+=this.sliceSerialize(e),t.position.end=Fl(e.end)}function D(e){let n=this.stack[this.stack.length-1];if(this.data.atHardBreak){let t=n.children[n.children.length-1];t.position.end=Fl(e.end),this.data.atHardBreak=void 0;return}!this.data.setextHeadingSlurpLineEnding&&t.canContainEols.includes(n.type)&&(T.call(this,e),E.call(this,e))}function O(){this.data.atHardBreak=!0}function ee(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e}function k(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e}function te(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e}function A(){let e=this.stack[this.stack.length-1];if(this.data.inReference){let t=this.data.referenceType||`shortcut`;e.type+=`Reference`,e.referenceType=t,delete e.url,delete e.title}else delete e.identifier,delete e.label;this.data.referenceType=void 0}function j(){let e=this.stack[this.stack.length-1];if(this.data.inReference){let t=this.data.referenceType||`shortcut`;e.type+=`Reference`,e.referenceType=t,delete e.url,delete e.title}else delete e.identifier,delete e.label;this.data.referenceType=void 0}function ne(e){let t=this.sliceSerialize(e),n=this.stack[this.stack.length-2];n.label=Al(t),n.identifier=ts(t).toLowerCase()}function re(){let e=this.stack[this.stack.length-1],t=this.resume(),n=this.stack[this.stack.length-1];this.data.inReference=!0,n.type===`link`?n.children=e.children:n.alt=t}function M(){let e=this.resume(),t=this.stack[this.stack.length-1];t.url=e}function ie(){let e=this.resume(),t=this.stack[this.stack.length-1];t.title=e}function ae(){this.data.inReference=void 0}function oe(){this.data.referenceType=`collapsed`}function se(e){let t=this.resume(),n=this.stack[this.stack.length-1];n.label=t,n.identifier=ts(this.sliceSerialize(e)).toLowerCase(),this.data.referenceType=`full`}function ce(e){this.data.characterReferenceType=e.type}function le(e){let t=this.sliceSerialize(e),n=this.data.characterReferenceType,r;n?(r=es(t,n===`characterReferenceMarkerNumeric`?10:16),this.data.characterReferenceType=void 0):r=qo(t);let i=this.stack[this.stack.length-1];i.value+=r}function ue(e){let t=this.stack.pop();t.position.end=Fl(e.end)}function de(e){E.call(this,e);let t=this.stack[this.stack.length-1];t.url=this.sliceSerialize(e)}function fe(e){E.call(this,e);let t=this.stack[this.stack.length-1];t.url=`mailto:`+this.sliceSerialize(e)}function pe(){return{type:`blockquote`,children:[]}}function me(){return{type:`code`,lang:null,meta:null,value:``}}function he(){return{type:`inlineCode`,value:``}}function ge(){return{type:`definition`,identifier:``,label:null,title:null,url:``}}function _e(){return{type:`emphasis`,children:[]}}function ve(){return{type:`heading`,depth:0,children:[]}}function ye(){return{type:`break`}}function be(){return{type:`html`,value:``}}function xe(){return{type:`image`,title:null,url:``,alt:null}}function Se(){return{type:`link`,title:null,url:``,children:[]}}function Ce(e){return{type:`list`,ordered:e.type===`listOrdered`,start:null,spread:e._spread,children:[]}}function we(e){return{type:`listItem`,spread:e._spread,checked:null,children:[]}}function Te(){return{type:`paragraph`,children:[]}}function Ee(){return{type:`strong`,children:[]}}function De(){return{type:`text`,value:``}}function Oe(){return{type:`thematicBreak`}}}function Fl(e){return{line:e.line,column:e.column,offset:e.offset}}function Il(e,t){let n=-1;for(;++n<t.length;){let r=t[n];Array.isArray(r)?Il(e,r):Ll(e,r)}}function Ll(e,t){let n;for(n in t)if(Ml.call(t,n))switch(n){case`canContainEols`:{let r=t[n];r&&e[n].push(...r);break}case`transforms`:{let r=t[n];r&&e[n].push(...r);break}case`enter`:case`exit`:{let r=t[n];r&&Object.assign(e[n],r);break}}}function Rl(e,t){throw Error(e?"Cannot close `"+e.type+"` ("+ao({start:e.start,end:e.end})+"): a different token (`"+t.type+"`, "+ao({start:t.start,end:t.end})+`) is open`:"Cannot close document, a token (`"+t.type+"`, "+ao({start:t.start,end:t.end})+`) is still open`)}function zl(e){let t=this;t.parser=n;function n(n){return Nl(n,{...t.data(`settings`),...e,extensions:t.data(`micromarkExtensions`)||[],mdastExtensions:t.data(`fromMarkdownExtensions`)||[]})}}function Bl(e,t){let n={type:`element`,tagName:`blockquote`,properties:{},children:e.wrap(e.all(t),!0)};return e.patch(t,n),e.applyData(t,n)}function Vl(e,t){let n={type:`element`,tagName:`br`,properties:{},children:[]};return e.patch(t,n),[e.applyData(t,n),{type:`text`,value:`
5
+ `}]}function Hl(e,t){let n=t.value?t.value+`
6
+ `:``,r={},i=t.lang?t.lang.split(/\s+/):[];i.length>0&&(r.className=[`language-`+i[0]]);let a={type:`element`,tagName:`code`,properties:r,children:[{type:`text`,value:n}]};return t.meta&&(a.data={meta:t.meta}),e.patch(t,a),a=e.applyData(t,a),a={type:`element`,tagName:`pre`,properties:{},children:[a]},e.patch(t,a),a}function Ul(e,t){let n={type:`element`,tagName:`del`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Wl(e,t){let n={type:`element`,tagName:`em`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Gl(e,t){let n=typeof e.options.clobberPrefix==`string`?e.options.clobberPrefix:`user-content-`,r=String(t.identifier).toUpperCase(),i=ps(r.toLowerCase()),a=e.footnoteOrder.indexOf(r),o,s=e.footnoteCounts.get(r);s===void 0?(s=0,e.footnoteOrder.push(r),o=e.footnoteOrder.length):o=a+1,s+=1,e.footnoteCounts.set(r,s);let c={type:`element`,tagName:`a`,properties:{href:`#`+n+`fn-`+i,id:n+`fnref-`+i+(s>1?`-`+s:``),dataFootnoteRef:!0,ariaDescribedBy:[`footnote-label`]},children:[{type:`text`,value:String(o)}]};e.patch(t,c);let l={type:`element`,tagName:`sup`,properties:{},children:[c]};return e.patch(t,l),e.applyData(t,l)}function Kl(e,t){let n={type:`element`,tagName:`h`+t.depth,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function ql(e,t){if(e.options.allowDangerousHtml){let n={type:`raw`,value:t.value};return e.patch(t,n),e.applyData(t,n)}}function Jl(e,t){let n=t.referenceType,r=`]`;if(n===`collapsed`?r+=`[]`:n===`full`&&(r+=`[`+(t.label||t.identifier)+`]`),t.type===`imageReference`)return[{type:`text`,value:`![`+t.alt+r}];let i=e.all(t),a=i[0];a&&a.type===`text`?a.value=`[`+a.value:i.unshift({type:`text`,value:`[`});let o=i[i.length-1];return o&&o.type===`text`?o.value+=r:i.push({type:`text`,value:r}),i}function Yl(e,t){let n=String(t.identifier).toUpperCase(),r=e.definitionById.get(n);if(!r)return Jl(e,t);let i={src:ps(r.url||``),alt:t.alt};r.title!==null&&r.title!==void 0&&(i.title=r.title);let a={type:`element`,tagName:`img`,properties:i,children:[]};return e.patch(t,a),e.applyData(t,a)}function Xl(e,t){let n={src:ps(t.url)};t.alt!==null&&t.alt!==void 0&&(n.alt=t.alt),t.title!==null&&t.title!==void 0&&(n.title=t.title);let r={type:`element`,tagName:`img`,properties:n,children:[]};return e.patch(t,r),e.applyData(t,r)}function Zl(e,t){let n={type:`text`,value:t.value.replace(/\r?\n|\r/g,` `)};e.patch(t,n);let r={type:`element`,tagName:`code`,properties:{},children:[n]};return e.patch(t,r),e.applyData(t,r)}function Ql(e,t){let n=String(t.identifier).toUpperCase(),r=e.definitionById.get(n);if(!r)return Jl(e,t);let i={href:ps(r.url||``)};r.title!==null&&r.title!==void 0&&(i.title=r.title);let a={type:`element`,tagName:`a`,properties:i,children:e.all(t)};return e.patch(t,a),e.applyData(t,a)}function $l(e,t){let n={href:ps(t.url)};t.title!==null&&t.title!==void 0&&(n.title=t.title);let r={type:`element`,tagName:`a`,properties:n,children:e.all(t)};return e.patch(t,r),e.applyData(t,r)}function eu(e,t,n){let r=e.all(t),i=n?tu(n):nu(t),a={},o=[];if(typeof t.checked==`boolean`){let e=r[0],n;e&&e.type===`element`&&e.tagName===`p`?n=e:(n={type:`element`,tagName:`p`,properties:{},children:[]},r.unshift(n)),n.children.length>0&&n.children.unshift({type:`text`,value:` `}),n.children.unshift({type:`element`,tagName:`input`,properties:{type:`checkbox`,checked:t.checked,disabled:!0},children:[]}),a.className=[`task-list-item`]}let s=-1;for(;++s<r.length;){let e=r[s];(i||s!==0||e.type!==`element`||e.tagName!==`p`)&&o.push({type:`text`,value:`
7
+ `}),e.type===`element`&&e.tagName===`p`&&!i?o.push(...e.children):o.push(e)}let c=r[r.length-1];c&&(i||c.type!==`element`||c.tagName!==`p`)&&o.push({type:`text`,value:`
8
+ `});let l={type:`element`,tagName:`li`,properties:a,children:o};return e.patch(t,l),e.applyData(t,l)}function tu(e){let t=!1;if(e.type===`list`){t=e.spread||!1;let n=e.children,r=-1;for(;!t&&++r<n.length;)t=nu(n[r])}return t}function nu(e){return e.spread??e.children.length>1}function ru(e,t){let n={},r=e.all(t),i=-1;for(typeof t.start==`number`&&t.start!==1&&(n.start=t.start);++i<r.length;){let e=r[i];if(e.type===`element`&&e.tagName===`li`&&e.properties&&Array.isArray(e.properties.className)&&e.properties.className.includes(`task-list-item`)){n.className=[`contains-task-list`];break}}let a={type:`element`,tagName:t.ordered?`ol`:`ul`,properties:n,children:e.wrap(r,!0)};return e.patch(t,a),e.applyData(t,a)}function iu(e,t){let n={type:`element`,tagName:`p`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function au(e,t){let n={type:`root`,children:e.wrap(e.all(t))};return e.patch(t,n),e.applyData(t,n)}function ou(e,t){let n={type:`element`,tagName:`strong`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function su(e,t){let n=e.all(t),r=n.shift(),i=[];if(r){let n={type:`element`,tagName:`thead`,properties:{},children:e.wrap([r],!0)};e.patch(t.children[0],n),i.push(n)}if(n.length>0){let r={type:`element`,tagName:`tbody`,properties:{},children:e.wrap(n,!0)},a=no(t.children[1]),o=to(t.children[t.children.length-1]);a&&o&&(r.position={start:a,end:o}),i.push(r)}let a={type:`element`,tagName:`table`,properties:{},children:e.wrap(i,!0)};return e.patch(t,a),e.applyData(t,a)}function cu(e,t,n){let r=n?n.children:void 0,i=(r?r.indexOf(t):1)===0?`th`:`td`,a=n&&n.type===`table`?n.align:void 0,o=a?a.length:t.children.length,s=-1,c=[];for(;++s<o;){let n=t.children[s],r={},o=a?a[s]:void 0;o&&(r.align=o);let l={type:`element`,tagName:i,properties:r,children:[]};n&&(l.children=e.all(n),e.patch(n,l),l=e.applyData(n,l)),c.push(l)}let l={type:`element`,tagName:`tr`,properties:{},children:e.wrap(c,!0)};return e.patch(t,l),e.applyData(t,l)}function lu(e,t){let n={type:`element`,tagName:`td`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}var uu=9,du=32;function fu(e){let t=String(e),n=/\r?\n|\r/g,r=n.exec(t),i=0,a=[];for(;r;)a.push(pu(t.slice(i,r.index),i>0,!0),r[0]),i=r.index+r[0].length,r=n.exec(t);return a.push(pu(t.slice(i),i>0,!1)),a.join(``)}function pu(e,t,n){let r=0,i=e.length;if(t){let t=e.codePointAt(r);for(;t===uu||t===du;)r++,t=e.codePointAt(r)}if(n){let t=e.codePointAt(i-1);for(;t===uu||t===du;)i--,t=e.codePointAt(i-1)}return i>r?e.slice(r,i):``}function mu(e,t){let n={type:`text`,value:fu(String(t.value))};return e.patch(t,n),e.applyData(t,n)}function hu(e,t){let n={type:`element`,tagName:`hr`,properties:{},children:[]};return e.patch(t,n),e.applyData(t,n)}var gu={blockquote:Bl,break:Vl,code:Hl,delete:Ul,emphasis:Wl,footnoteReference:Gl,heading:Kl,html:ql,imageReference:Yl,image:Xl,inlineCode:Zl,linkReference:Ql,link:$l,listItem:eu,list:ru,paragraph:iu,root:au,strong:ou,table:su,tableCell:lu,tableRow:cu,text:mu,thematicBreak:hu,toml:_u,yaml:_u,definition:_u,footnoteDefinition:_u};function _u(){}var vu=typeof self==`object`?self:globalThis,yu=(e,t)=>{let n=(t,n)=>(e.set(n,t),t),r=i=>{if(e.has(i))return e.get(i);let[a,o]=t[i];switch(a){case 0:case-1:return n(o,i);case 1:{let e=n([],i);for(let t of o)e.push(r(t));return e}case 2:{let e=n({},i);for(let[t,n]of o)e[r(t)]=r(n);return e}case 3:return n(new Date(o),i);case 4:{let{source:e,flags:t}=o;return n(new RegExp(e,t),i)}case 5:{let e=n(new Map,i);for(let[t,n]of o)e.set(r(t),r(n));return e}case 6:{let e=n(new Set,i);for(let t of o)e.add(r(t));return e}case 7:{let{name:e,message:t}=o;return n(new vu[e](t),i)}case 8:return n(BigInt(o),i);case`BigInt`:return n(Object(BigInt(o)),i);case`ArrayBuffer`:return n(new Uint8Array(o).buffer,o);case`DataView`:{let{buffer:e}=new Uint8Array(o);return n(new DataView(e),o)}}return n(new vu[a](o),i)};return r},bu=e=>yu(new Map,e)(0),xu=``,{toString:Su}={},{keys:Cu}=Object,wu=e=>{let t=typeof e;if(t!==`object`||!e)return[0,t];let n=Su.call(e).slice(8,-1);switch(n){case`Array`:return[1,xu];case`Object`:return[2,xu];case`Date`:return[3,xu];case`RegExp`:return[4,xu];case`Map`:return[5,xu];case`Set`:return[6,xu];case`DataView`:return[1,n]}return n.includes(`Array`)?[1,n]:n.includes(`Error`)?[7,n]:[2,n]},Tu=([e,t])=>e===0&&(t===`function`||t===`symbol`),Eu=(e,t,n,r)=>{let i=(e,t)=>{let i=r.push(e)-1;return n.set(t,i),i},a=r=>{if(n.has(r))return n.get(r);let[o,s]=wu(r);switch(o){case 0:{let t=r;switch(s){case`bigint`:o=8,t=r.toString();break;case`function`:case`symbol`:if(e)throw TypeError(`unable to serialize `+s);t=null;break;case`undefined`:return i([-1],r)}return i([o,t],r)}case 1:{if(s){let e=r;return s===`DataView`?e=new Uint8Array(r.buffer):s===`ArrayBuffer`&&(e=new Uint8Array(r)),i([s,[...e]],r)}let e=[],t=i([o,e],r);for(let t of r)e.push(a(t));return t}case 2:{if(s)switch(s){case`BigInt`:return i([s,r.toString()],r);case`Boolean`:case`Number`:case`String`:return i([s,r.valueOf()],r)}if(t&&`toJSON`in r)return a(r.toJSON());let n=[],c=i([o,n],r);for(let t of Cu(r))(e||!Tu(wu(r[t])))&&n.push([a(t),a(r[t])]);return c}case 3:return i([o,r.toISOString()],r);case 4:{let{source:e,flags:t}=r;return i([o,{source:e,flags:t}],r)}case 5:{let t=[],n=i([o,t],r);for(let[n,i]of r)(e||!(Tu(wu(n))||Tu(wu(i))))&&t.push([a(n),a(i)]);return n}case 6:{let t=[],n=i([o,t],r);for(let n of r)(e||!Tu(wu(n)))&&t.push(a(n));return n}}let{message:c}=r;return i([o,{name:s,message:c}],r)};return a},Du=(e,{json:t,lossy:n}={})=>{let r=[];return Eu(!(t||n),!!t,new Map,r)(e),r},Ou=typeof structuredClone==`function`?(e,t)=>t&&(`json`in t||`lossy`in t)?bu(Du(e,t)):structuredClone(e):(e,t)=>bu(Du(e,t));function ku(e,t){let n=[{type:`text`,value:`↩`}];return t>1&&n.push({type:`element`,tagName:`sup`,properties:{},children:[{type:`text`,value:String(t)}]}),n}function Au(e,t){return`Back to reference `+(e+1)+(t>1?`-`+t:``)}function ju(e){let t=typeof e.options.clobberPrefix==`string`?e.options.clobberPrefix:`user-content-`,n=e.options.footnoteBackContent||ku,r=e.options.footnoteBackLabel||Au,i=e.options.footnoteLabel||`Footnotes`,a=e.options.footnoteLabelTagName||`h2`,o=e.options.footnoteLabelProperties||{className:[`sr-only`]},s=[],c=-1;for(;++c<e.footnoteOrder.length;){let i=e.footnoteById.get(e.footnoteOrder[c]);if(!i)continue;let a=e.all(i),o=String(i.identifier).toUpperCase(),l=ps(o.toLowerCase()),u=0,d=[],f=e.footnoteCounts.get(o);for(;f!==void 0&&++u<=f;){d.length>0&&d.push({type:`text`,value:` `});let e=typeof n==`string`?n:n(c,u);typeof e==`string`&&(e={type:`text`,value:e}),d.push({type:`element`,tagName:`a`,properties:{href:`#`+t+`fnref-`+l+(u>1?`-`+u:``),dataFootnoteBackref:``,ariaLabel:typeof r==`string`?r:r(c,u),className:[`data-footnote-backref`]},children:Array.isArray(e)?e:[e]})}let p=a[a.length-1];if(p&&p.type===`element`&&p.tagName===`p`){let e=p.children[p.children.length-1];e&&e.type===`text`?e.value+=` `:p.children.push({type:`text`,value:` `}),p.children.push(...d)}else a.push(...d);let m={type:`element`,tagName:`li`,properties:{id:t+`fn-`+l},children:e.wrap(a,!0)};e.patch(i,m),s.push(m)}if(s.length!==0)return{type:`element`,tagName:`section`,properties:{dataFootnotes:!0,className:[`footnotes`]},children:[{type:`element`,tagName:a,properties:{...Ou(o),id:`footnote-label`},children:[{type:`text`,value:i}]},{type:`text`,value:`
9
+ `},{type:`element`,tagName:`ol`,properties:{},children:e.wrap(s,!0)},{type:`text`,value:`
10
+ `}]}}var Mu=(function(e){if(e==null)return Lu;if(typeof e==`function`)return Iu(e);if(typeof e==`object`)return Array.isArray(e)?Nu(e):Pu(e);if(typeof e==`string`)return Fu(e);throw Error(`Expected function, string, or object as test`)});function Nu(e){let t=[],n=-1;for(;++n<e.length;)t[n]=Mu(e[n]);return Iu(r);function r(...e){let n=-1;for(;++n<t.length;)if(t[n].apply(this,e))return!0;return!1}}function Pu(e){let t=e;return Iu(n);function n(n){let r=n,i;for(i in e)if(r[i]!==t[i])return!1;return!0}}function Fu(e){return Iu(t);function t(t){return t&&t.type===e}}function Iu(e){return t;function t(t,n,r){return!!(Ru(t)&&e.call(this,t,typeof n==`number`?n:void 0,r||void 0))}}function Lu(){return!0}function Ru(e){return typeof e==`object`&&!!e&&`type`in e}function zu(e){return e}var Bu=[];function Vu(e,t,n,r){let i;typeof t==`function`&&typeof n!=`function`?(r=n,n=t):i=t;let a=Mu(i),o=r?-1:1;s(e,void 0,[])();function s(e,i,c){let l=e&&typeof e==`object`?e:{};if(typeof l.type==`string`){let t=typeof l.tagName==`string`?l.tagName:typeof l.name==`string`?l.name:void 0;Object.defineProperty(u,`name`,{value:`node (`+zu(e.type+(t?`<`+t+`>`:``))+`)`})}return u;function u(){let l=Bu,u,d,f;if((!t||a(e,i,c[c.length-1]||void 0))&&(l=Hu(n(e,c)),l[0]===!1))return l;if(`children`in e&&e.children){let t=e;if(t.children&&l[0]!==`skip`)for(d=(r?t.children.length:-1)+o,f=c.concat(t);d>-1&&d<t.children.length;){let e=t.children[d];if(u=s(e,d,f)(),u[0]===!1)return u;d=typeof u[1]==`number`?u[1]:d+o}}return l}}}function Hu(e){return Array.isArray(e)?e:typeof e==`number`?[!0,e]:e==null?Bu:[e]}function Uu(e,t,n,r){let i,a,o;typeof t==`function`&&typeof n!=`function`?(a=void 0,o=t,i=n):(a=t,o=n,i=r),Vu(e,a,s,i);function s(e,t){let n=t[t.length-1],r=n?n.children.indexOf(e):void 0;return o(e,r,n)}}var Wu={}.hasOwnProperty,Gu={};function Ku(e,t){let n=t||Gu,r=new Map,i=new Map,a={all:s,applyData:Ju,definitionById:r,footnoteById:i,footnoteCounts:new Map,footnoteOrder:[],handlers:{...gu,...n.handlers},one:o,options:n,patch:qu,wrap:Xu};return Uu(e,function(e){if(e.type===`definition`||e.type===`footnoteDefinition`){let t=e.type===`definition`?r:i,n=String(e.identifier).toUpperCase();t.has(n)||t.set(n,e)}}),a;function o(e,t){let n=e.type,r=a.handlers[n];if(Wu.call(a.handlers,n)&&r)return r(a,e,t);if(a.options.passThrough&&a.options.passThrough.includes(n)){if(`children`in e){let{children:t,...n}=e,r=Ou(n);return r.children=a.all(e),r}return Ou(e)}return(a.options.unknownHandler||Yu)(a,e,t)}function s(e){let t=[];if(`children`in e){let n=e.children,r=-1;for(;++r<n.length;){let i=a.one(n[r],e);if(i){if(r&&n[r-1].type===`break`&&(!Array.isArray(i)&&i.type===`text`&&(i.value=Zu(i.value)),!Array.isArray(i)&&i.type===`element`)){let e=i.children[0];e&&e.type===`text`&&(e.value=Zu(e.value))}Array.isArray(i)?t.push(...i):t.push(i)}}}return t}}function qu(e,t){e.position&&(t.position=io(e))}function Ju(e,t){let n=t;if(e&&e.data){let t=e.data.hName,r=e.data.hChildren,i=e.data.hProperties;typeof t==`string`&&(n.type===`element`?n.tagName=t:n={type:`element`,tagName:t,properties:{},children:`children`in n?n.children:[n]}),n.type===`element`&&i&&Object.assign(n.properties,Ou(i)),`children`in n&&n.children&&r!=null&&(n.children=r)}return n}function Yu(e,t){let n=t.data||{},r=`value`in t&&!(Wu.call(n,`hProperties`)||Wu.call(n,`hChildren`))?{type:`text`,value:t.value}:{type:`element`,tagName:`div`,properties:{},children:e.all(t)};return e.patch(t,r),e.applyData(t,r)}function Xu(e,t){let n=[],r=-1;for(t&&n.push({type:`text`,value:`
11
+ `});++r<e.length;)r&&n.push({type:`text`,value:`
12
+ `}),n.push(e[r]);return t&&e.length>0&&n.push({type:`text`,value:`
13
+ `}),n}function Zu(e){let t=0,n=e.charCodeAt(t);for(;n===9||n===32;)t++,n=e.charCodeAt(t);return e.slice(t)}function Qu(e,t){let n=Ku(e,t),r=n.one(e,void 0),i=ju(n),a=Array.isArray(r)?{type:`root`,children:r}:r||{type:`root`,children:[]};return i&&(`children`in a,a.children.push({type:`text`,value:`
14
+ `},i)),a}function $u(e,t){return e&&`run`in e?async function(n,r){let i=Qu(n,{file:r,...t});await e.run(i,r)}:function(n,r){return Qu(n,{file:r,...e||t})}}function ed(e){if(e)throw e}var td=n(((e,t)=>{var n=Object.prototype.hasOwnProperty,r=Object.prototype.toString,i=Object.defineProperty,a=Object.getOwnPropertyDescriptor,o=function(e){return typeof Array.isArray==`function`?Array.isArray(e):r.call(e)===`[object Array]`},s=function(e){if(!e||r.call(e)!==`[object Object]`)return!1;var t=n.call(e,`constructor`),i=e.constructor&&e.constructor.prototype&&n.call(e.constructor.prototype,`isPrototypeOf`);if(e.constructor&&!t&&!i)return!1;for(var a in e);return a===void 0||n.call(e,a)},c=function(e,t){i&&t.name===`__proto__`?i(e,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):e[t.name]=t.newValue},l=function(e,t){if(t===`__proto__`){if(!n.call(e,t))return;if(a)return a(e,t).value}return e[t]};t.exports=function e(){var t,n,r,i,a,u,d=arguments[0],f=1,p=arguments.length,m=!1;for(typeof d==`boolean`&&(m=d,d=arguments[1]||{},f=2),(d==null||typeof d!=`object`&&typeof d!=`function`)&&(d={});f<p;++f)if(t=arguments[f],t!=null)for(n in t)r=l(d,n),i=l(t,n),d!==i&&(m&&i&&(s(i)||(a=o(i)))?(a?(a=!1,u=r&&o(r)?r:[]):u=r&&s(r)?r:{},c(d,{name:n,newValue:e(m,u,i)})):i!==void 0&&c(d,{name:n,newValue:i}));return d}}));function nd(e){if(typeof e!=`object`||!e)return!1;let t=Object.getPrototypeOf(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)}function rd(){let e=[],t={run:n,use:r};return t;function n(...t){let n=-1,r=t.pop();if(typeof r!=`function`)throw TypeError(`Expected function as last argument, not `+r);i(null,...t);function i(a,...o){let s=e[++n],c=-1;if(a){r(a);return}for(;++c<t.length;)(o[c]===null||o[c]===void 0)&&(o[c]=t[c]);t=o,s?id(s,i)(...o):r(null,...o)}}function r(n){if(typeof n!=`function`)throw TypeError("Expected `middelware` to be a function, not "+n);return e.push(n),t}}function id(e,t){let n;return r;function r(...t){let r=e.length>t.length,o;r&&t.push(i);try{o=e.apply(this,t)}catch(e){let t=e;if(r&&n)throw t;return i(t)}r||(o&&o.then&&typeof o.then==`function`?o.then(a,i):o instanceof Error?i(o):a(o))}function i(e,...r){n||(n=!0,t(e,...r))}function a(e){i(null,e)}}var ad={basename:od,dirname:sd,extname:cd,join:ld,sep:`/`};function od(e,t){if(t!==void 0&&typeof t!=`string`)throw TypeError(`"ext" argument must be a string`);fd(e);let n=0,r=-1,i=e.length,a;if(t===void 0||t.length===0||t.length>e.length){for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else r<0&&(a=!0,r=i+1);return r<0?``:e.slice(n,r)}if(t===e)return``;let o=-1,s=t.length-1;for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else o<0&&(a=!0,o=i+1),s>-1&&(e.codePointAt(i)===t.codePointAt(s--)?s<0&&(r=i):(s=-1,r=o));return n===r?r=o:r<0&&(r=e.length),e.slice(n,r)}function sd(e){if(fd(e),e.length===0)return`.`;let t=-1,n=e.length,r;for(;--n;)if(e.codePointAt(n)===47){if(r){t=n;break}}else r||=!0;return t<0?e.codePointAt(0)===47?`/`:`.`:t===1&&e.codePointAt(0)===47?`//`:e.slice(0,t)}function cd(e){fd(e);let t=e.length,n=-1,r=0,i=-1,a=0,o;for(;t--;){let s=e.codePointAt(t);if(s===47){if(o){r=t+1;break}continue}n<0&&(o=!0,n=t+1),s===46?i<0?i=t:a!==1&&(a=1):i>-1&&(a=-1)}return i<0||n<0||a===0||a===1&&i===n-1&&i===r+1?``:e.slice(i,n)}function ld(...e){let t=-1,n;for(;++t<e.length;)fd(e[t]),e[t]&&(n=n===void 0?e[t]:n+`/`+e[t]);return n===void 0?`.`:ud(n)}function ud(e){fd(e);let t=e.codePointAt(0)===47,n=dd(e,!t);return n.length===0&&!t&&(n=`.`),n.length>0&&e.codePointAt(e.length-1)===47&&(n+=`/`),t?`/`+n:n}function dd(e,t){let n=``,r=0,i=-1,a=0,o=-1,s,c;for(;++o<=e.length;){if(o<e.length)s=e.codePointAt(o);else if(s===47)break;else s=47;if(s===47){if(!(i===o-1||a===1))if(i!==o-1&&a===2){if(n.length<2||r!==2||n.codePointAt(n.length-1)!==46||n.codePointAt(n.length-2)!==46){if(n.length>2){if(c=n.lastIndexOf(`/`),c!==n.length-1){c<0?(n=``,r=0):(n=n.slice(0,c),r=n.length-1-n.lastIndexOf(`/`)),i=o,a=0;continue}}else if(n.length>0){n=``,r=0,i=o,a=0;continue}}t&&(n=n.length>0?n+`/..`:`..`,r=2)}else n.length>0?n+=`/`+e.slice(i+1,o):n=e.slice(i+1,o),r=o-i-1;i=o,a=0}else s===46&&a>-1?a++:a=-1}return n}function fd(e){if(typeof e!=`string`)throw TypeError(`Path must be a string. Received `+JSON.stringify(e))}var pd={cwd:md};function md(){return`/`}function hd(e){return!!(typeof e==`object`&&e&&`href`in e&&e.href&&`protocol`in e&&e.protocol&&e.auth===void 0)}function gd(e){if(typeof e==`string`)e=new URL(e);else if(!hd(e)){let t=TypeError('The "path" argument must be of type string or an instance of URL. Received `'+e+"`");throw t.code=`ERR_INVALID_ARG_TYPE`,t}if(e.protocol!==`file:`){let e=TypeError(`The URL must be of scheme file`);throw e.code=`ERR_INVALID_URL_SCHEME`,e}return _d(e)}function _d(e){if(e.hostname!==``){let e=TypeError(`File URL host must be "localhost" or empty on darwin`);throw e.code=`ERR_INVALID_FILE_URL_HOST`,e}let t=e.pathname,n=-1;for(;++n<t.length;)if(t.codePointAt(n)===37&&t.codePointAt(n+1)===50){let e=t.codePointAt(n+2);if(e===70||e===102){let e=TypeError(`File URL path must not include encoded / characters`);throw e.code=`ERR_INVALID_FILE_URL_PATH`,e}}return decodeURIComponent(t)}var vd=[`history`,`path`,`basename`,`stem`,`extname`,`dirname`],yd=class{constructor(e){let t;t=e?hd(e)?{path:e}:typeof e==`string`||Cd(e)?{value:e}:e:{},this.cwd=`cwd`in t?``:pd.cwd(),this.data={},this.history=[],this.messages=[],this.value,this.map,this.result,this.stored;let n=-1;for(;++n<vd.length;){let e=vd[n];e in t&&t[e]!==void 0&&t[e]!==null&&(this[e]=e===`history`?[...t[e]]:t[e])}let r;for(r in t)vd.includes(r)||(this[r]=t[r])}get basename(){return typeof this.path==`string`?ad.basename(this.path):void 0}set basename(e){xd(e,`basename`),bd(e,`basename`),this.path=ad.join(this.dirname||``,e)}get dirname(){return typeof this.path==`string`?ad.dirname(this.path):void 0}set dirname(e){Sd(this.basename,`dirname`),this.path=ad.join(e||``,this.basename)}get extname(){return typeof this.path==`string`?ad.extname(this.path):void 0}set extname(e){if(bd(e,`extname`),Sd(this.dirname,`extname`),e){if(e.codePointAt(0)!==46)throw Error("`extname` must start with `.`");if(e.includes(`.`,1))throw Error("`extname` cannot contain multiple dots")}this.path=ad.join(this.dirname,this.stem+(e||``))}get path(){return this.history[this.history.length-1]}set path(e){hd(e)&&(e=gd(e)),xd(e,`path`),this.path!==e&&this.history.push(e)}get stem(){return typeof this.path==`string`?ad.basename(this.path,this.extname):void 0}set stem(e){xd(e,`stem`),bd(e,`stem`),this.path=ad.join(this.dirname||``,e+(this.extname||``))}fail(e,t,n){let r=this.message(e,t,n);throw r.fatal=!0,r}info(e,t,n){let r=this.message(e,t,n);return r.fatal=void 0,r}message(e,t,n){let r=new lo(e,t,n);return this.path&&(r.name=this.path+`:`+r.name,r.file=this.path),r.fatal=!1,this.messages.push(r),r}toString(e){return this.value===void 0?``:typeof this.value==`string`?this.value:new TextDecoder(e||void 0).decode(this.value)}};function bd(e,t){if(e&&e.includes(ad.sep))throw Error("`"+t+"` cannot be a path: did not expect `"+ad.sep+"`")}function xd(e,t){if(!e)throw Error("`"+t+"` cannot be empty")}function Sd(e,t){if(!e)throw Error("Setting `"+t+"` requires `path` to be set too")}function Cd(e){return!!(e&&typeof e==`object`&&`byteLength`in e&&`byteOffset`in e)}var wd=(function(e){let t=this.constructor.prototype,n=t[e],r=function(){return n.apply(r,arguments)};return Object.setPrototypeOf(r,t),r}),Td=t(td(),1),Ed={}.hasOwnProperty,Dd=new class e extends wd{constructor(){super(`copy`),this.Compiler=void 0,this.Parser=void 0,this.attachers=[],this.compiler=void 0,this.freezeIndex=-1,this.frozen=void 0,this.namespace={},this.parser=void 0,this.transformers=rd()}copy(){let t=new e,n=-1;for(;++n<this.attachers.length;){let e=this.attachers[n];t.use(...e)}return t.data((0,Td.default)(!0,{},this.namespace)),t}data(e,t){return typeof e==`string`?arguments.length===2?(Ad(`data`,this.frozen),this.namespace[e]=t,this):Ed.call(this.namespace,e)&&this.namespace[e]||void 0:e?(Ad(`data`,this.frozen),this.namespace=e,this):this.namespace}freeze(){if(this.frozen)return this;let e=this;for(;++this.freezeIndex<this.attachers.length;){let[t,...n]=this.attachers[this.freezeIndex];if(n[0]===!1)continue;n[0]===!0&&(n[0]=void 0);let r=t.call(e,...n);typeof r==`function`&&this.transformers.use(r)}return this.frozen=!0,this.freezeIndex=1/0,this}parse(e){this.freeze();let t=Nd(e),n=this.parser||this.Parser;return Od(`parse`,n),n(String(t),t)}process(e,t){let n=this;return this.freeze(),Od(`process`,this.parser||this.Parser),kd(`process`,this.compiler||this.Compiler),t?r(void 0,t):new Promise(r);function r(r,i){let a=Nd(e),o=n.parse(a);n.run(o,a,function(e,t,r){if(e||!t||!r)return s(e);let i=t,a=n.stringify(i,r);Fd(a)?r.value=a:r.result=a,s(e,r)});function s(e,n){e||!n?i(e):r?r(n):t(void 0,n)}}}processSync(e){let t=!1,n;return this.freeze(),Od(`processSync`,this.parser||this.Parser),kd(`processSync`,this.compiler||this.Compiler),this.process(e,r),Md(`processSync`,`process`,t),n;function r(e,r){t=!0,ed(e),n=r}}run(e,t,n){jd(e),this.freeze();let r=this.transformers;return!n&&typeof t==`function`&&(n=t,t=void 0),n?i(void 0,n):new Promise(i);function i(i,a){let o=Nd(t);r.run(e,o,s);function s(t,r,o){let s=r||e;t?a(t):i?i(s):n(void 0,s,o)}}}runSync(e,t){let n=!1,r;return this.run(e,t,i),Md(`runSync`,`run`,n),r;function i(e,t){ed(e),r=t,n=!0}}stringify(e,t){this.freeze();let n=Nd(t),r=this.compiler||this.Compiler;return kd(`stringify`,r),jd(e),r(e,n)}use(e,...t){let n=this.attachers,r=this.namespace;if(Ad(`use`,this.frozen),e!=null)if(typeof e==`function`)s(e,t);else if(typeof e==`object`)Array.isArray(e)?o(e):a(e);else throw TypeError("Expected usable value, not `"+e+"`");return this;function i(e){if(typeof e==`function`)s(e,[]);else if(typeof e==`object`)if(Array.isArray(e)){let[t,...n]=e;s(t,n)}else a(e);else throw TypeError("Expected usable value, not `"+e+"`")}function a(e){if(!(`plugins`in e)&&!(`settings`in e))throw Error("Expected usable value but received an empty preset, which is probably a mistake: presets typically come with `plugins` and sometimes with `settings`, but this has neither");o(e.plugins),e.settings&&(r.settings=(0,Td.default)(!0,r.settings,e.settings))}function o(e){let t=-1;if(e!=null)if(Array.isArray(e))for(;++t<e.length;){let n=e[t];i(n)}else throw TypeError("Expected a list of plugins, not `"+e+"`")}function s(e,t){let r=-1,i=-1;for(;++r<n.length;)if(n[r][0]===e){i=r;break}if(i===-1)n.push([e,...t]);else if(t.length>0){let[r,...a]=t,o=n[i][1];nd(o)&&nd(r)&&(r=(0,Td.default)(!0,o,r)),n[i]=[e,r,...a]}}}}().freeze();function Od(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `parser`")}function kd(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `compiler`")}function Ad(e,t){if(t)throw Error("Cannot call `"+e+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function jd(e){if(!nd(e)||typeof e.type!=`string`)throw TypeError("Expected node, got `"+e+"`")}function Md(e,t,n){if(!n)throw Error("`"+e+"` finished async. Use `"+t+"` instead")}function Nd(e){return Pd(e)?e:new yd(e)}function Pd(e){return!!(e&&typeof e==`object`&&`message`in e&&`messages`in e)}function Fd(e){return typeof e==`string`||Id(e)}function Id(e){return!!(e&&typeof e==`object`&&`byteLength`in e&&`byteOffset`in e)}var Ld=[],Rd={allowDangerousHtml:!0},zd=/^(https?|ircs?|mailto|xmpp)$/i,Bd=[{from:`astPlugins`,id:`remove-buggy-html-in-markdown-parser`},{from:`allowDangerousHtml`,id:`remove-buggy-html-in-markdown-parser`},{from:`allowNode`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`allowElement`},{from:`allowedTypes`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`allowedElements`},{from:`className`,id:`remove-classname`},{from:`disallowedTypes`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`disallowedElements`},{from:`escapeHtml`,id:`remove-buggy-html-in-markdown-parser`},{from:`includeElementIndex`,id:`#remove-includeelementindex`},{from:`includeNodeIndex`,id:`change-includenodeindex-to-includeelementindex`},{from:`linkTarget`,id:`remove-linktarget`},{from:`plugins`,id:`change-plugins-to-remarkplugins`,to:`remarkPlugins`},{from:`rawSourcePos`,id:`#remove-rawsourcepos`},{from:`renderers`,id:`change-renderers-to-components`,to:`components`},{from:`source`,id:`change-source-to-children`,to:`children`},{from:`sourcePos`,id:`#remove-sourcepos`},{from:`transformImageUri`,id:`#add-urltransform`,to:`urlTransform`},{from:`transformLinkUri`,id:`#add-urltransform`,to:`urlTransform`}];function Vd(e){let t=Hd(e),n=Ud(e);return Wd(t.runSync(t.parse(n),n),e)}function Hd(e){let t=e.rehypePlugins||Ld,n=e.remarkPlugins||Ld,r=e.remarkRehypeOptions?{...e.remarkRehypeOptions,...Rd}:Rd;return Dd().use(zl).use(n).use($u,r).use(t)}function Ud(e){let t=e.children||``,n=new yd;return typeof t==`string`?n.value=t:``+t,n}function Wd(e,t){let n=t.allowedElements,r=t.allowElement,i=t.components,a=t.disallowedElements,o=t.skipHtml,s=t.unwrapDisallowed,c=t.urlTransform||Gd;for(let e of Bd)Object.hasOwn(t,e.from)&&``+e.from+(e.to?"use `"+e.to+"` instead":`remove it`)+e.id;return Uu(e,l),vo(e,{Fragment:I.Fragment,components:i,ignoreInvalidStyle:!0,jsx:I.jsx,jsxs:I.jsxs,passKeys:!0,passNode:!0});function l(e,t,i){if(e.type===`raw`&&i&&typeof t==`number`)return o?i.children.splice(t,1):i.children[t]={type:`text`,value:e.value},t;if(e.type===`element`){let t;for(t in Bo)if(Object.hasOwn(Bo,t)&&Object.hasOwn(e.properties,t)){let n=e.properties[t],r=Bo[t];(r===null||r.includes(e.tagName))&&(e.properties[t]=c(String(n||``),t,e))}}if(e.type===`element`){let o=n?!n.includes(e.tagName):a?a.includes(e.tagName):!1;if(!o&&r&&typeof t==`number`&&(o=!r(e,t,i)),o&&i&&typeof t==`number`)return s&&e.children?i.children.splice(t,1,...e.children):i.children.splice(t,1),t}}}function Gd(e){let t=e.indexOf(`:`),n=e.indexOf(`?`),r=e.indexOf(`#`),i=e.indexOf(`/`);return t===-1||i!==-1&&t>i||n!==-1&&t>n||r!==-1&&t>r||zd.test(e.slice(0,t))?e:``}function Kd(e){let t=e.match(/^---\s*\n([\s\S]*?)\n---\s*\n([\s\S]*)$/);if(!t)return{meta:{},body:e};let n={};for(let e of t[1].split(`
15
+ `)){let t=e.indexOf(`:`);if(t>0){let r=e.slice(0,t).trim(),i=e.slice(t+1).trim();r&&i&&(n[r]=i)}}return{meta:n,body:t[2]}}function qd({meta:e}){let t=Object.entries(e);return t.length===0?null:(0,I.jsx)(`div`,{className:`grid grid-cols-[auto_1fr] gap-x-3 gap-y-1 text-xs`,children:t.map(([e,t])=>(0,I.jsxs)(`div`,{className:`contents`,children:[(0,I.jsx)(`span`,{className:`font-medium text-muted-foreground capitalize`,children:e}),(0,I.jsx)(`span`,{className:`text-foreground truncate`,children:t})]},e))})}function Jd({label:e,text:t,variant:n}){let{meta:r,body:i}=Kd(t),a=Object.keys(r).length>0;return(0,I.jsxs)(`div`,{className:`flex-1 min-w-0 space-y-3`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(pt,{className:`size-3.5 text-muted-foreground`}),(0,I.jsx)(`span`,{className:`text-xs font-medium text-muted-foreground uppercase tracking-wider`,children:e}),n===`proposed`&&(0,I.jsx)(F,{variant:`secondary`,className:`text-[10px]`,children:`New`})]}),a&&(0,I.jsx)(`div`,{className:`rounded-md border bg-muted/30 p-3`,children:(0,I.jsx)(qd,{meta:r})}),(0,I.jsx)(`div`,{className:`skill-markdown rounded-md border bg-card p-4`,children:(0,I.jsx)(Vd,{children:i})})]})}function Yd(e,t){if(typeof t==`boolean`)return t?(0,I.jsx)(`span`,{className:`inline-block size-2 rounded-full bg-primary align-middle`}):(0,I.jsx)(`span`,{className:`inline-block size-2 rounded-full bg-destructive align-middle`});if(typeof t==`number`){if(e.includes(`rate`)||e.includes(`change`)||t>=-1&&t<=1&&e!==`count`){let n=(t*100).toFixed(1);return(0,I.jsxs)(`span`,{className:`font-mono`,children:[t>0&&e.includes(`change`)?`+`:``,n,`%`]})}return(0,I.jsx)(`span`,{className:`font-mono`,children:t})}return t==null?(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`--`}):typeof t==`string`?(0,I.jsx)(`span`,{children:t}):Array.isArray(t)?t.length===0?(0,I.jsx)(`span`,{className:`text-muted-foreground italic`,children:`none`}):(0,I.jsxs)(`span`,{className:`font-mono`,children:[t.length,` entries`]}):typeof t==`object`?(0,I.jsx)(`span`,{className:`font-mono`,children:`1 entry`}):(0,I.jsx)(`span`,{children:String(t)})}function Xd(e){if(typeof e!=`object`||!e)return null;let t=e,n=t.after_pass??t.after??t.triggered??t.result,r=t.passed??t.matched;return typeof n==`boolean`?n:typeof r==`boolean`?r:null}function Zd(e,t){if(typeof t!=`object`||!t)return`${e}:${JSON.stringify(t)}`;let n=t,r=typeof n.entry==`object`&&n.entry!==null?n.entry:null,i=typeof r?.query==`string`?r.query:typeof n.query==`string`?n.query:typeof n.prompt==`string`?n.prompt:typeof n.input==`string`?n.input:null;if(i)return`${e}:${i}`;let a=typeof n.action==`string`?n.action:null,o=typeof n.timestamp==`string`?n.timestamp:null;return a&&o?`${e}:${a}:${o}`:`${e}:${JSON.stringify(n)}`}function Qd({entry:e}){let t=e.entry,n=t?.query??e.query??e.prompt??e.input??e.text,r=t?.should_trigger??e.should_trigger,i=t?.invocation_type??e.invocation_type,a=e.before_pass??e.before??e.original_triggered??e.baseline,o=e.after_pass??e.after??e.triggered??e.result,s=Xd(e);return(0,I.jsxs)(`div`,{className:`flex items-start gap-2 text-xs py-1.5 border-b border-border/50 last:border-0`,children:[s===null?(0,I.jsx)(`span`,{className:`mt-1 size-2 shrink-0 rounded-full bg-muted-foreground/60`}):s?(0,I.jsx)(`span`,{className:`mt-1 size-2 shrink-0 rounded-full bg-primary`}):(0,I.jsx)(`span`,{className:`mt-1 size-2 shrink-0 rounded-full bg-destructive`}),(0,I.jsx)(`span`,{className:`flex-1 min-w-0 line-clamp-2`,children:n?String(n):JSON.stringify(e)}),(0,I.jsxs)(`div`,{className:`flex items-center gap-1.5 shrink-0`,children:[typeof a==`boolean`&&typeof o==`boolean`&&(0,I.jsxs)(`span`,{className:`text-[10px] text-muted-foreground font-mono`,children:[a?`pass`:`fail`,` → `,o?`pass`:`fail`]}),r!==void 0&&(0,I.jsxs)(F,{variant:`secondary`,className:`text-[9px]`,children:[`expect: `,String(r)]}),i!=null&&(0,I.jsx)(F,{variant:`secondary`,className:`text-[9px]`,children:String(i)})]})]})}function $d({validation:e}){let{improved:t,before_pass_rate:n,after_pass_rate:r,net_change:i,regressions:a,new_passes:o,per_entry_results:s,validation_mode:c,validation_agent:l,validation_fixture_id:u,validation_fallback_reason:d,...f}=e,p=Array.isArray(a)?a:[],m=Array.isArray(o)?o:[],h=Array.isArray(s)?s:[],g=typeof c==`string`?c:null,_=typeof l==`string`?l:null,v=typeof u==`string`?u:null,y=typeof d==`string`?d:null;return(0,I.jsxs)(`div`,{className:`rounded-md border bg-muted/30 p-3 space-y-3`,children:[(0,I.jsxs)(`p`,{className:`text-xs font-medium text-muted-foreground`,children:[`Validation Results`,(0,I.jsx)(`span`,{className:`font-normal text-muted-foreground/60 ml-1.5`,children:`— Before/after comparison from eval tests`})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-3 flex-wrap`,children:[t!==void 0&&(0,I.jsx)(F,{variant:t?`default`:`destructive`,className:`text-[10px]`,children:t?`Improved`:`Regressed`}),g&&(0,I.jsx)(F,{variant:`outline`,className:`text-[10px] capitalize`,children:g.replace(/_/g,` `)}),_&&(0,I.jsx)(F,{variant:`secondary`,className:`text-[10px]`,children:_}),v&&(0,I.jsxs)(F,{variant:`secondary`,className:`text-[10px] font-mono`,title:v,children:[`fixture #`,v.slice(0,8)]}),typeof n==`number`&&typeof r==`number`&&(0,I.jsxs)(`span`,{className:`text-xs font-mono text-muted-foreground`,children:[(n*100).toFixed(1),`% → `,(r*100).toFixed(1),`%`]}),typeof i==`number`&&(0,I.jsxs)(`span`,{className:`text-xs font-mono font-semibold ${i>0?`text-primary`:`text-destructive`}`,children:[i>0?`+`:``,(i*100).toFixed(1),`%`]})]}),y&&(0,I.jsxs)(`div`,{className:`rounded border border-amber-300/60 bg-amber-50 px-2.5 py-2 text-[11px] text-amber-900 dark:border-amber-900/60 dark:bg-amber-950/30 dark:text-amber-200`,children:[`Replay fallback: `,y]}),m.length>0&&(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`p`,{className:`mb-1 text-[11px] font-medium text-primary`,children:[`New Passes (`,m.length,`)`]}),(0,I.jsx)(`div`,{className:`rounded border bg-card p-2`,children:m.map(e=>(0,I.jsx)(Qd,{entry:typeof e==`object`&&e?e:{value:e}},Zd(`new-pass`,e)))})]}),p.length>0&&(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`p`,{className:`text-[11px] font-medium text-destructive mb-1`,children:[`Regressions (`,p.length,`)`]}),(0,I.jsx)(`div`,{className:`rounded border border-destructive/20 bg-card p-2`,children:p.map(e=>(0,I.jsx)(Qd,{entry:typeof e==`object`&&e?e:{value:e}},Zd(`regression`,e)))})]}),h.length>0&&(0,I.jsx)(ef,{entries:h}),Object.keys(f).length>0&&(0,I.jsx)(`div`,{className:`grid grid-cols-[auto_1fr] gap-x-3 gap-y-1 text-xs`,children:Object.entries(f).map(([e,t])=>(0,I.jsxs)(`div`,{className:`contents`,children:[(0,I.jsx)(`span`,{className:`font-mono text-muted-foreground`,children:e}),(0,I.jsx)(`span`,{className:`text-foreground`,children:Yd(e,t)})]},e))})]})}function ef({entries:e}){let[t,n]=(0,N.useState)(!1),r=e.filter(e=>Xd(e)===!0).length,i=t?e:e.slice(0,5);return(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`flex items-center justify-between mb-1`,children:[(0,I.jsxs)(`p`,{className:`text-[11px] font-medium text-muted-foreground`,children:[`Individual Test Cases (`,r,`/`,e.length,` passed)`]}),e.length>5&&(0,I.jsx)(`button`,{type:`button`,onClick:()=>n(!t),className:`text-[10px] text-primary hover:underline`,children:t?`Show less`:`Show all ${e.length}`})]}),(0,I.jsx)(`div`,{className:`h-1.5 rounded-full bg-muted overflow-hidden mb-2`,children:(0,I.jsx)(`div`,{className:`h-full rounded-full bg-primary transition-all`,style:{width:`${e.length>0?r/e.length*100:0}%`}})}),(0,I.jsx)(`div`,{className:`rounded border bg-card p-2 max-h-[300px] overflow-y-auto`,children:i.map(e=>(0,I.jsx)(Qd,{entry:typeof e==`object`&&e?e:{value:e}},Zd(`per-entry`,e)))})]})}function tf(e){if(!e.validation)return null;let t=e.validation.after_pass_rate;return typeof t==`number`?t:null}function nf({prev:e,curr:t}){if(e===null||t===null)return null;let n=t-e;if(n===0)return null;let r=(n*100).toFixed(1),i=n>0;return(0,I.jsxs)(`span`,{className:`text-[10px] font-mono font-semibold ${i?`text-primary`:`text-destructive`}`,children:[i?`+`:``,r,`% vs previous`]})}function rf({evalSet:e}){let[t,n]=(0,N.useState)(!1),r=e.filter(e=>(e.passed??e.result)===!0).length;return(0,I.jsxs)(`div`,{className:`rounded-md border bg-muted/30 p-3 space-y-2`,children:[(0,I.jsxs)(`button`,{type:`button`,onClick:()=>n(!t),className:`flex items-center gap-1.5 w-full text-left`,children:[t?(0,I.jsx)(ye,{className:`size-3.5 text-muted-foreground shrink-0`}):(0,I.jsx)(te,{className:`size-3.5 text-muted-foreground shrink-0`}),(0,I.jsx)(ne,{className:`size-3.5 text-muted-foreground`}),(0,I.jsxs)(`span`,{className:`text-xs font-medium text-muted-foreground`,children:[`Eval Set (`,r,`/`,e.length,` passed)`]})]}),t&&(0,I.jsx)(`div`,{className:`space-y-1`,children:e.map(e=>{let t=e.query??e.prompt??e.input,n=e.expected??e.should_trigger,r=e.passed??e.result;return(0,I.jsxs)(`div`,{className:`flex items-start gap-2 text-xs py-1 border-b border-border/50 last:border-0`,children:[typeof r==`boolean`?r?(0,I.jsx)(`span`,{className:`mt-1 size-2 shrink-0 rounded-full bg-primary`}):(0,I.jsx)(`span`,{className:`mt-1 size-2 shrink-0 rounded-full bg-destructive`}):(0,I.jsx)(`span`,{className:`mt-1 size-2 shrink-0 rounded-full bg-muted-foreground/60`}),(0,I.jsx)(`span`,{className:`flex-1 min-w-0 line-clamp-2`,children:String(t??JSON.stringify(e))}),n!==void 0&&(0,I.jsxs)(F,{variant:`secondary`,className:`text-[9px] shrink-0`,children:[`expect: `,String(n)]})]},Zd(`eval-set`,e))})})]})}function af({entry:e,roundLabel:t,roundStatus:n,prevPassRate:r,currPassRate:i}){let a=n!==`single`;return(0,I.jsxs)(R,{className:n===`final`?`border-primary/50 shadow-sm`:void 0,children:[(0,I.jsx)(z,{className:`pb-3`,children:(0,I.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,I.jsxs)(B,{className:`text-sm flex items-center gap-2`,children:[(0,I.jsx)(st,{className:`size-4 text-muted-foreground`}),`Evidence: `,e.target,a&&t&&(0,I.jsx)(`span`,{className:`text-[10px] font-mono text-muted-foreground`,children:t}),n===`final`&&(0,I.jsx)(F,{variant:`default`,className:`text-[10px]`,children:`Final`})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[a&&(0,I.jsx)(nf,{prev:r,curr:i}),(0,I.jsx)(F,{variant:`secondary`,className:`text-[10px]`,children:e.stage}),e.confidence!==null&&(0,I.jsxs)(F,{variant:e.confidence>=.8?`default`:e.confidence>=.5?`secondary`:`destructive`,className:`text-[10px] font-mono`,children:[Tr(e.confidence),` confidence`]}),(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:K(e.timestamp)})]})]})}),(0,I.jsxs)(H,{className:`space-y-4`,children:[e.rationale&&(0,I.jsxs)(`div`,{className:`rounded-md border-l-2 border-primary/40 bg-primary/5 px-3 py-2`,children:[(0,I.jsx)(`p`,{className:`text-xs font-medium text-muted-foreground mb-1`,children:`Rationale`}),(0,I.jsx)(`p`,{className:`text-sm leading-relaxed`,children:e.rationale})]}),e.details&&(0,I.jsx)(`p`,{className:`text-xs text-muted-foreground leading-relaxed`,children:e.details}),(e.original_text||e.proposed_text)&&(0,I.jsxs)(`div`,{className:`grid grid-cols-1 gap-4 lg:grid-cols-2`,children:[e.original_text&&(0,I.jsx)(Jd,{label:`Original`,text:e.original_text,variant:`original`}),e.proposed_text&&(0,I.jsx)(Jd,{label:`Proposed`,text:e.proposed_text,variant:`proposed`})]}),e.eval_set&&e.eval_set.length>0&&(0,I.jsx)(rf,{evalSet:e.eval_set}),e.validation&&Object.keys(e.validation).length>0&&(0,I.jsx)($d,{validation:e.validation})]})]})}function of({entry:e,roundLabel:t,onExpand:n}){let r=tf(e),i=e.validation?.improved;return(0,I.jsxs)(`button`,{type:`button`,onClick:n,className:`flex items-center gap-3 w-full rounded-lg border border-dashed px-4 py-3 text-left hover:bg-accent/50 transition-colors`,children:[(0,I.jsx)(te,{className:`size-4 text-muted-foreground shrink-0`}),(0,I.jsx)(st,{className:`size-3.5 text-muted-foreground shrink-0`}),(0,I.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:e.target}),(0,I.jsx)(`span`,{className:`text-[10px] font-mono text-muted-foreground`,children:t}),(0,I.jsxs)(`div`,{className:`flex items-center gap-2 ml-auto shrink-0`,children:[r!==null&&(0,I.jsxs)(`span`,{className:`text-[10px] font-mono text-muted-foreground`,children:[(r*100).toFixed(1),`% pass rate`]}),typeof i==`boolean`&&(0,I.jsx)(F,{variant:i?`default`:`destructive`,className:`text-[9px]`,children:i?`Improved`:`Regressed`}),(0,I.jsx)(F,{variant:`secondary`,className:`text-[10px]`,children:e.stage}),(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:K(e.timestamp)})]})]})}function sf({proposalId:e,evidence:t}){let n=(0,N.useMemo)(()=>t.filter(t=>t.proposal_id===e).sort((e,t)=>new Date(e.timestamp).getTime()-new Date(t.timestamp).getTime()),[t,e]),[r,i]=(0,N.useState)(new Set),a=e=>{i(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},{proposalEntries:o,validationsByTarget:s}=(0,N.useMemo)(()=>{let e=[],t=new Map;for(let r of n)if(r.stage!==`validated`)e.push(r);else{let e=r.target;t.has(e)||t.set(e,[]),t.get(e).push(r)}return{proposalEntries:e,validationsByTarget:t}},[n]);return(0,I.jsxs)(`div`,{className:`space-y-4`,children:[o.map(e=>(0,I.jsx)(af,{entry:e,roundLabel:null,roundStatus:`single`,prevPassRate:null,currPassRate:null},`proposal-${e.target}-${e.timestamp}`)),Array.from(s.entries()).map(([e,t])=>{let n=t.length>1;return(0,I.jsx)(`div`,{className:`space-y-2`,children:t.map((i,o)=>{let s=o===t.length-1,c=n?`Round ${o+1} of ${t.length}`:null,l=o>0?tf(t[o-1]):null,u=tf(i),d=`${e}-${i.timestamp}`,f=n?s?`final`:`intermediate`:`single`;return f===`intermediate`&&!r.has(d)?(0,I.jsx)(of,{entry:i,roundLabel:c,onExpand:()=>a(d)},d):f===`intermediate`&&r.has(d)?(0,I.jsxs)(`div`,{className:`space-y-1`,children:[(0,I.jsxs)(`button`,{type:`button`,onClick:()=>a(d),className:`flex items-center gap-1 text-[10px] text-muted-foreground hover:text-foreground transition-colors px-1`,children:[(0,I.jsx)(ye,{className:`size-3`}),`Collapse `,c]}),(0,I.jsx)(af,{entry:i,roundLabel:c,roundStatus:f,prevPassRate:l,currPassRate:u})]},d):(0,I.jsx)(af,{entry:i,roundLabel:c,roundStatus:f,prevPassRate:l,currPassRate:u},d)})},e)}),n.length===0&&(0,I.jsx)(`div`,{className:`flex items-center justify-center rounded-lg border border-dashed py-8`,children:(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No evidence entries for this proposal`})})]})}var cf={created:`bg-primary/35`,validated:`bg-primary/65`,deployed:`bg-primary`,rejected:`bg-destructive/85`,rolled_back:`bg-destructive/45`},lf={created:`ring-primary/15`,validated:`ring-primary/20`,deployed:`ring-primary/30`,rejected:`ring-destructive/20`,rolled_back:`ring-destructive/15`},uf={created:`bg-primary/12`,validated:`bg-primary/18`,deployed:`bg-primary/30`,rejected:`bg-destructive/18`,rolled_back:`bg-destructive/12`};function df(e){let t=new Map;for(let n of e){let e=t.get(n.proposal_id)??[];e.push(n),t.set(n.proposal_id,e)}for(let e of t.values())e.sort((e,t)=>new Date(e.timestamp).getTime()-new Date(t.timestamp).getTime());return Array.from(t.entries()).sort((e,t)=>{let n=e[1][e[1].length-1],r=t[1][t[1].length-1];return new Date(r.timestamp).getTime()-new Date(n.timestamp).getTime()})}function ff(e){return e[e.length-1].action}function pf(e){for(let t=e.length-1;t>=0;t--)if(e[t].eval_snapshot)return e[t].eval_snapshot;return null}function mf({snapshot:e}){let t=e.net_change;if(t==null)return null;let n=Math.round(t*100),r=n>0;return(0,I.jsxs)(`span`,{className:P(`inline-flex items-center gap-0.5 text-[10px] font-mono font-medium`,r?`text-primary`:`text-destructive`),children:[r?(0,I.jsx)(dt,{className:`size-2.5`}):(0,I.jsx)(Te,{className:`size-2.5`}),r?`+`:``,n,`%`]})}var hf=[{action:`created`,label:`Created`,desc:`Proposal generated from session data`},{action:`validated`,label:`Validated`,desc:`Eval tests run, awaiting deployment`},{action:`deployed`,label:`Deployed`,desc:`Accepted and applied to skill file`},{action:`rejected`,label:`Rejected`,desc:`Failed validation criteria`},{action:`rolled_back`,label:`Rolled Back`,desc:`Reverted after deployment`}];function gf(){let[e,t]=(0,N.useState)(!1);return(0,I.jsxs)(`div`,{className:`px-2 pb-2`,children:[(0,I.jsxs)(`button`,{type:`button`,onClick:()=>t(!e),className:`flex items-center gap-1 text-[10px] text-muted-foreground/70 hover:text-muted-foreground transition-colors w-full`,children:[e?(0,I.jsx)(ye,{className:`size-3`}):(0,I.jsx)(te,{className:`size-3`}),`Lifecycle stages`]}),e&&(0,I.jsx)(`div`,{className:`mt-1.5 space-y-1.5 rounded-md border bg-muted/30 p-2`,children:hf.map(e=>(0,I.jsxs)(`div`,{className:`flex items-start gap-2`,children:[(0,I.jsx)(`div`,{className:P(`size-2 rounded-full mt-1 shrink-0`,cf[e.action])}),(0,I.jsxs)(`div`,{className:`min-w-0`,children:[(0,I.jsx)(`span`,{className:`text-[10px] font-medium`,children:e.label}),(0,I.jsx)(`p`,{className:`text-[10px] text-muted-foreground/70 leading-tight`,children:e.desc})]})]},e.action))})]})}function _f({entries:e,selectedProposalId:t,onSelect:n}){let r=df(e);return r.length===0?(0,I.jsx)(`div`,{className:`flex items-center justify-center rounded-lg border border-dashed py-6 px-3`,children:(0,I.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`No evolution history yet`})}):(0,I.jsxs)(`div`,{className:`flex flex-col gap-0`,children:[(0,I.jsx)(`h2`,{className:`sticky top-0 z-10 px-2 pb-2 text-xs font-semibold uppercase tracking-wider text-muted-foreground`,children:`Evolution`}),(0,I.jsx)(gf,{}),(0,I.jsx)(`nav`,{className:`flex flex-col`,children:r.map(([e,i],a)=>{let o=ff(i),s=t===e,c=i[i.length-1],l=cf[o]??`bg-muted-foreground`,u=lf[o]??`ring-muted-foreground/30`,d=uf[o]??`bg-border`,f=a===r.length-1,p=pf(i);return(0,I.jsxs)(`div`,{className:`relative flex gap-3`,children:[(0,I.jsxs)(`div`,{className:`flex flex-col items-center`,children:[(0,I.jsx)(`div`,{className:P(`size-3 shrink-0 rounded-full ring-2 z-10`,l,u)}),!f&&(0,I.jsx)(`div`,{className:P(`w-0.5 flex-1 min-h-[16px]`,d)})]}),(0,I.jsxs)(`button`,{type:`button`,onClick:()=>n(e),className:P(`flex-1 min-w-0 rounded-md px-2.5 py-2 text-left transition-all mb-1`,`hover:bg-accent/50`,s?`bg-primary/5 ring-1 ring-primary/20`:``),children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,I.jsx)(F,{variant:o===`deployed`?`default`:o===`rejected`||o===`rolled_back`?`destructive`:`secondary`,className:`text-[10px] capitalize`,children:o.replace(`_`,` `)}),(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:K(c.timestamp)})]}),p&&(0,I.jsxs)(`div`,{className:`flex items-center gap-1.5 mt-1`,children:[(0,I.jsx)(mf,{snapshot:p}),p.before_pass_rate!==void 0&&p.after_pass_rate!==void 0&&(0,I.jsxs)(`span`,{className:`text-[10px] text-muted-foreground/60 font-mono`,children:[Math.round(p.before_pass_rate*100),`→`,Math.round(p.after_pass_rate*100),`%`]})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-1.5 mt-1`,children:[(0,I.jsxs)(`span`,{className:`text-[10px] font-mono text-muted-foreground/70`,children:[`#`,e.slice(0,8)]}),i.length>1&&(0,I.jsx)(`div`,{className:`flex gap-0.5 ml-auto`,children:i.map((e,t)=>(0,I.jsx)(`div`,{className:P(`size-1.5 rounded-full`,cf[e.action]??`bg-muted-foreground`)},`${e.action}-${t}`))})]}),c.details&&(0,I.jsx)(`p`,{className:`text-[11px] text-muted-foreground/80 line-clamp-2 mt-1 leading-snug`,children:c.details})]})]},e)})})]})}function vf({text:e}){return(0,I.jsxs)(Ot,{children:[(0,I.jsx)(kt,{className:`inline-flex items-center text-muted-foreground/50 hover:text-muted-foreground transition-colors cursor-help`,onClick:e=>e.preventDefault(),children:(0,I.jsx)(M,{className:`size-3`})}),(0,I.jsx)(At,{side:`top`,className:`max-w-[220px]`,children:e})]})}function yf(e){switch(e){case`repaired_contextual_miss`:return{label:`repaired miss`,variant:`destructive`};case`repaired_trigger`:return{label:`repaired trigger`,variant:`secondary`};case`legacy_materialized`:return{label:`legacy row`,variant:`outline`};default:return null}}function bf(e){switch(e){case`previously_missed`:return{label:`previously missed`,variant:`secondary`};default:return null}}function xf({row:e}){let t=e.workspace_path?e.workspace_path.split(`/`).slice(-2).join(`/`):null,n=yf(e.observation_kind),r=bf(e.historical_context);return(0,I.jsxs)(xt,{className:e.triggered?``:`bg-destructive/5`,children:[(0,I.jsx)(W,{className:`max-w-[420px] truncate py-2 text-[12px]`,title:e.query_text||void 0,children:e.query_text||(0,I.jsx)(`span`,{className:`italic text-muted-foreground/40`,children:`No prompt recorded`})}),(0,I.jsx)(W,{className:`py-2`,children:(0,I.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[e.triggered?(0,I.jsx)(F,{variant:`outline`,className:`text-[10px] font-normal`,children:`triggered`}):(0,I.jsx)(F,{variant:`destructive`,className:`text-[10px] font-normal`,children:`missed`}),n&&(0,I.jsx)(F,{variant:n.variant,className:`text-[10px] font-normal`,children:n.label}),r&&(0,I.jsx)(F,{variant:r.variant,className:`text-[10px] font-normal`,children:r.label})]})}),(0,I.jsx)(W,{className:`py-2 font-mono text-[11px] tabular-nums text-muted-foreground`,children:e.confidence==null?`Not recorded`:`${Math.round(e.confidence*100)}%`}),(0,I.jsx)(W,{className:`py-2`,children:e.invocation_mode?(0,I.jsx)(F,{variant:`secondary`,className:`text-[10px] font-normal`,children:e.invocation_mode}):(0,I.jsx)(`span`,{className:`text-[11px] text-muted-foreground`,children:`Unknown mode`})}),(0,I.jsx)(W,{className:`py-2 text-[11px] text-muted-foreground`,children:e.prompt_kind??`Unclassified`}),(0,I.jsx)(W,{className:`py-2 text-[11px] text-muted-foreground`,children:e.source??`No data`}),(0,I.jsx)(W,{className:`py-2 text-[11px] text-muted-foreground`,children:e.platform??`No data`}),(0,I.jsx)(W,{className:`py-2 font-mono text-[11px] text-muted-foreground`,title:e.workspace_path??void 0,children:t??`No data`}),(0,I.jsx)(W,{className:`py-2`,children:(0,I.jsx)(F,{variant:e.query_origin===`inline_query`?`outline`:e.query_origin===`matched_prompt`?`secondary`:`destructive`,className:`text-[10px] font-normal`,children:e.query_origin})})]})}function Sf({rows:e,emptyMessage:t}){return e.length===0?(0,I.jsx)(`div`,{className:`flex items-center justify-center py-12 text-sm text-muted-foreground`,children:t}):(0,I.jsx)(`div`,{className:`themed-scroll max-h-[340px] overflow-auto`,children:(0,I.jsxs)(vt,{children:[(0,I.jsx)(yt,{children:(0,I.jsxs)(xt,{className:`sticky top-0 z-10 bg-muted/70 backdrop-blur hover:bg-muted/70`,children:[(0,I.jsx)(U,{className:`h-8 font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Prompt`}),(0,I.jsx)(U,{className:`h-8 w-[80px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Status`}),(0,I.jsx)(U,{className:`h-8 w-[70px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Confidence`}),(0,I.jsx)(U,{className:`h-8 w-[80px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Mode`}),(0,I.jsx)(U,{className:`h-8 w-[80px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Kind`}),(0,I.jsx)(U,{className:`h-8 w-[70px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Source`}),(0,I.jsx)(U,{className:`h-8 w-[70px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Platform`}),(0,I.jsx)(U,{className:`h-8 w-[100px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Workspace`}),(0,I.jsx)(U,{className:`h-8 w-[100px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Origin`})]})}),(0,I.jsx)(bt,{children:e.map((e,t)=>(0,I.jsx)(xf,{row:e},`${e.session_id}-${t}`))})]})})}function Cf({label:e,value:t,warn:n}){let r=t==null?null:Math.round(t*100);return(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsx)(`span`,{className:`w-40 shrink-0 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:e}),(0,I.jsx)(`div`,{className:`h-2 flex-1 overflow-hidden rounded-full bg-muted`,children:r!=null&&(0,I.jsx)(`div`,{className:`h-full rounded-full transition-all ${n?`bg-destructive`:`bg-primary`}`,style:{width:`${Math.min(r,100)}%`}})}),(0,I.jsx)(`span`,{className:`w-10 text-right font-mono text-xs tabular-nums ${n?`text-destructive`:`text-muted-foreground`}`,children:r==null?`No data`:`${r}%`})]})}function wf({title:e,data:t}){if(!t||t.length===0)return null;let n=e=>{switch(e){case`repaired_contextual_miss`:return`repaired contextual miss`;case`repaired_trigger`:return`repaired trigger`;case`legacy_materialized`:return`legacy materialized`;default:return e}},r=t.map(e=>[n(e.source??e.kind??`(unknown)`),e.count]).sort(([,e],[,t])=>t-e),i=r.reduce((e,[,t])=>e+t,0);return(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`h4`,{className:`mb-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:e}),(0,I.jsxs)(vt,{children:[(0,I.jsx)(yt,{children:(0,I.jsxs)(xt,{className:`hover:bg-transparent`,children:[(0,I.jsx)(U,{className:`h-7 font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Value`}),(0,I.jsx)(U,{className:`h-7 w-[80px] text-right font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Count`}),(0,I.jsx)(U,{className:`h-7 w-[80px] text-right font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Rate`})]})}),(0,I.jsx)(bt,{children:r.map(([e,t])=>(0,I.jsxs)(xt,{children:[(0,I.jsx)(W,{className:`py-2 text-[11px]`,children:e}),(0,I.jsx)(W,{className:`py-2 text-right font-mono text-[11px]`,children:t}),(0,I.jsx)(W,{className:`py-2 text-right font-mono text-[11px] text-muted-foreground`,children:i>0?`${Math.round(t/i*100)}%`:`0%`})]},e))})]})]})}function Tf({nextAction:e,latestDecision:t}){let n=e.variant===`destructive`?`border-destructive/25`:e.variant===`default`?`border-primary/20`:`border-border/15`;return(0,I.jsxs)(`div`,{className:`grid grid-cols-1 gap-3 @4xl/main:grid-cols-12`,children:[(0,I.jsx)(R,{className:`rounded-xl border bg-muted/35 shadow-none ${t?`@4xl/main:col-span-8`:`@4xl/main:col-span-12`} ${n}`,children:(0,I.jsxs)(H,{className:`flex items-start gap-3 px-4 py-4`,children:[(0,I.jsx)(`div`,{className:`shrink-0 pt-0.5`,children:e.icon}),(0,I.jsxs)(`div`,{className:`flex-1`,children:[(0,I.jsx)(`h3`,{className:`mb-1 font-headline text-[10px] uppercase tracking-[0.18em] text-muted-foreground`,children:`Next Best Action`}),(0,I.jsx)(`p`,{className:`text-[15px] font-medium leading-6 text-foreground`,children:e.text})]}),(0,I.jsx)(F,{variant:e.variant,className:`shrink-0 self-start text-[10px]`,children:e.actionLabel})]})}),t&&(0,I.jsx)(R,{className:`rounded-xl border border-border/10 bg-muted/20 @4xl/main:col-span-4`,children:(0,I.jsxs)(H,{className:`flex h-full items-start gap-3 px-4 py-4`,children:[(0,I.jsx)(k,{className:`mt-0.5 size-4 shrink-0 text-primary/80`}),(0,I.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,I.jsx)(`h3`,{className:`mb-1 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Latest Decision`}),(0,I.jsx)(`p`,{className:`truncate text-sm font-medium leading-6`,children:t.action}),t.timestamp&&(0,I.jsx)(`p`,{className:`mt-0.5 font-mono text-[10px] text-muted-foreground`,children:K(t.timestamp)})]}),(0,I.jsxs)(F,{variant:`outline`,className:`shrink-0 self-start text-[9px]`,children:[t.evolutionCount,` evolution`,t.evolutionCount===1?``:`s`]})]})})]})}function Ef({checks:e,sessions:t,promptLinkRate:n}){return`selftune watched ${e} skill checks across ${t} sessions.${n==null?``:` It could link ${Tr(n)} of those checks back to prompts.`}`}function Df({missRate:e,missedTriggers:t,systemLikeRate:n}){return(t??0)>0&&e!=null?`It found ${t} likely misses (${Tr(e)} miss rate), which means people asked for this skill and it probably should have triggered.`:(n??0)>.05?`Routing looks mostly stable, but some records appear system-generated, so selftune is being cautious about making strong claims.`:`Routing looks consistent in the current sample, with no strong signs that this skill is missing obvious requests.`}function Of({trustState:e,latestAction:t,nextActionText:n}){switch(e){case`validated`:return`selftune found a candidate that looks promising, but it has not been deployed yet. ${n}`;case`deployed`:return`A change has already been deployed for this skill. selftune is now watching for regressions in real use.`;case`rolled_back`:return`A previous change was rolled back, so the live skill is back on the safer version while selftune keeps observing.`;case`watch`:return`selftune sees enough signal to keep a close eye on this skill, but not enough to blindly change it. ${n}`;case`observed`:return`selftune is still learning how people use this skill before making stronger recommendations.`;case`low_sample`:return`There is not enough evidence yet to trust a big change here. selftune is still collecting examples.`;default:return t?`The latest automated decision for this skill was ${t}. ${n}`:n}}function kf({title:e,icon:t,body:n}){return(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 p-4`,children:[(0,I.jsxs)(`div`,{className:`mb-2 flex items-center gap-2`,children:[(0,I.jsx)(`div`,{className:`text-primary/80`,children:t}),(0,I.jsx)(`h3`,{className:`font-headline text-[10px] uppercase tracking-[0.18em] text-muted-foreground`,children:e})]}),(0,I.jsx)(`p`,{className:`text-sm leading-6 text-foreground/90`,children:n})]})}function Af({trustState:e,coverage:t,evidenceQuality:n,routingQuality:r,evolutionState:i,dataHygiene:a,fallbackChecks:o,fallbackSessions:s,nextActionText:c,onOpenGuide:l}){let u=t?.checks??o,d=t?.sessions??s,f=a?.raw_checks??u,p=a?.internal_prompt_rows??0,m=a?.legacy_rows??0,h=a?.repaired_rows??0,g=Math.max(f-u,0)>0||m>0||h>0;return(0,I.jsxs)(R,{className:`rounded-xl border border-border/10 bg-card/95`,children:[(0,I.jsx)(z,{className:`gap-2 px-4 py-4`,children:(0,I.jsxs)(`div`,{className:`flex flex-wrap items-start justify-between gap-3`,children:[(0,I.jsxs)(`div`,{className:`space-y-1`,children:[(0,I.jsx)(B,{className:`text-base`,children:`How selftune is improving this skill`}),(0,I.jsx)(V,{children:`Read this first if you want the plain-English version before diving into the evidence below.`})]}),l&&(0,I.jsx)(L,{variant:`outline`,size:`sm`,onClick:l,children:`How to read this page`})]})}),(0,I.jsxs)(H,{className:`space-y-4 px-4 pb-4 pt-0`,children:[g&&(0,I.jsxs)(`div`,{className:`rounded-xl border border-primary/10 bg-primary/5 px-4 py-3 text-sm text-muted-foreground`,children:[(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:`Trust note:`}),` This summary is based on `,(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:u}),` operational checks from real usage.`,p>0&&(0,I.jsxs)(I.Fragment,{children:[` `,(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:p}),` internal selftune eval or optimizer prompts are excluded from trust scoring.`]}),m>0&&(0,I.jsxs)(I.Fragment,{children:[` `,(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:m}),` legacy rows stay in history only.`]}),h>0&&(0,I.jsxs)(I.Fragment,{children:[` `,(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:h}),` repaired misses come from transcript replay rather than first-party trigger events.`]})]}),(0,I.jsxs)(`div`,{className:`grid grid-cols-1 gap-3 @4xl/main:grid-cols-3`,children:[(0,I.jsx)(kf,{title:`What selftune saw`,icon:(0,I.jsx)(Le,{className:`size-4`}),body:Ef({checks:u,sessions:d,promptLinkRate:n?.prompt_link_rate})}),(0,I.jsx)(kf,{title:`Why it acted`,icon:(0,I.jsx)(w,{className:`size-4`}),body:Df({missRate:r?.miss_rate,missedTriggers:r?.missed_triggers,systemLikeRate:n?.system_like_rate})}),(0,I.jsx)(kf,{title:`What happened next`,icon:(0,I.jsx)(k,{className:`size-4`}),body:Of({trustState:e,latestAction:i?.latest_action,nextActionText:c})})]}),(0,I.jsx)(`div`,{className:`rounded-xl border border-border/10 bg-muted/15 px-4 py-3 text-sm text-muted-foreground`,children:`If a proposal is rejected or still pending, your live skill has not changed yet. selftune only earns trust by testing changes before deployment.`})]})]})}function jf({coverage:e,evidenceQuality:t,routingQuality:n,evolutionState:r,fallbackChecks:i,fallbackSessions:a,fallbackEvidenceRows:o,fallbackEvolutionRows:s,fallbackLatestAction:c}){let l=(r?.evolution_rows??s)>0;return(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`h2`,{className:`mb-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Trust Signals`}),(0,I.jsxs)(`div`,{className:`grid grid-cols-1 gap-3 @xl/main:grid-cols-2 @5xl/main:grid-cols-4`,children:[(0,I.jsx)(R,{className:`rounded-xl border border-border/10 bg-muted/20 transition-colors hover:border-border/20 @container/card`,children:(0,I.jsxs)(z,{className:`gap-2 px-4 py-3`,children:[(0,I.jsxs)(V,{className:`flex items-center gap-1.5`,children:[(0,I.jsx)(Le,{className:`size-3.5`}),(0,I.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Coverage`})]}),(0,I.jsx)(B,{className:`text-[32px] font-semibold leading-none tabular-nums text-foreground`,children:e?.checks??i}),(0,I.jsx)(_t,{children:(0,I.jsxs)(`span`,{className:`font-mono text-[10px] text-muted-foreground`,children:[e?.sessions??a,` sessions /`,` `,e?.workspaces??`No data`,` dirs`]})})]})}),(0,I.jsx)(R,{className:`rounded-xl border border-border/10 bg-muted/20 transition-colors hover:border-border/20 @container/card`,children:(0,I.jsxs)(z,{className:`gap-2 px-4 py-3`,children:[(0,I.jsxs)(V,{className:`flex items-center gap-1.5`,children:[(0,I.jsx)(w,{className:`size-3.5`}),(0,I.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Evidence Quality`}),(0,I.jsx)(vf,{text:`How well prompts are linked to invocations. Higher prompt-link rate = more trustworthy data.`})]}),(0,I.jsx)(B,{className:`text-[32px] font-semibold leading-none tabular-nums text-foreground`,children:t?.prompt_link_rate==null?`No data`:Tr(t.prompt_link_rate)}),(0,I.jsx)(_t,{children:(0,I.jsxs)(`div`,{className:`flex flex-col items-end gap-0.5`,children:[(0,I.jsxs)(`span`,{className:`text-[10px] text-muted-foreground`,children:[`inline:`,` `,t?.inline_query_rate==null?`No data`:Tr(t.inline_query_rate)]}),(t?.system_like_rate??0)>.05&&(0,I.jsxs)(F,{variant:`destructive`,className:`text-[9px]`,children:[Tr(t?.system_like_rate??0),` system-like`]})]})})]})}),(0,I.jsx)(R,{className:`rounded-xl border border-border/10 bg-muted/20 transition-colors hover:border-border/20 @container/card`,children:(0,I.jsxs)(z,{className:`gap-2 px-4 py-3`,children:[(0,I.jsxs)(V,{className:`flex items-center gap-1.5`,children:[(0,I.jsx)(lt,{className:`size-3.5`}),(0,I.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Routing`}),(0,I.jsx)(vf,{text:`Routing accuracy: average confidence when triggering, and miss rate`})]}),(0,I.jsx)(B,{className:`text-[32px] font-semibold leading-none tabular-nums text-foreground`,children:n?.avg_confidence==null?`No data`:Tr(n.avg_confidence)}),(0,I.jsx)(_t,{children:(0,I.jsxs)(`div`,{className:`flex flex-col items-end gap-0.5`,children:[(0,I.jsxs)(`span`,{className:`text-[10px] text-muted-foreground`,children:[`miss:`,` `,n?.miss_rate==null?`No data`:Tr(n.miss_rate)]}),(0,I.jsxs)(`span`,{className:`text-[10px] tabular-nums text-muted-foreground`,children:[n?.missed_triggers??`No data`,` missed`]})]})})]})}),(0,I.jsx)(R,{className:`rounded-xl border border-border/10 bg-muted/20 transition-colors hover:border-border/20 @container/card`,children:(0,I.jsxs)(z,{className:`gap-2 px-4 py-3`,children:[(0,I.jsxs)(V,{className:`flex items-center gap-1.5`,children:[(0,I.jsx)(k,{className:`size-3.5`}),(0,I.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Evolution`})]}),l?(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(B,{className:`text-sm font-medium leading-6`,children:r?.latest_action??c??`No data`}),(0,I.jsx)(_t,{children:(0,I.jsxs)(`div`,{className:`flex flex-col items-end gap-0.5`,children:[(0,I.jsxs)(`span`,{className:`text-[10px] tabular-nums text-muted-foreground`,children:[r?.evidence_rows??o,` evidence`]}),(0,I.jsxs)(`span`,{className:`text-[10px] tabular-nums text-muted-foreground`,children:[r?.evolution_rows??s,` evolution`]}),r?.latest_timestamp&&(0,I.jsx)(`span`,{className:`font-mono text-[10px] text-muted-foreground`,children:K(r.latest_timestamp)})]})})]}):(0,I.jsx)(B,{className:`text-sm font-normal text-muted-foreground`,children:`No evolution yet`})]})})]})]})}function Mf({examples:e}){return!e||e.good.length===0&&e.missed.length===0&&e.noisy.length===0?null:(0,I.jsxs)(R,{className:`rounded-xl border border-border/10 bg-card/90`,children:[(0,I.jsx)(z,{className:`px-4 pb-2 pt-4`,children:(0,I.jsxs)(`div`,{className:`flex items-start justify-between gap-4`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(B,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Prompt Evidence`}),(0,I.jsx)(V,{children:`Representative real usage first. Internal selftune traffic is separated so it does not masquerade as normal skill use.`})]}),(0,I.jsxs)(`div`,{className:`hidden items-center gap-2 text-[10px] text-muted-foreground @3xl/main:flex`,children:[(0,I.jsxs)(`span`,{children:[e.good.length,` successful`]}),(0,I.jsx)(`span`,{className:`text-border`,children:`|`}),(0,I.jsxs)(`span`,{children:[e.missed.length,` missed`]}),(0,I.jsx)(`span`,{className:`text-border`,children:`|`}),(0,I.jsxs)(`span`,{children:[e.noisy.length,` internal/polluted`]})]})]})}),(0,I.jsx)(H,{className:`px-4 pb-4 pt-0`,children:(0,I.jsxs)(St,{defaultValue:`good`,children:[(0,I.jsxs)(wt,{variant:`line`,className:`min-h-0 rounded-xl border border-border/10 bg-muted/20 px-1.5 py-1`,children:[(0,I.jsxs)(Tt,{value:`good`,className:`rounded-lg px-3 data-active:bg-background/70 data-active:text-foreground`,children:[`Successful Triggers`,(0,I.jsx)(F,{variant:`outline`,className:`ml-1.5 text-[10px]`,children:e.good.length})]}),(0,I.jsxs)(Tt,{value:`missed`,className:`rounded-lg px-3 data-active:bg-background/70 data-active:text-foreground`,children:[`Missed Real Usage`,(0,I.jsx)(F,{variant:e.missed.length>0?`destructive`:`outline`,className:`ml-1.5 text-[10px]`,children:e.missed.length})]}),(0,I.jsxs)(Tt,{value:`noisy`,className:`rounded-lg px-3 data-active:bg-background/70 data-active:text-foreground`,children:[`Internal / Polluted`,(0,I.jsx)(F,{variant:e.noisy.length>0?`destructive`:`outline`,className:`ml-1.5 text-[10px]`,children:e.noisy.length})]})]}),(0,I.jsx)(Et,{value:`good`,className:`mt-2`,children:(0,I.jsx)(Sf,{rows:e.good,emptyMessage:`No successful trigger samples yet.`})}),(0,I.jsx)(Et,{value:`missed`,className:`mt-2`,children:(0,I.jsx)(Sf,{rows:e.missed,emptyMessage:`No missed real-usage samples detected.`})}),(0,I.jsx)(Et,{value:`noisy`,className:`mt-2`,children:(0,I.jsx)(Sf,{rows:e.noisy,emptyMessage:`No internal or polluted samples detected.`})})]})})]})}function Nf({evidenceQuality:e,dataHygiene:t}){return(0,I.jsxs)(`div`,{className:`grid grid-cols-1 gap-6 @5xl/main:grid-cols-2 @5xl/main:items-start`,children:[(0,I.jsxs)(R,{className:`rounded-2xl border border-border/15 bg-card`,children:[(0,I.jsx)(z,{children:(0,I.jsxs)(B,{className:`flex items-center gap-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:[(0,I.jsx)(ve,{className:`size-4`}),`Evidence Quality Rates`]})}),(0,I.jsxs)(H,{className:`space-y-3 p-4`,children:[(0,I.jsx)(Cf,{label:`Prompt-linked`,value:e?.prompt_link_rate}),(0,I.jsx)(Cf,{label:`Inline query`,value:e?.inline_query_rate}),(0,I.jsx)(Cf,{label:`User prompt`,value:e?.user_prompt_rate}),(0,I.jsx)(Cf,{label:`Meta prompt`,value:e?.meta_prompt_rate}),(0,I.jsx)(Cf,{label:`No prompt`,value:e?.no_prompt_rate}),(0,I.jsx)(Cf,{label:`System-like`,value:e?.system_like_rate,warn:(e?.system_like_rate??0)>.05}),(0,I.jsx)(`div`,{className:`mt-3 border-t border-border/40 pt-3`}),(0,I.jsx)(Cf,{label:`Invocation mode`,value:e?.invocation_mode_coverage}),(0,I.jsx)(Cf,{label:`Confidence`,value:e?.confidence_coverage}),(0,I.jsx)(Cf,{label:`Source`,value:e?.source_coverage}),(0,I.jsx)(Cf,{label:`Scope`,value:e?.scope_coverage})]})]}),t&&(0,I.jsxs)(R,{className:`rounded-2xl border border-border/15 bg-card`,children:[(0,I.jsx)(z,{children:(0,I.jsxs)(B,{className:`flex items-center gap-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:[(0,I.jsx)(ee,{className:`size-4`}),`Data Hygiene`]})}),(0,I.jsxs)(H,{className:`space-y-6 p-4`,children:[(0,I.jsxs)(`div`,{className:`grid grid-cols-2 gap-3`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/30 p-3`,children:[(0,I.jsx)(`div`,{className:`text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Raw vs Operational`}),(0,I.jsxs)(`div`,{className:`mt-2 flex items-end gap-2`,children:[(0,I.jsx)(`div`,{className:`text-lg font-semibold tabular-nums text-foreground`,children:t.operational_checks}),(0,I.jsxs)(`div`,{className:`pb-0.5 text-xs text-muted-foreground`,children:[`of `,t.raw_checks,` checks`]})]}),(0,I.jsx)(`p`,{className:`mt-1 text-[11px] text-muted-foreground`,children:`Operational checks exclude internal selftune eval and optimizer traffic.`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/30 p-3`,children:[(0,I.jsx)(`div`,{className:`text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Historical Residue`}),(0,I.jsxs)(`div`,{className:`mt-2 flex items-end gap-2`,children:[(0,I.jsx)(`div`,{className:`text-lg font-semibold tabular-nums text-foreground`,children:t.legacy_rows}),(0,I.jsxs)(`div`,{className:`pb-0.5 text-xs text-muted-foreground`,children:[`legacy / `,t.repaired_rows,` repaired`]})]}),(0,I.jsx)(`p`,{className:`mt-1 text-[11px] text-muted-foreground`,children:`Legacy rows are older materialized history. Repaired rows are transcript-based reconstructions.`})]})]}),t.naming_variants&&t.naming_variants.length>1&&(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`h4`,{className:`mb-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Naming Variants`}),(0,I.jsx)(`div`,{className:`flex flex-wrap gap-1.5`,children:t.naming_variants.map(e=>(0,I.jsx)(F,{variant:`outline`,className:`font-mono text-[10px]`,children:e},e))}),(0,I.jsx)(`p`,{className:`mt-1 text-[11px] text-muted-foreground`,children:`Multiple naming variants may indicate inconsistent skill registration.`})]}),(0,I.jsx)(wf,{title:`Source Breakdown`,data:t.source_breakdown}),(0,I.jsx)(wf,{title:`Prompt Kind Breakdown`,data:t.prompt_kind_breakdown}),(0,I.jsx)(wf,{title:`Observation Breakdown`,data:t.observation_breakdown})]})]})]})}function Pf({sessionId:e,meta:t,invocations:n,defaultExpanded:r}){let[i,a]=(0,N.useState)(r),o=t?.started_at??n[0]?.timestamp,s=n.reduce((e,t)=>{let n=t.invocation_mode??`unknown`;return e[n]=(e[n]??0)+1,e},{}),c=e=>{let n=t?.agent_cli?.replace(/_/g,` `),r=t?.platform?.replace(/_/g,` `);return e.agent_type&&e.agent_type!==`main`?{label:e.agent_type,hint:n?`${n} subagent`:`subagent invocation`}:n?{label:n,hint:e.agent_type===`main`?`main agent invocation`:`session agent that invoked the skill`}:r?{label:r,hint:e.agent_type===`main`?`main agent invocation`:`session platform`}:e.agent_type?{label:e.agent_type,hint:`recorded subagent type`}:{label:`No data`,hint:`invoker was not captured in this record`}};return(0,I.jsxs)(`div`,{className:`overflow-hidden rounded-lg border border-slate-200 transition-colors dark:border-slate-800`,children:[(0,I.jsxs)(`button`,{type:`button`,className:`flex w-full items-center gap-3 px-4 py-3 text-left transition-colors hover:bg-slate-50 active:bg-slate-100 dark:hover:bg-slate-800/40 dark:active:bg-slate-800/60`,onClick:()=>a(!i),children:[(0,I.jsx)(te,{className:`size-3.5 shrink-0 text-slate-400 transition-transform duration-150 dark:text-slate-500 ${i?`rotate-90`:``}`}),(0,I.jsxs)(`div`,{className:`flex min-w-0 flex-1 flex-col gap-1`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsxs)(`span`,{className:`text-sm font-medium text-slate-900 dark:text-white`,children:[n.length,` invocation`,n.length===1?``:`s`]}),(0,I.jsx)(`span`,{className:`text-xs text-slate-500 dark:text-slate-400`,children:o?K(o):``})]}),(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-1.5`,children:[t?.model&&(0,I.jsx)(F,{variant:`secondary`,className:`text-[10px] font-normal`,children:t.model}),t?.workspace_path&&(0,I.jsx)(`span`,{className:`font-mono text-[11px] text-slate-500 dark:text-slate-400`,title:t.workspace_path,children:t.workspace_path.split(`/`).slice(-2).join(`/`)})]})]}),!i&&(0,I.jsx)(`div`,{className:`flex shrink-0 items-center gap-1`,children:Object.entries(s).map(([e,t])=>(0,I.jsxs)(F,{variant:`outline`,className:`gap-1 text-[10px] font-normal`,children:[e,` `,(0,I.jsx)(`span`,{className:`text-slate-400 dark:text-slate-500`,children:t})]},e))}),(0,I.jsx)(`span`,{className:`shrink-0 font-mono text-[10px] text-slate-300 dark:text-slate-600`,children:e.substring(0,8)})]}),i&&(0,I.jsx)(`div`,{className:`overflow-x-auto border-t border-slate-200 dark:border-slate-800`,children:(0,I.jsxs)(vt,{children:[(0,I.jsx)(yt,{children:(0,I.jsxs)(xt,{className:`bg-slate-50 hover:bg-slate-50 dark:bg-slate-800/40 dark:hover:bg-slate-800/40`,children:[(0,I.jsxs)(U,{className:`h-8 text-[10px] font-semibold uppercase tracking-[0.15em]`,children:[`Prompt `,(0,I.jsx)(vf,{text:`The user prompt that led to this skill being invoked`})]}),(0,I.jsxs)(U,{className:`h-8 w-[90px] text-[10px] font-semibold uppercase tracking-[0.15em]`,children:[`Mode`,` `,(0,I.jsx)(vf,{text:`explicit = user typed /skillname; implicit = user mentioned skill by name; inferred = agent chose skill autonomously`})]}),(0,I.jsxs)(U,{className:`h-8 w-[70px] text-[10px] font-semibold uppercase tracking-[0.15em]`,children:[`Confidence`,` `,(0,I.jsx)(vf,{text:`Model's confidence score (0-100%) when routing this prompt to the skill`})]}),(0,I.jsxs)(U,{className:`h-8 w-[110px] text-[10px] font-semibold uppercase tracking-[0.15em]`,children:[`Invoker`,` `,(0,I.jsx)(vf,{text:`Who invoked the skill. Prefers subagent type when present, otherwise falls back to the session agent or platform.`})]}),(0,I.jsx)(U,{className:`h-8 w-[120px] text-[10px] font-semibold uppercase tracking-[0.15em]`,children:`Evidence`}),(0,I.jsx)(U,{className:`h-8 w-[70px] text-right text-[10px] font-semibold uppercase tracking-[0.15em]`,children:`Time`})]})}),(0,I.jsx)(bt,{children:n.map((e,t)=>(0,I.jsxs)(xt,{className:e.triggered?``:`bg-red-50/50 dark:bg-red-950/10`,children:[(0,I.jsxs)(W,{className:`max-w-[500px] truncate py-2 text-sm`,title:e.query||void 0,children:[e.query||(0,I.jsx)(`span`,{className:`italic text-slate-300 dark:text-slate-600`,children:`No prompt recorded`}),!e.triggered&&(0,I.jsx)(F,{variant:`destructive`,className:`ml-2 text-[10px] font-normal`,children:`missed`})]}),(0,I.jsx)(W,{className:`py-2`,children:e.invocation_mode?(0,I.jsx)(F,{variant:`secondary`,className:`text-[10px] font-normal`,children:e.invocation_mode}):(0,I.jsx)(`span`,{className:`text-[11px] text-slate-400 dark:text-slate-500`,children:`Unknown mode`})}),(0,I.jsx)(W,{className:`py-2 font-mono text-xs tabular-nums text-slate-600 dark:text-slate-300`,children:e.confidence===null?`Not recorded`:`${Math.round(e.confidence*100)}%`}),(0,I.jsx)(W,{className:`py-2`,children:(()=>{let t=c(e);return t.label===`No data`?(0,I.jsx)(`span`,{className:`text-[11px] text-slate-400 dark:text-slate-500`,title:t.hint,children:t.label}):(0,I.jsx)(F,{variant:e.agent_type&&e.agent_type!==`main`?`outline`:`secondary`,className:`text-[10px] font-normal capitalize`,title:t.hint,children:t.label})})()}),(0,I.jsx)(W,{className:`py-2`,children:(()=>{let t=yf(e.observation_kind),n=bf(e.historical_context);return t?(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-1.5`,children:[(0,I.jsx)(F,{variant:t.variant,className:`text-[10px] font-normal`,children:t.label}),n&&(0,I.jsx)(F,{variant:n.variant,className:`text-[10px] font-normal`,children:n.label})]}):(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-1.5`,children:[(0,I.jsx)(`span`,{className:`text-[11px] text-slate-400 dark:text-slate-500`,children:`canonical`}),n&&(0,I.jsx)(F,{variant:n.variant,className:`text-[10px] font-normal`,children:n.label})]})})()}),(0,I.jsx)(W,{className:`whitespace-nowrap py-2 text-right font-mono text-[11px] text-slate-400 dark:text-slate-500`,children:e.timestamp?K(e.timestamp):``})]},t))})]})})]})}function Ff({invocations:e,sessionMetadata:t=[]}){let[n,r]=(0,N.useState)(`all`),i=(0,N.useMemo)(()=>new Map(t.map(e=>[e.session_id,e])),[t]),a=(0,N.useMemo)(()=>{switch(n){case`misses`:return e.filter(e=>!e.triggered);case`low_confidence`:return e.filter(e=>e.confidence!==null&&e.confidence<.5);default:return e}},[e,n]),o=(0,N.useMemo)(()=>{let e=new Map;for(let t of a){let n=t.session_id??`unknown`,r=e.get(n);r?r.push(t):e.set(n,[t])}return[...e.entries()].sort(([,e],[,t])=>(t[0]?.timestamp??``).localeCompare(e[0]?.timestamp??``))},[a]);return e.length===0?(0,I.jsx)(`div`,{className:`flex items-center justify-center rounded-lg border border-dashed border-slate-300 py-12 dark:border-slate-700`,children:(0,I.jsx)(`p`,{className:`text-sm text-slate-500 dark:text-slate-400`,children:`No invocation records yet. Invocations appear when skills are triggered during real sessions.`})}):(0,I.jsxs)(`div`,{className:`space-y-3`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center justify-between gap-2`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-2`,children:[(0,I.jsx)(j,{className:`size-3.5 text-slate-400 dark:text-slate-500`}),[[`all`,`All`],[`misses`,`Misses`],[`low_confidence`,`Low confidence`]].map(([e,t])=>(0,I.jsx)(`button`,{type:`button`,onClick:()=>r(e),className:`inline-block`,children:(0,I.jsx)(F,{variant:n===e?`default`:`outline`,className:`cursor-pointer text-[10px]`,children:t})},e))]}),(0,I.jsxs)(`span`,{className:`text-xs text-slate-500 dark:text-slate-400`,children:[a.length,` invocations across `,o.length,` sessions`]})]}),(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-x-4 gap-y-1 text-[11px] text-slate-500 dark:text-slate-400`,children:[(0,I.jsxs)(`span`,{className:`inline-flex items-center gap-1.5`,children:[(0,I.jsx)(`span`,{className:`size-1.5 rounded-full bg-slate-400`}),`explicit = user typed /skill`]}),(0,I.jsxs)(`span`,{className:`inline-flex items-center gap-1.5`,children:[(0,I.jsx)(`span`,{className:`size-1.5 rounded-full bg-slate-400`}),`implicit = mentioned by name`]}),(0,I.jsxs)(`span`,{className:`inline-flex items-center gap-1.5`,children:[(0,I.jsx)(`span`,{className:`size-1.5 rounded-full bg-slate-400`}),`inferred = agent chose autonomously`]}),(0,I.jsxs)(`span`,{className:`inline-flex items-center gap-1.5`,children:[(0,I.jsx)(`span`,{className:`size-1.5 rounded-full bg-red-400`}),`missed = skill should have triggered`]})]}),o.length===0?(0,I.jsx)(`div`,{className:`flex items-center justify-center py-8 text-sm text-slate-500 dark:text-slate-400`,children:`No invocations match this filter.`}):o.map(([e,t],n)=>(0,I.jsx)(Pf,{sessionId:e,meta:i.get(e),invocations:t,defaultExpanded:n<3},e))]})}var If={healthy:{color:`bg-emerald-400`,glow:`shadow-[0_0_12px_rgba(52,211,153,0.6)]`},watching:{color:`bg-cyan-400`,glow:`shadow-[0_0_12px_rgba(79,242,255,0.6)]`},needs_review:{color:`bg-amber-400`,glow:`shadow-[0_0_12px_rgba(251,191,36,0.6)]`},blocked:{color:`bg-red-400`,glow:`shadow-[0_0_12px_rgba(248,113,113,0.6)]`}},Lf={healthy:`Healthy`,watching:`Watching`,needs_review:`Needs Review`,blocked:`Blocked`},Rf={critical:{dot:`bg-red-400`,text:`text-red-400`,bg:`bg-red-500/10`},warning:{dot:`bg-amber-400`,text:`text-amber-400`,bg:`bg-amber-500/10`},info:{dot:`bg-cyan-400`,text:`text-primary`,bg:`bg-cyan-400/10`}},zf={proposal_created:`bg-cyan-400`,proposal_rejected:`bg-red-400`,validation_failed:`bg-amber-400`,proposal_deployed:`bg-emerald-400`,rollback_triggered:`bg-red-400`,regression_found:`bg-amber-400`},Bf={at_risk:{label:`At Risk`,accent:`text-red-400`,dot:`bg-red-400`},improving:{label:`Improving`,accent:`text-primary`,dot:`bg-cyan-400`},uncertain:{label:`Uncertain`,accent:`text-amber-400`,dot:`bg-amber-400`},stable:{label:`Stable`,accent:`text-muted-foreground`,dot:`bg-muted-foreground/60`}},Vf=[{id:`autonomy-bar-1`,height:35},{id:`autonomy-bar-2`,height:55},{id:`autonomy-bar-3`,height:40},{id:`autonomy-bar-4`,height:70},{id:`autonomy-bar-5`,height:45},{id:`autonomy-bar-6`,height:80},{id:`autonomy-bar-7`,height:30},{id:`autonomy-bar-8`,height:65},{id:`autonomy-bar-9`,height:50},{id:`autonomy-bar-10`,height:75},{id:`autonomy-bar-11`,height:38},{id:`autonomy-bar-12`,height:60},{id:`autonomy-bar-13`,height:42},{id:`autonomy-bar-14`,height:72}];function Hf({status:e,lastRun:t,actions:n}){let r=If[e.level],i=e.attention_required>0?{value:e.attention_required,label:`Attention Required`}:{value:e.skills_observed,label:`Skills Observed`};return(0,I.jsxs)(R,{className:`relative min-h-[332px] border-none bg-gradient-to-br from-muted via-muted to-primary/5 shadow-none py-0 ring-0`,children:[(0,I.jsx)(`div`,{className:`absolute inset-0 flex items-end justify-around px-8 pb-24 pt-20 opacity-[0.08] pointer-events-none`,children:Vf.map(e=>(0,I.jsx)(`div`,{className:`flex-1 rounded-t-sm min-w-[12px]`,style:{height:`${e.height}%`,backgroundColor:`rgba(79, 242, 255, ${.15+e.height/100*.3})`}},e.id))}),(0,I.jsxs)(z,{className:`relative z-10 px-8 pt-8 pb-0`,children:[(0,I.jsxs)(`div`,{className:`flex items-start gap-3`,children:[(0,I.jsx)(`span`,{className:`mt-2 size-3.5 shrink-0 rounded-full animate-pulse ${r.color} ${r.glow}`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Autonomy Status`}),(0,I.jsx)(B,{className:`text-2xl font-extrabold tracking-tight text-foreground`,children:Lf[e.level]}),(0,I.jsx)(V,{className:`mt-1.5 max-w-xl text-[13px] leading-relaxed text-muted-foreground`,children:e.summary})]})]}),(0,I.jsx)(_t,{children:(0,I.jsxs)(`div`,{className:`text-right shrink-0`,children:[(0,I.jsx)(`p`,{className:`text-5xl font-extrabold text-primary leading-none`,style:{filter:`drop-shadow(0 0 8px rgba(79,242,255,0.3))`},children:i.value}),(0,I.jsx)(`p`,{className:`text-[10px] uppercase tracking-[0.2em] text-muted-foreground mt-1.5`,children:i.label})]})})]}),(0,I.jsx)(`div`,{className:`flex-1 min-h-6`}),(0,I.jsxs)(H,{className:`relative z-10 flex flex-col gap-5 px-8 pb-8 pt-0`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-2.5 text-xs`,children:[(0,I.jsxs)(`div`,{className:`rounded-full border border-border/40 bg-background/60 px-3 py-1.5 backdrop-blur-sm shadow-[inset_0_1px_0_rgba(255,255,255,0.02)]`,children:[(0,I.jsx)(`span`,{className:`text-[10px] uppercase tracking-[0.18em] text-muted-foreground/70`,children:`Last Run`}),(0,I.jsx)(`span`,{className:`ml-2 font-medium text-foreground`,children:t?K(t):`Never`})]}),(0,I.jsxs)(`div`,{className:`rounded-full border border-border/40 bg-background/60 px-3 py-1.5 backdrop-blur-sm shadow-[inset_0_1px_0_rgba(255,255,255,0.02)]`,children:[(0,I.jsx)(`span`,{className:`text-[10px] uppercase tracking-[0.18em] text-muted-foreground/70`,children:`Skills`}),(0,I.jsx)(`span`,{className:`ml-2 font-medium text-foreground`,children:e.skills_observed})]}),(0,I.jsxs)(`div`,{className:`rounded-full border border-primary/20 bg-primary/10 px-3 py-1.5 backdrop-blur-sm`,children:[(0,I.jsx)(`span`,{className:`text-[10px] uppercase tracking-[0.18em] text-primary/80`,children:`Pending`}),(0,I.jsx)(`span`,{className:`ml-2 font-semibold text-primary`,children:e.pending_reviews})]})]}),n??(e.attention_required>0?(0,I.jsx)(`a`,{href:`#supervision-feed`,className:`inline-flex w-fit items-center justify-center rounded-lg bg-primary px-4 py-2 text-sm font-medium text-primary-foreground transition-colors hover:bg-primary/80`,children:`Review Attention Queue`}):(0,I.jsx)(`span`,{className:`text-sm text-muted-foreground/70`,children:`No action needed`}))]})]})}function Uf({entries:e,renderSkillLink:t,footer:n}){let r=(0,N.useMemo)(()=>{let t=[`at_risk`,`improving`,`uncertain`,`stable`],n={at_risk:[],improving:[],uncertain:[],stable:[]};for(let t of e)n[t.bucket].push(t);return t.filter(e=>n[e].length>0).map(e=>({bucket:e,items:n[e]}))},[e]);return(0,I.jsxs)(R,{"data-parity-root":`overview-trust-watchlist`,className:`border-none bg-muted shadow-none py-0 max-h-[360px] ring-0`,children:[(0,I.jsxs)(z,{className:`px-5 pt-5 pb-0`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Trust Watchlist`}),(0,I.jsx)(V,{className:`mt-1 text-[11px] text-muted-foreground/70`,children:`Highest-risk skills worth checking next.`})]}),(0,I.jsx)(_t,{children:(0,I.jsxs)(`span`,{className:`text-[10px] text-muted-foreground/70 shrink-0`,children:[e.length,` skills`]})})]}),r.length===0?(0,I.jsx)(H,{className:`flex flex-1 items-center justify-center px-5 py-4`,children:(0,I.jsx)(`p`,{className:`text-xs text-muted-foreground/70`,children:`No skills tracked yet.`})}):(0,I.jsx)(H,{className:`space-y-3 overflow-y-auto min-h-0 flex-1 px-5 py-4`,children:r.map(({bucket:e,items:n})=>(0,I.jsx)(Wf,{bucket:e,items:n,renderSkillLink:t},e))}),n?(0,I.jsx)(H,{className:`mt-auto px-5 pb-5 pt-1 shrink-0`,children:n}):null]})}function Wf({bucket:e,items:t,renderSkillLink:n}){let r=Bf[e],[i,a]=(0,N.useState)(!1),[o,s]=(0,N.useState)(!1),c=i?o?t:t.slice(0,5):[];return(0,I.jsxs)(`div`,{className:`rounded-xl bg-background/40 px-3 py-2.5`,children:[(0,I.jsxs)(`button`,{type:`button`,onClick:()=>a(!i),className:`flex w-full items-center gap-1.5 text-left`,children:[(0,I.jsx)(`span`,{className:`size-1.5 shrink-0 rounded-full ${r.dot}`}),(0,I.jsx)(ye,{className:`size-3 text-muted-foreground transition-transform ${i?``:`-rotate-90`}`}),(0,I.jsx)(`span`,{className:`text-xs font-medium ${r.accent}`,children:r.label}),(0,I.jsxs)(`span`,{className:`text-[10px] text-muted-foreground/70`,children:[`(`,t.length,`)`]})]}),i&&(0,I.jsxs)(`div`,{className:`mt-2 space-y-1`,children:[c.map(e=>(0,I.jsxs)(`div`,{className:`rounded-lg px-2 py-1.5 transition-colors hover:bg-background/55`,children:[(0,I.jsxs)(`div`,{className:`flex items-baseline justify-between gap-2`,children:[n?n(e.skill_name):(0,I.jsx)(`span`,{className:`text-[11px] font-medium text-foreground truncate`,children:e.skill_name}),e.pass_rate!=null&&(0,I.jsxs)(`span`,{className:`text-[10px] text-muted-foreground shrink-0`,children:[Math.round(e.pass_rate*100),`%`]})]}),(0,I.jsx)(`p`,{className:`mt-0.5 line-clamp-1 text-[10px] text-muted-foreground/70`,children:e.reason})]},e.skill_name)),t.length>5&&!o&&(0,I.jsxs)(`button`,{type:`button`,onClick:()=>s(!0),className:`pl-2 text-[10px] text-primary hover:underline`,children:[`+`,t.length-5,` more`]})]})]})}function Gf({attention:e,decisions:t,renderSkillLink:n}){return(0,I.jsxs)(R,{id:`supervision-feed`,"data-parity-root":`overview-supervision-feed`,className:`relative overflow-hidden border-none bg-muted shadow-none py-0 scroll-mt-6 ring-0`,children:[(0,I.jsx)(`div`,{className:`pointer-events-none absolute inset-x-0 top-0 h-20 bg-gradient-to-b from-primary/5 via-transparent to-transparent`}),(0,I.jsxs)(St,{defaultValue:`attention`,className:`gap-0`,children:[(0,I.jsxs)(z,{className:`relative px-5 pt-4 pb-0`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Supervision Feed`}),(0,I.jsx)(V,{className:`mt-1 text-[13px] text-muted-foreground/70`,children:`What needs review and what selftune just decided.`})]}),(0,I.jsxs)(wt,{variant:`line`,className:`mt-3`,children:[(0,I.jsxs)(Tt,{value:`attention`,className:`text-xs uppercase tracking-[0.15em]`,children:[`Attention Required`,e.length>0&&(0,I.jsx)(F,{variant:`secondary`,className:`ml-1.5 text-[10px] py-0 px-1.5`,children:e.length})]}),(0,I.jsxs)(Tt,{value:`decisions`,className:`text-xs uppercase tracking-[0.15em]`,children:[`Recent Decisions`,t.length>0&&(0,I.jsx)(`span`,{className:`ml-1.5 text-[10px] text-muted-foreground`,children:t.length})]})]})]}),(0,I.jsxs)(H,{className:`max-h-[440px] overflow-y-auto px-5 py-5`,children:[(0,I.jsx)(Et,{value:`attention`,children:(0,I.jsx)(Kf,{attention:e,renderSkillLink:n})}),(0,I.jsx)(Et,{value:`decisions`,children:(0,I.jsx)(qf,{decisions:t,renderSkillLink:n})})]})]})]})}function Kf({attention:e,renderSkillLink:t}){let[n,r]=(0,N.useState)(!1);return e.length===0?(0,I.jsxs)(`div`,{className:`flex items-center gap-3 py-4`,children:[(0,I.jsx)(A,{className:`size-5 text-emerald-400`}),(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`Nothing needs your attention`})]}):(0,I.jsxs)(`div`,{className:`space-y-2`,children:[(n?e:e.slice(0,6)).map(e=>{let n=Rf[e.severity];return(0,I.jsxs)(`div`,{className:`flex items-start gap-3 rounded-xl bg-background/40 px-3 py-3 transition-colors hover:bg-background/55`,children:[(0,I.jsx)(`span`,{className:`mt-1.5 size-2 shrink-0 rounded-full ${n.dot}`}),(0,I.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2 flex-wrap`,children:[t?t(e.skill_name):(0,I.jsx)(`span`,{className:`text-sm font-medium text-foreground`,children:e.skill_name}),(0,I.jsx)(F,{variant:`outline`,className:`text-[10px] font-normal ${n.text} ${n.bg} border-transparent`,children:e.category.replace(/_/g,` `)})]}),(0,I.jsx)(`p`,{className:`mt-0.5 line-clamp-1 text-sm text-muted-foreground`,children:e.reason}),(0,I.jsx)(`p`,{className:`mt-0.5 line-clamp-1 text-xs text-muted-foreground/70`,children:e.recommended_action})]}),(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground/70 shrink-0 mt-0.5`,children:e.timestamp?K(e.timestamp):``})]},`${e.skill_name}-${e.category}`)}),e.length>6&&!n&&(0,I.jsx)(`div`,{className:`pt-3`,children:(0,I.jsxs)(`button`,{type:`button`,onClick:()=>r(!0),className:`text-xs text-primary hover:underline`,children:[`Show all `,e.length,` attention items`]})})]})}function qf({decisions:e,renderSkillLink:t}){let[n,r]=(0,N.useState)(!1),i=n?e:e.slice(0,10),a=(0,N.useMemo)(()=>{let e=new Map;return i.map(t=>{let n=`${t.timestamp}-${t.skill_name}-${t.kind}`,r=e.get(n)??0;return e.set(n,r+1),{decision:t,key:`${n}-${r}`}})},[i]);return e.length===0?(0,I.jsx)(`p`,{className:`text-xs text-muted-foreground/70 py-4`,children:`No autonomous decisions yet.`}):(0,I.jsxs)(`div`,{className:`space-y-1`,children:[a.map(({decision:e,key:n})=>{let r=zf[e.kind];return(0,I.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded-xl bg-background/30 px-3 py-2 transition-colors hover:bg-background/45`,children:[(0,I.jsx)(`span`,{className:`mt-1.5 size-2 shrink-0 rounded-full ${r}`}),(0,I.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[t?t(e.skill_name):(0,I.jsx)(`span`,{className:`text-xs font-medium text-foreground truncate block`,children:e.skill_name}),(0,I.jsx)(`p`,{className:`line-clamp-2 text-xs text-muted-foreground`,children:e.summary})]}),(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground/70 shrink-0 mt-0.5`,children:K(e.timestamp)})]},n)}),e.length>10&&!n&&(0,I.jsxs)(`button`,{type:`button`,onClick:()=>r(!0),className:`text-xs text-primary hover:underline mt-1 pl-2`,children:[`Show all (`,e.length,`)`]})]})}N.createContext(null);var Jf=`selftune.skill-report-onboarding-dismissed`;function Yf({open:e,onOpenChange:t}){let n=(0,N.useRef)(null);return(0,N.useEffect)(()=>{if(!e)return;let n=e=>{e.key===`Escape`&&t(!1)};return document.addEventListener(`keydown`,n),()=>document.removeEventListener(`keydown`,n)},[e,t]),e?(0,I.jsxs)(`div`,{className:`fixed inset-0 z-50 flex justify-end`,children:[(0,I.jsx)(`div`,{className:`absolute inset-0 bg-black/40 backdrop-blur-[2px] transition-opacity`,onClick:()=>t(!1)}),(0,I.jsxs)(`div`,{ref:n,className:`relative z-10 w-full max-w-lg overflow-y-auto bg-white shadow-xl dark:bg-slate-900 animate-in slide-in-from-right duration-200`,children:[(0,I.jsxs)(`div`,{className:`sticky top-0 z-10 flex items-center justify-between border-b border-slate-200 bg-white px-6 py-4 dark:border-slate-800 dark:bg-slate-900`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`h2`,{className:`text-lg font-semibold text-slate-900 dark:text-white`,children:`How to read this page`}),(0,I.jsx)(`p`,{className:`mt-0.5 text-sm text-slate-500 dark:text-slate-400`,children:`selftune earns trust by showing what it observed, what it proposed, how it tested the change, and what happened next.`})]}),(0,I.jsx)(L,{variant:`ghost`,className:`shrink-0 rounded-full p-1.5`,onClick:()=>t(!1),children:(0,I.jsx)(Ne,{className:`size-4`})})]}),(0,I.jsxs)(`div`,{className:`space-y-8 px-6 py-6`,children:[(0,I.jsxs)(`section`,{className:`space-y-3`,children:[(0,I.jsx)(`h3`,{className:`text-[10px] font-semibold uppercase tracking-[0.18em] text-slate-400 dark:text-slate-500`,children:`The improvement loop`}),(0,I.jsxs)(`div`,{className:`space-y-3 text-sm text-slate-600 dark:text-slate-400`,children:[(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`1. Observe.`}),` selftune watches real sessions and notes when a skill triggered, missed, or looked noisy.`]}),(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`2. Propose.`}),` When the signal is strong enough, it suggests a wording change to the skill.`]}),(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`3. Validate.`}),` It checks whether the new wording improves routing without breaking important cases.`]}),(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`4. Decide.`}),` Only validated winners should be deployed. Rejected or pending proposals do not change the live skill.`]})]})]}),(0,I.jsxs)(`section`,{className:`space-y-3`,children:[(0,I.jsx)(`h3`,{className:`text-[10px] font-semibold uppercase tracking-[0.18em] text-slate-400 dark:text-slate-500`,children:`What each section means`}),(0,I.jsxs)(`div`,{className:`space-y-3 text-sm text-slate-600 dark:text-slate-400`,children:[(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Next Best Action`}),` tells you whether you should review, deploy, or simply keep observing.`]}),(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`How selftune is improving this skill`}),` `,`explains the current state in plain language.`]}),(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Trust Signals`}),` are the condensed metrics behind that story: coverage, evidence quality, routing quality, and evolution state.`]}),(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Evidence`}),` shows what changed and why a proposal was accepted, rejected, or left pending.`]}),(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Invocations`}),` shows real prompts where this skill triggered or likely should have triggered.`]}),(0,I.jsxs)(`p`,{children:[(0,I.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Community`}),` surfaces aggregated contributor signals and usage patterns from the broader selftune community.`]})]})]}),(0,I.jsxs)(`section`,{className:`space-y-3`,children:[(0,I.jsx)(`h3`,{className:`text-[10px] font-semibold uppercase tracking-[0.18em] text-slate-400 dark:text-slate-500`,children:`FAQ`}),(0,I.jsxs)(`div`,{className:`space-y-4 text-sm text-slate-600 dark:text-slate-400`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`font-medium text-slate-900 dark:text-white`,children:`What is a missed trigger?`}),(0,I.jsx)(`p`,{children:`A case where selftune believes the skill should have been used, but the agent did not invoke it.`})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`font-medium text-slate-900 dark:text-white`,children:`Why was a proposal rejected?`}),(0,I.jsx)(`p`,{children:`Usually because validation showed the new wording would regress existing behavior, or because it violated a hard rule like dropping an important anchor phrase.`})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`font-medium text-slate-900 dark:text-white`,children:`When should I trust a recommendation?`}),(0,I.jsx)(`p`,{children:`Trust it more when the page shows broad coverage, prompt-linked evidence, and a validated result. Trust it less when the sample is tiny or the data is noisy.`})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`font-medium text-slate-900 dark:text-white`,children:`Do I need to understand every metric?`}),(0,I.jsx)(`p`,{children:`No. Start with the plain-English summary and next best action. Use the deeper tabs only when you want to inspect the evidence yourself.`})]})]})]})]})]})]}):null}function Xf({onOpenGuide:e}){let[t,n]=(0,N.useState)(()=>typeof window<`u`?window.localStorage.getItem(Jf)===`1`:!1);return t?null:(0,I.jsx)(`div`,{className:`rounded-lg border border-blue-200/40 bg-blue-50/50 px-4 py-3 dark:border-blue-900/40 dark:bg-blue-950/20`,children:(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center justify-between gap-3`,children:[(0,I.jsxs)(`div`,{className:`text-sm text-slate-600 dark:text-slate-400`,children:[(0,I.jsx)(`span`,{className:`font-medium text-slate-900 dark:text-white`,children:`New to selftune?`}),` Start with the summary below, then open the guide if you want the full improvement loop explained step by step.`]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(L,{variant:`outline`,onClick:e,children:`Open guide`}),(0,I.jsx)(L,{variant:`ghost`,onClick:()=>{typeof window<`u`&&window.localStorage.setItem(Jf,`1`),n(!0)},children:`Hide`})]})]})})}var Zf=[{key:`ALL`,label:`All Skills`},{key:`HEALTHY`,label:`Healthy`},{key:`WARNING`,label:`Warning`},{key:`CRITICAL`,label:`Critical`},{key:`UNGRADED`,label:`Ungraded`}],Qf={HEALTHY:{text:`text-primary`,bg:`bg-primary`,label:`Deployed`},WARNING:{text:`text-primary-accent`,bg:`bg-primary-accent`,label:`Needs Attention`},CRITICAL:{text:`text-destructive`,bg:`bg-destructive`,label:`Critical`},UNGRADED:{text:`text-muted-foreground`,bg:`bg-muted-foreground`,label:`Ungraded`},UNKNOWN:{text:`text-muted-foreground`,bg:`bg-muted-foreground`,label:`Unknown`}};function $f(e){return e===null?0:Math.round(e*100)}function ep(){return(0,I.jsxs)(`div`,{className:`flex flex-1 flex-col gap-8 p-6 md:p-10 animate-in fade-in duration-500`,children:[(0,I.jsxs)(`div`,{className:`space-y-2`,children:[(0,I.jsx)(`div`,{className:`h-12 w-64 rounded-lg bg-muted animate-pulse`}),(0,I.jsx)(`div`,{className:`h-5 w-96 rounded-lg bg-muted animate-pulse`})]}),(0,I.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[(0,I.jsx)(`div`,{className:`col-span-12 lg:col-span-8 h-72 rounded-xl bg-muted animate-pulse`}),(0,I.jsxs)(`div`,{className:`col-span-12 lg:col-span-4 flex flex-col gap-6`,children:[(0,I.jsx)(`div`,{className:`h-32 rounded-xl bg-muted animate-pulse`}),(0,I.jsx)(`div`,{className:`h-32 rounded-xl bg-muted animate-pulse`})]})]}),(0,I.jsx)(`div`,{className:`grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-6`,children:Array.from({length:6}).map((e,t)=>(0,I.jsx)(`div`,{className:`h-52 rounded-xl bg-muted animate-pulse`},`skel-${t}`))})]})}function tp({skillName:e,skillScope:t,platforms:n,passRate:r,totalChecks:i,uniqueSessions:a,status:o,latestEvolutionTimestamp:s,renderActions:c}){let l=$f(i>0?r:null),u=Qf[o];return(0,I.jsxs)(R,{className:`col-span-12 lg:col-span-8 rounded-3xl border border-border/15 p-8 relative overflow-hidden flex flex-col`,children:[(0,I.jsx)(`div`,{className:`absolute top-0 left-0 w-full h-1 bg-input`,children:(0,I.jsx)(`div`,{className:`h-full bg-primary shadow-[0_0_15px_rgba(79,242,255,0.6)] transition-all duration-700`,style:{width:`${l}%`}})}),(0,I.jsxs)(`div`,{className:`flex justify-between items-start mb-6`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-3 mb-2`,children:[(0,I.jsx)(`span`,{className:`px-2 py-0.5 rounded text-[10px] font-bold bg-primary/10 text-primary uppercase tracking-widest`,children:o===`HEALTHY`?`Deployed`:`Evolving`}),n&&n.length>0?(0,I.jsx)(`span`,{className:`flex items-center gap-1`,children:n.map(e=>(0,I.jsx)(`span`,{className:`px-1.5 py-0.5 rounded bg-muted text-muted-foreground font-mono text-[10px]`,children:e},e))}):(0,I.jsxs)(`span`,{className:`text-muted-foreground font-mono text-xs`,children:[t??`global`,` scope`]})]}),(0,I.jsx)(`h2`,{className:`font-headline text-3xl font-bold text-foreground`,children:e})]}),(0,I.jsxs)(`div`,{className:`text-right`,children:[(0,I.jsx)(`span`,{className:`text-4xl font-headline font-light text-primary`,children:Tr(i>0?r:null)}),(0,I.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mt-1`,children:s?`Evolved ${K(s)}`:`Pass Rate`})]})]}),(0,I.jsxs)(`div`,{className:`grid grid-cols-3 gap-8 mb-8`,children:[(0,I.jsxs)(`div`,{className:`bg-muted p-4 rounded-2xl border border-border/15`,children:[(0,I.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-1`,children:`Total Checks`}),(0,I.jsx)(`p`,{className:`text-xl font-bold font-headline tabular-nums`,children:i.toLocaleString()})]}),(0,I.jsxs)(`div`,{className:`bg-muted p-4 rounded-2xl border border-border/15`,children:[(0,I.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-1`,children:`Pass Rate`}),(0,I.jsx)(`p`,{className:`text-xl font-bold font-headline tabular-nums ${u.text}`,children:Tr(i>0?r:null)})]}),(0,I.jsxs)(`div`,{className:`bg-muted p-4 rounded-2xl border border-border/15`,children:[(0,I.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-1`,children:`Unique Sessions`}),(0,I.jsx)(`p`,{className:`text-xl font-bold font-headline tabular-nums`,children:a.toLocaleString()})]})]}),(0,I.jsx)(`div`,{className:`flex justify-end gap-4`,children:c?.(e)})]})}function np({aggregatePassRate:e,gradedCount:t}){return(0,I.jsxs)(R,{className:`rounded-3xl border border-border/15 p-6 flex flex-col justify-center`,children:[(0,I.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-4`,children:`Library Health`}),(0,I.jsx)(`div`,{className:`flex items-end gap-2 mb-2`,children:(0,I.jsx)(`span`,{className:`text-5xl font-headline font-bold tabular-nums`,children:e===null?`--`:`${Math.round(e*100)}%`})}),(0,I.jsxs)(`p`,{className:`text-sm text-muted-foreground`,children:[`Aggregate pass rate across `,t,` graded skill`,t===1?``:`s`,`.`]})]})}function rp({proposals:e}){return e.length===0?(0,I.jsxs)(R,{className:`rounded-3xl p-6 flex flex-col gap-3 border border-border/15 border-l-4 border-l-primary/40`,children:[(0,I.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-2`,children:`Pending Proposals`}),(0,I.jsx)(`h3`,{className:`font-headline font-bold text-lg`,children:`No proposals pending`})]}):(0,I.jsxs)(R,{className:`rounded-3xl p-6 flex flex-col gap-3 border border-border/15 border-l-4 border-l-primary/40`,children:[(0,I.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-2`,children:`Pending Proposals`}),(0,I.jsxs)(`h3`,{className:`font-headline font-bold text-lg mb-4`,children:[`Awaiting Review`,(0,I.jsx)(F,{variant:`secondary`,className:`ml-2 h-5 px-2 text-[10px] bg-primary/15 text-primary border-none align-middle`,children:e.length})]}),(0,I.jsx)(`div`,{className:`space-y-3 max-h-32 overflow-y-auto themed-scroll`,children:e.map(e=>(0,I.jsxs)(`div`,{className:`flex items-center justify-between p-3 bg-muted rounded-xl`,children:[(0,I.jsx)(`span`,{className:`text-sm truncate`,children:e.skillName??`Unknown`}),(0,I.jsx)(`span`,{className:`text-xs text-muted-foreground shrink-0`,children:e.action})]},e.id))})]})}function ip({skill:e,renderActions:t}){let n=$f(e.passRate),r=Qf[e.status];return(0,I.jsxs)(R,{className:`border border-border/15 p-6 hover:border-border/30 transition-all duration-300 flex flex-col`,children:[(0,I.jsxs)(`div`,{className:`flex justify-between items-start mb-4`,children:[(0,I.jsx)(`div`,{className:`w-12 h-12 rounded-xl bg-muted flex items-center justify-center`,children:(0,I.jsx)(`span`,{className:`size-3 rounded-full ${r.bg}`})}),(0,I.jsxs)(`div`,{className:`text-right`,children:[(0,I.jsx)(`div`,{className:`flex flex-wrap justify-end gap-1`,children:e.platforms&&e.platforms.length>0?e.platforms.map(e=>(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest`,children:e},e)):(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest`,children:e.scope??`unknown`})}),(0,I.jsx)(`p`,{className:`text-sm font-bold tabular-nums`,children:e.checks.toLocaleString()})]})]}),(0,I.jsx)(`h3`,{className:`font-headline font-bold text-xl tracking-tight text-foreground truncate mb-1`,children:e.name}),(0,I.jsxs)(`p`,{className:`text-sm text-muted-foreground mb-6`,children:[e.uniqueSessions,` sessions · Last seen`,` `,e.lastSeen?K(e.lastSeen):`never`]}),(0,I.jsxs)(`div`,{className:`space-y-4`,children:[(0,I.jsxs)(`div`,{className:`flex justify-between items-end text-xs uppercase tracking-tighter`,children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`Pass Rate`}),(0,I.jsx)(`span`,{className:`font-bold ${r.text}`,children:r.label})]}),(0,I.jsx)(`div`,{className:`w-full h-1 bg-input rounded-full overflow-hidden`,children:(0,I.jsx)(`div`,{className:`h-full rounded-full transition-all duration-500 ${r.bg}`,style:{width:`${n}%`}})}),(0,I.jsx)(`div`,{className:`pt-4 flex gap-3`,children:t?.(e.name)})]})]})}function ap({filter:e,onFilterChange:t,counts:n,sortDesc:r,onSortToggle:i}){return(0,I.jsxs)(`div`,{className:`flex items-center justify-between gap-4 flex-wrap`,children:[(0,I.jsx)(`div`,{className:`flex gap-1 bg-muted rounded-xl p-1`,children:Zf.map(r=>(0,I.jsxs)(`button`,{type:`button`,onClick:()=>t(r.key),className:`px-4 py-2 rounded-lg text-sm font-headline font-semibold transition-all duration-200 ${e===r.key?`bg-card text-foreground shadow-sm`:`text-muted-foreground hover:text-foreground`}`,children:[r.label,(0,I.jsx)(`span`,{className:`ml-1.5 text-xs opacity-60`,children:n[r.key]})]},r.key))}),(0,I.jsxs)(`button`,{type:`button`,onClick:i,className:`flex items-center gap-2 px-3 py-2 text-sm text-muted-foreground hover:text-foreground transition-colors font-headline`,title:r?`Highest pass rate first`:`Lowest pass rate first`,children:[(0,I.jsx)(je,{className:`size-4`}),(0,I.jsx)(`span`,{children:`Sort by Performance`})]})]})}function op(){return(0,I.jsx)(R,{className:`col-span-12 lg:col-span-8 border border-border/15 p-8 flex items-center justify-center`,children:(0,I.jsxs)(`div`,{className:`text-center space-y-2`,children:[(0,I.jsx)(be,{className:`size-10 text-muted-foreground mx-auto`}),(0,I.jsx)(`p`,{className:`text-muted-foreground`,children:`No evolution activity yet. Run an evolution cycle to see your most active skill.`})]})})}function sp(){return(0,I.jsxs)(R,{className:`border border-border/15 p-12 text-center`,children:[(0,I.jsx)(_e,{className:`size-8 text-muted-foreground mx-auto mb-3`}),(0,I.jsx)(`p`,{className:`text-muted-foreground font-headline`,children:`No skills match the current filter`})]})}function cp({message:e,onRetry:t}){return(0,I.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,I.jsx)(Xe,{className:`size-10 text-destructive`}),(0,I.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:e}),t&&(0,I.jsxs)(`button`,{type:`button`,onClick:t,className:`inline-flex items-center gap-2 rounded-md border border-border px-3 py-1.5 text-sm font-medium hover:bg-muted transition-colors`,children:[(0,I.jsx)(ae,{className:`size-3.5`}),`Retry`]})]})}function lp({autonomyStatus:e,lastRun:t,trustWatchlist:n,attentionItems:r,autonomousDecisions:i,renderSkillLink:a,heroActions:o,trustRailFooter:s,beforeHero:c,betweenHeroAndFeed:l,afterFeed:u}){return(0,I.jsx)(`div`,{className:`@container/main flex flex-1 flex-col py-6`,children:(0,I.jsxs)(`div`,{className:`grid grid-cols-12 gap-6 px-4 lg:px-6`,children:[c,(0,I.jsx)(`div`,{className:`col-span-12 @4xl/main:col-span-8`,children:(0,I.jsx)(Hf,{status:e,lastRun:t,actions:o})}),(0,I.jsx)(`div`,{className:`col-span-12 @4xl/main:col-span-4 self-start`,children:(0,I.jsx)(Uf,{entries:n,renderSkillLink:a,footer:s})}),l,(0,I.jsx)(`div`,{className:`col-span-12`,children:(0,I.jsx)(Gf,{attention:r,decisions:i,renderSkillLink:a})}),u]})})}var up=[`at_risk`,`improving`,`uncertain`,`stable`],dp={at_risk:{label:`At Risk`,accent:`text-red-400`,dot:`bg-red-400`},improving:{label:`Improving`,accent:`text-primary`,dot:`bg-primary`},uncertain:{label:`Uncertain`,accent:`text-amber-400`,dot:`bg-amber-400`},stable:{label:`Stable`,accent:`text-muted-foreground`,dot:`bg-muted-foreground/60`}};function fp(e,t){return e?.onChange??t?.actions.updateOverviewWatchlist}function pp(e){return e?.actions.getOverviewWatchlist}function mp(e){return JSON.stringify(e??[])}function hp(e){return JSON.parse(e)}function gp(e){switch(e){case`created`:return`Proposal created`;case`validated`:return`Validated`;case`deployed`:return`Deployed`;case`rolled_back`:return`Rolled back`;case`watch`:return`Watching`;case`rejected`:return`Rejected`;default:return e.replace(/_/g,` `)}}function _p(e,t=10){return e.toSorted((e,t)=>{let n=up.indexOf(e.bucket),r=up.indexOf(t.bucket);return n===r?(t.sortTimestamp??``).localeCompare(e.sortTimestamp??``):n-r}).slice(0,t).map(e=>e.skillName)}function vp({rows:e,renderSkillLink:t,libraryAction:n,watchlist:r}){let i=Kt(),a=!!r,o=r?.initialSkills??[],s=mp(o),[c,l]=(0,N.useState)(a?`watched`:`all`),[u,d]=(0,N.useState)(()=>hp(s)),f=(0,N.useRef)(0),p=(0,N.useRef)(0),m=pp(i),h=fp(r,i);(0,N.useEffect)(()=>{a&&d(hp(s))},[a,s]),(0,N.useEffect)(()=>{if(!a||!m||o.length>0)return;let e=p.current+1;p.current=e;let t=!1;return Promise.resolve(m()).then(n=>{t||p.current!==e||Array.isArray(n)&&n.every(e=>typeof e==`string`)&&d(n)}).catch(()=>{}),()=>{t=!0}},[a,m,o.length]);let g=(0,N.useMemo)(()=>e.toSorted((e,t)=>{let n=up.indexOf(e.bucket),r=up.indexOf(t.bucket);return n===r?(t.sortTimestamp??``).localeCompare(e.sortTimestamp??``):n-r}),[e]),_=(0,N.useMemo)(()=>{if(!r)return[];let t=new Set(e.map(e=>e.skillName)),n=u.filter(e=>t.has(e));return n.length>0?n:_p(e)},[e,u,r]),v=(0,N.useMemo)(()=>{if(!r||c===`all`)return g;let e=new Set(_);return g.filter(t=>e.has(t.skillName))},[_,g,c,r]),y=async e=>{if(!r)return;let t=_.includes(e)?_.filter(t=>t!==e):[..._,e];if(!h){d(t);return}let n=_,i=f.current+1;f.current=i,d(t);try{let e=await h(t);f.current===i&&Array.isArray(e)&&e.every(e=>typeof e==`string`)&&d(e)}catch{f.current===i&&d(n)}};return(0,I.jsxs)(R,{className:`col-span-12 border-none bg-muted shadow-none py-0`,children:[(0,I.jsxs)(z,{className:`px-5 pt-5 pb-0`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Skill Comparison`}),(0,I.jsx)(V,{className:`mt-1 text-[13px]`,children:`Compare skill performance before drilling into the details.`})]}),(a||n)&&(0,I.jsx)(_t,{children:(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[a?(0,I.jsx)(St,{value:c,onValueChange:e=>l(e),children:(0,I.jsxs)(wt,{variant:`line`,className:`h-auto gap-2`,children:[(0,I.jsxs)(Tt,{value:`watched`,className:`font-headline text-[10px] uppercase tracking-[0.18em]`,children:[`Watched`,(0,I.jsx)(`span`,{className:`ml-1.5 text-muted-foreground`,children:_.length})]}),(0,I.jsxs)(Tt,{value:`all`,className:`font-headline text-[10px] uppercase tracking-[0.18em]`,children:[`All Skills`,(0,I.jsx)(`span`,{className:`ml-1.5 text-muted-foreground`,children:e.length})]})]})}):null,n]})})]}),(0,I.jsx)(H,{className:`themed-scroll overflow-x-auto px-5 py-5`,children:(0,I.jsxs)(`div`,{"data-parity-root":`overview-comparison-grid`,className:a?`min-w-[780px]`:`min-w-[680px]`,children:[a?(0,I.jsx)(`div`,{className:`mb-3 rounded-xl bg-background/35 px-3 py-2 text-xs text-muted-foreground`,children:c===`watched`?`Your watched skills stay pinned here. Add or remove them directly from the grid.`:`All installed skills, sorted by current trust priority.`}):null,(0,I.jsxs)(`div`,{className:`grid gap-3 px-3 pb-2 text-[10px] uppercase tracking-[0.18em] text-muted-foreground ${a?`grid-cols-[minmax(220px,2.3fr)_0.95fr_1.1fr_0.9fr_1.3fr_1fr_0.9fr]`:`grid-cols-[minmax(220px,2.3fr)_0.95fr_1.1fr_0.9fr_1.3fr_1fr]`}`,children:[(0,I.jsx)(`span`,{children:`Skill`}),(0,I.jsx)(`span`,{children:`Trigger Rate`}),(0,I.jsx)(`span`,{children:`Routing Conf.`}),(0,I.jsx)(`span`,{children:`Sessions`}),(0,I.jsx)(`span`,{children:`Last Evolution`}),(0,I.jsx)(`span`,{children:`Status`}),a?(0,I.jsx)(`span`,{className:`text-right`,children:`Watch`}):null]}),(0,I.jsxs)(`div`,{className:`space-y-1.5`,children:[v.map(e=>{let n=dp[e.bucket],r=_.includes(e.skillName);return(0,I.jsxs)(`div`,{className:`grid items-center gap-3 rounded-xl bg-background/35 px-3 py-3 text-sm transition-colors hover:bg-background/50 ${a?`grid-cols-[minmax(220px,2.3fr)_0.95fr_1.1fr_0.9fr_1.3fr_1fr_0.9fr]`:`grid-cols-[minmax(220px,2.3fr)_0.95fr_1.1fr_0.9fr_1.3fr_1fr]`}`,children:[(0,I.jsxs)(`div`,{className:`min-w-0`,children:[t?t(e.skillName):(0,I.jsx)(`p`,{className:`truncate font-medium`,children:e.skillName}),e.subtext?(0,I.jsx)(`p`,{className:`truncate text-xs text-muted-foreground`,children:e.subtext}):null]}),(0,I.jsx)(`div`,{className:`font-medium`,children:e.triggerRate==null?`—`:`${Math.round(e.triggerRate*100)}%`}),(0,I.jsx)(`div`,{className:`min-w-0`,children:e.routingConfidence!=null&&e.confidenceCoverage>=.5?(0,I.jsxs)(I.Fragment,{children:[(0,I.jsxs)(`p`,{className:`text-sm font-medium`,children:[Math.round(e.routingConfidence*100),`%`]}),(0,I.jsxs)(`p`,{className:`truncate text-xs text-muted-foreground`,children:[Math.round(e.confidenceCoverage*100),`% coverage`]})]}):(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(`p`,{className:`text-sm font-medium`,children:`—`}),(0,I.jsx)(`p`,{className:`truncate text-xs text-muted-foreground`,children:`Low coverage`})]})}),(0,I.jsx)(`div`,{className:`text-muted-foreground`,children:e.sessions}),(0,I.jsx)(`div`,{className:`min-w-0`,children:e.lastEvolution?(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(`p`,{className:`truncate text-sm`,children:gp(e.lastEvolution.action)}),(0,I.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:K(e.lastEvolution.timestamp)})]}):(0,I.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:`No evolutions yet`})}),(0,I.jsx)(`div`,{children:(0,I.jsxs)(F,{variant:`outline`,className:`border-transparent ${n.accent} bg-background/55`,children:[(0,I.jsx)(`span`,{className:`mr-1.5 inline-block size-1.5 rounded-full ${n.dot}`}),n.label]})}),a?(0,I.jsx)(`div`,{className:`flex justify-end`,children:(0,I.jsxs)(L,{type:`button`,variant:r?`secondary`:`ghost`,size:`sm`,className:`h-8 gap-1.5 px-2 text-xs`,onClick:()=>void y(e.skillName),children:[(0,I.jsx)(me,{className:`size-3.5`}),r?`Watching`:`Watch`]})}):null]},e.skillName)}),v.length===0?(0,I.jsx)(`div`,{className:`rounded-xl bg-background/30 px-3 py-6 text-sm text-muted-foreground`,children:a?r?.emptyMessage??(0,I.jsxs)(I.Fragment,{children:[`No watched skills yet. Switch to`,` `,(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:`All Skills`}),` and add the ones you want to track closely.`]}):`No skills available.`}):null]})]})})]})}function yp({skillCount:e,storageKey:t=`selftune-onboarding-dismissed`}){let[n,r]=(0,N.useState)(()=>{try{return localStorage.getItem(t)===`true`}catch{return!1}});return e>0||n?null:(0,I.jsx)(`div`,{className:`col-span-12 rounded-xl border-2 border-dashed border-primary/30 bg-primary/5 p-8`,children:(0,I.jsxs)(`div`,{className:`mx-auto flex max-w-md flex-col items-center gap-4 text-center`,children:[(0,I.jsx)(`div`,{className:`flex size-12 items-center justify-center rounded-full bg-primary/10`,children:(0,I.jsx)(Fe,{className:`size-6 text-primary`})}),(0,I.jsx)(`h2`,{className:`font-headline text-lg font-semibold`,children:`Welcome to selftune`}),(0,I.jsx)(`p`,{className:`text-sm leading-relaxed text-muted-foreground`,children:`No skills detected yet. Once you start using selftune in your project, skills will appear here automatically.`}),(0,I.jsxs)(`div`,{className:`grid w-full grid-cols-1 gap-3 text-left sm:grid-cols-3`,children:[(0,I.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded-lg border bg-card p-3`,children:[(0,I.jsx)(`div`,{className:`flex size-6 shrink-0 items-center justify-center rounded-full bg-blue-500/10 text-xs font-bold text-blue-500`,children:`1`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`text-xs font-medium`,children:`Run selftune`}),(0,I.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Enable selftune in your project to start tracking skills`})]})]}),(0,I.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded-lg border bg-card p-3`,children:[(0,I.jsx)(`div`,{className:`flex size-6 shrink-0 items-center justify-center rounded-full bg-amber-500/10 text-xs font-bold text-amber-500`,children:`2`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`text-xs font-medium`,children:`Skills appear`}),(0,I.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Skills are detected and monitored automatically`})]})]}),(0,I.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded-lg border bg-card p-3`,children:[(0,I.jsx)(`div`,{className:`flex size-6 shrink-0 items-center justify-center rounded-full bg-emerald-500/10 text-xs font-bold text-emerald-500`,children:`3`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`text-xs font-medium`,children:`Watch evolution`}),(0,I.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Proposals flow in with validated improvements`})]})]})]}),(0,I.jsx)(`button`,{type:`button`,onClick:()=>{r(!0);try{localStorage.setItem(t,`true`)}catch{}},className:`text-xs text-muted-foreground hover:text-foreground`,children:`Dismiss`})]})})}function bp({lastRun:e,deployed:t,evolved:n,watched:r,runCount:i,historyAction:a}){return i===0?null:(0,I.jsxs)(`div`,{className:`col-span-12 flex items-center gap-6 rounded-xl border border-border/10 bg-card/50 px-5 py-3 text-xs text-muted-foreground`,children:[(0,I.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em]`,children:`Last Cycle`}),(0,I.jsx)(`span`,{children:e?K(e):`Never`}),(0,I.jsx)(`span`,{className:`text-muted-foreground/30`,children:`|`}),(0,I.jsxs)(`span`,{children:[t,` deployed`]}),(0,I.jsxs)(`span`,{children:[n,` evolved`]}),(0,I.jsxs)(`span`,{children:[r,` watched`]}),a?(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(`span`,{className:`text-muted-foreground/30`,children:`|`}),(0,I.jsx)(`span`,{className:`ml-auto`,children:a})]}):null]})}function xp({onboarding:e,comparison:t,sectionsBeforeFeed:n,runSummary:r,sectionsAfterFeed:i,renderSkillLink:a,...o}){let s=e?(0,I.jsx)(yp,{skillCount:e.skillCount,storageKey:e.storageKey}):null,c=t||n?(0,I.jsxs)(I.Fragment,{children:[t&&t.rows.length>0?(0,I.jsx)(`div`,{className:`col-span-12`,children:(0,I.jsx)(vp,{...t,renderSkillLink:a})}):null,n?(0,I.jsx)(`div`,{className:`col-span-12`,children:n}):null]}):null,l=r||i?(0,I.jsxs)(I.Fragment,{children:[r?(0,I.jsx)(bp,{...r}):null,i]}):null;return(0,I.jsx)(lp,{...o,renderSkillLink:a,beforeHero:s,betweenHeroAndFeed:c,afterFeed:l})}function Sp({className:e,...t}){return(0,I.jsx)(`div`,{"data-slot":`skeleton`,className:P(`animate-pulse rounded-md bg-muted`,e),...t})}var Cp=6e4;function wp(){return Cr({queryKey:[`orchestrate-runs`],queryFn:()=>Qi(20),staleTime:5e3,refetchInterval:Cp})}function Tp(e){if(!e)return null;let t=e;return t=t.replace(/\bselftune create replay\b/g,`selftune verify`),t=t.replace(/\bselftune create baseline\b/g,`selftune verify`),t=t.replace(/\bselftune create check\b/g,`selftune verify`),t=t.replace(/\bselftune create publish\b/g,`selftune publish`),t=t.replace(/\bselftune evolve[- ]body\b/g,`selftune improve --scope body`),t=t.replace(/\bselftune evolve\b/g,`selftune improve`),t=t.replace(/\bselftune search-run\b/g,`selftune improve --scope package`),t=t.replace(/\bselftune orchestrate\b/g,`selftune run`),t=t.replace(/\s+--watch(?=\s|$)/g,``),t=t.replace(/\s{2,}/g,` `).trim(),t}function Ep(e){return e?e.replace(/\bRun create replay\b/g,`Run verify`).replace(/\brun create replay\b/g,`run verify`).replace(/\bcreate replay\b/g,`verify`).replace(/\bCreate replay\b/g,`Verify`).replace(/\bRun create baseline\b/g,`Run verify`).replace(/\brun create baseline\b/g,`run verify`).replace(/\bcreate baseline\b/g,`verify`).replace(/\bCreate baseline\b/g,`Verify`).replace(/\bRun create check\b/g,`Run verify`).replace(/\brun create check\b/g,`run verify`).replace(/\bcreate check\b/g,`verify`).replace(/\bCreate check\b/g,`Verify`).replace(/\bRun create publish\b/g,`Run publish`).replace(/\brun create publish\b/g,`run publish`).replace(/\bcreate publish\b/g,`publish`).replace(/\bCreate publish\b/g,`Publish`).replace(/\bevolve body\b/g,`improve --scope body`).replace(/\bEvolve body\b/g,`Improve --scope body`).replace(/\bevolve\b/g,`improve`).replace(/\bEvolve\b/g,`Improve`).replace(/\bsearch-run\b/g,`improve --scope package`).replace(/\bSearch-run\b/g,`Improve --scope package`).replace(/\bselftune orchestrate\b/g,`selftune run`).replace(/\bOrchestrate\b/g,`Run`).replace(/\borchestrate\b/g,`run`):``}function Dp(e){switch(e){case`generate_evals`:return`Generate evals`;case`run_unit_tests`:return`Run unit tests`;case`run_replay_dry_run`:return`Replay dry-run`;case`measure_baseline`:return`Measure baseline`;case`deploy_candidate`:return`Ship candidate`;case`watch_deployment`:return`Monitor live`}}function Op(e){switch(e){case`run_create_check`:return`Verify draft`;case`finish_package`:return`Finish package`;case`generate_evals`:return`Generate evals`;case`run_unit_tests`:return`Run unit tests`;case`run_replay_dry_run`:return`Replay dry-run`;case`measure_baseline`:return`Measure baseline`;case`deploy_candidate`:return`Ship candidate`;case`watch_deployment`:return`Monitor live`}}function kp(e){switch(e){case`run_create_check`:return`create-check`;case`generate_evals`:return`generate-evals`;case`run_unit_tests`:return`generate-unit-tests`;case`run_replay_dry_run`:return`replay-dry-run`;case`measure_baseline`:return`measure-baseline`;case`deploy_candidate`:return`deploy-candidate`;case`watch_deployment`:return`watch`;case`finish_package`:return null}}function Ap(e){switch(e){case`blocked_spec_validation`:return`Verification blocked`;case`needs_spec_validation`:return`Verify draft`;case`needs_package_resources`:return`Finish package`;case`needs_evals`:return`Generate evals`;case`needs_unit_tests`:return`Generate unit tests`;case`needs_routing_replay`:return`Replay package`;case`needs_baseline`:return`Measure baseline`;case`ready_to_publish`:return`Publish draft`}}function jp({data:e,skills:t}){let[n,r]=(0,N.useState)(null),i=p();if(!e)return null;function a(e){let n=kp(e.step),a=t.find(t=>t.skill_name===e.skill_name),o=a?.create_readiness?.skill_path??a?.testing_readiness?.skill_path??null;if(!n||!o){Mi.error(`Action unavailable`,{description:e.step===`finish_package`?`Finish package is still a manual step. Use the recommended command and file checklist from the skill report.`:`This priority needs a resolved SKILL.md path before the dashboard can run it.`});return}r(`${e.skill_name}:${n}`),i(`/live-run?${new URLSearchParams({skill:e.skill_name,action:n}).toString()}`),ta(n,{skill:e.skill_name,skillPath:o,autoSynthetic:n===`generate-evals`&&a?.testing_readiness?.eval_readiness===`cold_start_ready`}).catch(e=>{let t=e instanceof Error?e.message:String(e);Mi.error(`Action failed to start`,{description:t})}).finally(()=>{r(null)})}return(0,I.jsxs)(R,{className:`rounded-2xl border-border/15`,children:[(0,I.jsxs)(z,{className:`gap-2`,children:[(0,I.jsx)(B,{className:`text-base`,children:`Draft skill lifecycle`}),(0,I.jsx)(V,{children:`Verify the draft, fill any missing evidence, publish safely, then monitor live behavior. This surface tracks whether each skill is still blocked on verification, ready to ship, or already under watch.`})]}),(0,I.jsxs)(H,{className:`space-y-5`,children:[(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:Ep(e.summary)}),(0,I.jsx)(`div`,{className:`grid gap-3 sm:grid-cols-2 xl:grid-cols-8`,children:[[`Verify draft`,e.counts.run_create_check],[`Finish package`,e.counts.finish_package],[`Generate evals`,e.counts.generate_evals],[`Run unit tests`,e.counts.run_unit_tests],[`Replay dry-run`,e.counts.run_replay_dry_run],[`Measure baseline`,e.counts.measure_baseline],[`Ship candidate`,e.counts.deploy_candidate],[`Monitor live`,e.counts.watch_deployment]].map(([e,t])=>(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:e}),(0,I.jsx)(`div`,{className:`mt-2 text-2xl font-semibold`,children:t})]},e))}),e.priorities.length>0?(0,I.jsxs)(`div`,{className:`space-y-3`,children:[(0,I.jsx)(`div`,{className:`text-xs font-medium uppercase tracking-[0.12em] text-muted-foreground`,children:`Next priorities`}),(0,I.jsx)(`div`,{className:`space-y-3`,children:e.priorities.map(e=>{let t=kp(e.step),r=t?`${e.skill_name}:${t}`:null;return(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background px-4 py-3`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-2`,children:[(0,I.jsx)(l,{to:`/skills/${encodeURIComponent(e.skill_name)}`,className:`text-sm font-medium hover:underline`,children:e.skill_name}),(0,I.jsx)(`span`,{className:`rounded-full bg-muted px-2 py-0.5 text-[11px] text-muted-foreground`,children:Op(e.step)})]}),(0,I.jsx)(`p`,{className:`mt-2 text-sm text-muted-foreground`,children:Ep(e.summary)}),(0,I.jsx)(`code`,{className:`mt-2 block overflow-x-auto rounded-md bg-muted/60 px-3 py-2 text-[11px] text-foreground`,children:Tp(e.recommended_command)}),t?(0,I.jsx)(`div`,{className:`mt-3 flex justify-end`,children:(0,I.jsxs)(L,{type:`button`,size:`sm`,variant:`outline`,disabled:n!==null&&n!==r,onClick:()=>a(e),children:[n===r?(0,I.jsx)(ae,{className:`mr-2 size-3.5 animate-spin`}):null,`Run now`]})}):null]},e.skill_name)})})]}):null]})]})}function Mp({search:e,statusFilter:t,onStatusFilterChange:n,overviewQuery:r}){let{data:i,isPending:a,isError:o,error:s,refetch:c}=r,u=wp();if(a)return(0,I.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-6 py-6 px-4 lg:px-6`,children:[(0,I.jsx)(Sp,{className:`h-[340px] rounded-xl`}),(0,I.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[(0,I.jsx)(Sp,{className:`col-span-12 @4xl/main:col-span-8 h-64 rounded-xl`}),(0,I.jsx)(Sp,{className:`col-span-12 @4xl/main:col-span-4 h-64 rounded-xl`})]})]});if(o)return(0,I.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,I.jsx)(Xe,{className:`size-10 text-destructive`}),(0,I.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:s instanceof Error?s.message:`Unknown error`}),(0,I.jsxs)(L,{variant:`outline`,size:`sm`,onClick:()=>c(),children:[(0,I.jsx)(ae,{className:`mr-2 size-3.5`}),`Retry`]})]});if(!i)return(0,I.jsx)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-2 py-16`,children:(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No telemetry data found. Run some sessions first.`})});let{skills:d,autonomy_status:f,attention_queue:p,trust_watchlist:m,recent_decisions:h,overview:g,creator_testing:_}=i,v=u.data?.runs??[],y=v[0],b=v.reduce((e,t)=>e+t.deployed,0),x=v.reduce((e,t)=>e+t.evolved,0),S=v.reduce((e,t)=>e+t.watched,0),C=new Map;for(let e of g.evolution)!e.skill_name||C.has(e.skill_name)||C.set(e.skill_name,e);let w=d.map(e=>{let t=m.find(t=>t.skill_name===e.skill_name),n=e.testing_readiness?.next_step,r=e.create_readiness,i=r&&e.total_checks===0?`Draft package · ${Ap(r.state)}`:`${e.skill_scope??`Unscoped`} · ${e.total_checks} checks${n&&n!==`watch_deployment`?` · ${Dp(n)}`:``}`;return{skillName:e.skill_name,subtext:i,triggerRate:t?.pass_rate??e.pass_rate,routingConfidence:e.routing_confidence,confidenceCoverage:e.confidence_coverage,sessions:e.unique_sessions,lastEvolution:C.get(e.skill_name)??null,bucket:t?.bucket??`uncertain`,sortTimestamp:e.last_seen??null}});return(0,I.jsx)(xp,{autonomyStatus:f,lastRun:y?.timestamp??null,trustWatchlist:m,attentionItems:p,autonomousDecisions:h,renderSkillLink:e=>(0,I.jsx)(l,{to:`/skills/${encodeURIComponent(e)}`,className:`text-sm font-medium hover:underline`,children:e}),onboarding:{skillCount:d.length},heroActions:(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[f.attention_required>0?(0,I.jsx)(L,{size:`sm`,nativeButton:!1,render:(0,I.jsx)(`a`,{href:`#supervision-feed`}),children:`Review Attention Queue`}):(0,I.jsx)(`span`,{className:`text-sm text-muted-foreground`,children:`No action needed`}),(0,I.jsx)(L,{variant:`outline`,size:`sm`,nativeButton:!1,render:(0,I.jsx)(l,{to:`?action=evolve`}),children:`Run Evolution`})]}),trustRailFooter:(0,I.jsx)(l,{to:`/skills`,className:`text-xs font-medium text-primary hover:underline`,children:`View All Skills`}),comparison:{rows:w,libraryAction:(0,I.jsx)(l,{to:`/skills`,className:`text-xs font-medium text-primary hover:underline`,children:`View library`}),watchlist:{initialSkills:i.watched_skills}},sectionsBeforeFeed:(0,I.jsx)(jp,{data:_,skills:d}),runSummary:{lastRun:y?.timestamp??null,deployed:b,evolved:x,watched:S,runCount:v.length,historyAction:(0,I.jsx)(l,{to:`/analytics`,className:`text-primary hover:underline`,children:`View full history`})}})}function Np(e){let[t,n,r]=e.split(`-`).map(Number);return!t||!n||!r?null:new Date(t,n-1,r)}function Pp(){return(0,I.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-6 px-4 py-6 lg:px-6`,children:[(0,I.jsx)(`div`,{className:`h-12 w-80 animate-pulse rounded-xl bg-card`}),(0,I.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[(0,I.jsx)(`div`,{className:`col-span-12 h-[380px] animate-pulse rounded-xl bg-card @4xl/main:col-span-8`}),(0,I.jsx)(`div`,{className:`col-span-12 h-[380px] animate-pulse rounded-xl bg-card @4xl/main:col-span-4`}),(0,I.jsx)(`div`,{className:`col-span-12 h-[320px] animate-pulse rounded-xl bg-card @4xl/main:col-span-7`}),(0,I.jsx)(`div`,{className:`col-span-12 h-[320px] animate-pulse rounded-xl bg-card @4xl/main:col-span-5`}),(0,I.jsx)(`div`,{className:`col-span-12 h-[140px] animate-pulse rounded-xl bg-card`})]})]})}function Fp({data:e,isLoading:t,error:n,onRefresh:r,onRetry:i,headerActions:a,insightActions:o}){let[s,c]=(0,N.useState)(`pass_rate`),l=(0,N.useMemo)(()=>{if(!e?.pass_rate_trend.length)return null;let t=e.pass_rate_trend[e.pass_rate_trend.length-1];if(!t)return null;let n=Np(t.date);if(!n)return null;let r=new Date;r.setHours(0,0,0,0);let i=Math.max(0,Math.floor((r.getTime()-n.getTime())/864e5));return i===0?`today`:i===1?`1d ago`:`${i}d ago`},[e]),u=(0,N.useMemo)(()=>e?.skill_rankings?e.skill_rankings.toSorted((e,t)=>t.pass_rate-e.pass_rate).slice(0,5):[],[e]),d=(0,N.useMemo)(()=>u.length?u.reduce((e,t)=>e+t.pass_rate,0)/u.length:0,[u]),f=(0,N.useMemo)(()=>e?.evolution_impact?e.evolution_impact.filter(e=>e.pass_rate_after>e.pass_rate_before):[],[e]);if(t&&!e)return(0,I.jsx)(Pp,{});if(n&&!e)return(0,I.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,I.jsx)(C,{className:`size-10 text-destructive`}),(0,I.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:n}),(0,I.jsxs)(L,{variant:`outline`,size:`sm`,onClick:i,children:[(0,I.jsx)(Pe,{className:`mr-2 size-3.5`}),`Retry`]})]});if(!e)return(0,I.jsx)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-2 py-16`,children:(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No analytics data available yet. Run some sessions and grading first.`})});let{summary:p}=e;return(0,I.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-8 px-4 py-8 lg:px-6`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-start justify-between gap-4`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsx)(`h1`,{className:`font-headline text-4xl font-bold tracking-tight text-foreground`,children:`Performance Analytics`}),(0,I.jsxs)(F,{variant:`outline`,className:`gap-1.5 border-primary/20 bg-primary/10 font-headline text-[10px] uppercase tracking-widest text-primary`,children:[(0,I.jsx)(`span`,{className:`size-1.5 animate-pulse rounded-full bg-primary`}),`Live`]})]}),(0,I.jsxs)(`p`,{className:`mt-2 text-sm text-muted-foreground`,children:[l?`Last graded: ${l}`:`Awaiting first grading run`,p.active_skills>0&&` · ${p.active_skills} active skills`]})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsxs)(L,{variant:`secondary`,size:`sm`,onClick:r,className:`gap-1.5 font-headline text-[10px] uppercase tracking-widest`,children:[(0,I.jsx)(Pe,{className:`size-3`}),`Refresh`]}),a]})]}),(0,I.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[(0,I.jsxs)(R,{className:`col-span-12 border-none bg-muted shadow-none @4xl/main:col-span-8`,children:[(0,I.jsxs)(z,{className:`pb-2`,children:[(0,I.jsx)(V,{className:`font-headline text-[10px] uppercase tracking-widest`,children:`Evolution Trajectory`}),(0,I.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,I.jsx)(B,{className:`font-headline text-lg`,children:`Evolution Impact Curve`}),(0,I.jsx)(`div`,{className:`flex items-center gap-1 rounded-lg bg-background p-0.5`,children:[{key:`pass_rate`,label:`Pass Rate`},{key:`volume`,label:`Check Volume`}].map(e=>(0,I.jsx)(`button`,{type:`button`,onClick:()=>c(e.key),className:`rounded-md px-3 py-1 text-[10px] font-headline uppercase tracking-widest transition-colors ${s===e.key?`bg-secondary text-primary`:`text-muted-foreground hover:text-foreground`}`,children:e.label},e.key))})]})]}),(0,I.jsx)(H,{children:(0,I.jsx)(sa,{data:e.pass_rate_trend,mode:s})})]}),(0,I.jsxs)(R,{className:`col-span-12 flex flex-col border-none bg-muted shadow-none @4xl/main:col-span-4`,children:[(0,I.jsxs)(z,{className:`pb-2`,children:[(0,I.jsx)(V,{className:`font-headline text-[10px] uppercase tracking-widest`,children:`Skill Rankings`}),(0,I.jsx)(B,{className:`font-headline text-lg`,children:`Skill Performance`})]}),(0,I.jsxs)(H,{className:`flex flex-1 flex-col`,children:[(0,I.jsx)(ca,{skills:u}),(0,I.jsx)(`div`,{className:`mt-5 border-t border-border/20 pt-4`,children:(0,I.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,I.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-widest text-muted-foreground`,children:`Avg Pass Rate`}),(0,I.jsx)(`span`,{className:`font-headline text-2xl font-bold text-primary`,children:u.length>0?`${Math.round(d*100)}%`:`--`})]})})]})]}),(0,I.jsxs)(R,{className:`col-span-12 border-none bg-muted shadow-none @4xl/main:col-span-7`,children:[(0,I.jsxs)(z,{className:`pb-2`,children:[(0,I.jsx)(V,{className:`font-headline text-[10px] uppercase tracking-widest`,children:`Grading Activity`}),(0,I.jsx)(B,{className:`font-headline text-lg`,children:`Check Activity Over Time`})]}),(0,I.jsx)(H,{className:`flex flex-1 flex-col`,children:(0,I.jsx)(la,{data:e.daily_activity})})]}),(0,I.jsxs)(R,{className:`col-span-12 border-none bg-muted shadow-none @4xl/main:col-span-5`,children:[(0,I.jsxs)(z,{className:`pb-2`,children:[(0,I.jsx)(V,{className:`font-headline text-[10px] uppercase tracking-widest`,children:`Evolution Outcomes`}),(0,I.jsx)(B,{className:`font-headline text-lg`,children:`Evolution ROI`})]}),(0,I.jsx)(H,{children:(0,I.jsx)(ua,{impacts:e.evolution_impact})})]}),(0,I.jsx)(R,{className:`col-span-12 border-none bg-muted/60 shadow-none backdrop-blur-md`,children:(0,I.jsx)(H,{className:`pt-6`,children:(0,I.jsxs)(`div`,{className:`flex flex-col items-start justify-between gap-4 @3xl/main:flex-row @3xl/main:items-center`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`mb-2 font-headline text-[10px] uppercase tracking-widest text-muted-foreground`,children:`Data-Driven Insight`}),(0,I.jsx)(`p`,{className:`max-w-2xl text-[15px] leading-relaxed text-foreground`,children:f.length>0?`${f.length} skill${f.length===1?``:`s`} improved after evolution, averaging ${Math.round(p.avg_improvement*100)}% improvement. ${p.total_checks_30d} checks processed in the last 30 days across ${p.active_skills} active skills.`:p.total_checks_30d>0?`${p.total_checks_30d} checks processed in the last 30 days across ${p.active_skills} active skills. Run an evolution cycle to start improving skill pass rates.`:`Start grading sessions to generate performance insights. Run selftune orchestrate to begin the autonomous improvement loop.`})]}),o?(0,I.jsx)(`div`,{className:`flex shrink-0 items-center gap-3`,children:o}):null]})})})]}),(0,I.jsxs)(`div`,{className:`flex items-center justify-between px-1 font-headline text-[10px] uppercase tracking-widest text-muted-foreground`,children:[(0,I.jsxs)(`span`,{children:[p.total_evolutions,` evolution`,p.total_evolutions===1?``:`s`,` deployed`]}),(0,I.jsxs)(`span`,{children:[p.total_checks_30d,` checks (30d)`]}),(0,I.jsxs)(`span`,{children:[p.active_skills,` active skill`,p.active_skills===1?``:`s`]})]})]})}async function Ip(){let e=await fetch(`/api/v2/analytics`);if(!e.ok)throw Error(`Failed to load analytics (${e.status})`);return await e.json()}function Lp(){let{data:e,isPending:t,isError:n,error:r,refetch:i}=Cr({queryKey:[`analytics`],queryFn:Ip,refetchInterval:3e4});return(0,I.jsx)(Fp,{data:e??null,isLoading:t,error:n?r instanceof Error?r.message:`Failed to load analytics`:null,onRefresh:()=>{i()},onRetry:()=>{i()},headerActions:(0,I.jsxs)(L,{variant:`secondary`,size:`sm`,className:`gap-1.5 font-headline text-[10px] uppercase tracking-widest`,disabled:!0,"aria-disabled":`true`,title:`Export is not available yet.`,children:[(0,I.jsx)(ge,{className:`size-3`}),`Export`]}),insightActions:(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(L,{size:`sm`,className:`font-headline text-[10px] uppercase tracking-widest`,disabled:!0,"aria-disabled":`true`,title:`Dashboard-triggered evolution is not available yet.`,children:`Run Evolution`}),(0,I.jsx)(L,{variant:`outline`,size:`sm`,className:`border-primary/20 font-headline text-[10px] uppercase tracking-widest text-primary hover:border-primary/40`,disabled:!0,"aria-disabled":`true`,title:`Detailed analytics drill-down is not available yet.`,children:`View Details`})]})})}var Rp=6e4;function zp(e){return Cr({queryKey:[`skill-report`,e],queryFn:()=>Zi(e),enabled:!!e,staleTime:5e3,refetchInterval:Rp,retry:(e,t)=>t instanceof na?!1:e<2})}function Bp(e){return e===`running`?(0,I.jsxs)(F,{variant:`secondary`,className:`gap-1`,children:[(0,I.jsx)(Re,{className:`size-3 animate-spin`}),`Running`]}):e===`success`?(0,I.jsx)(F,{variant:`default`,children:`Validated`}):(0,I.jsx)(F,{variant:`destructive`,children:`Failed`})}function Vp(e,t){let n=new Map;for(let r of e){let e=t(r)??`Unknown`;n.set(e,(n.get(e)??0)+1)}return[...n.entries()].map(([e,t])=>({label:e,count:t})).toSorted((e,t)=>t.count-e.count).slice(0,5)}function Hp(e){return e==null?`--`:`${Math.round(e*100)}%`}function Up(e){return e==null?`--`:`${e>0?`+`:``}${e.toFixed(2)}`}function Wp(e){return e?e.replaceAll(`_`,` `).replaceAll(`+`,` + `):`Dry-run`}function Gp(e){return e.split(`_`).map(e=>e.charAt(0).toUpperCase()+e.slice(1)).join(` `)}function Kp(e){return e==null?`--`:Math.round(e).toLocaleString()}function qp(e){return e==null?`--`:`$${e.toFixed(4)}`}function Jp(e){return e==null?`--`:`${(e/1e3).toFixed(1)}s`}function Yp(e){if(!e)return`Waiting for action progress`;let t=e.unit===`llm_call`?`call`:e.unit===`step`?`step`:`eval`;return e.status===`started`?`Running ${t} ${e.current}/${e.total}`:e.passed==null?`Finished ${t} ${e.current}/${e.total}`:`${e.passed?`Passed`:`Failed`} ${t} ${e.current}/${e.total}`}function Xp(e){return e?.unit===`llm_call`?`Current call`:e?.unit===`step`?`Current step`:`Current eval`}function Zp(e){return e?.unit===`eval`?`Query`:`Current item`}function Qp(e,t,n){return`${e} ${e===1?t:n}`}function $p({title:e,emptyState:t,samples:n}){return(0,I.jsxs)(`div`,{className:`space-y-2 rounded-xl border border-border/15 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:e}),n.length===0?(0,I.jsx)(`div`,{className:`text-sm text-muted-foreground`,children:t}):(0,I.jsx)(`div`,{className:`space-y-2`,children:n.map(t=>(0,I.jsxs)(`div`,{className:`rounded-lg border border-border/10 px-3 py-2`,children:[(0,I.jsx)(`div`,{className:`text-sm font-medium text-foreground`,children:t.query}),(0,I.jsx)(`div`,{className:`mt-1 text-sm text-muted-foreground`,children:t.evidence??`No captured evidence text.`})]},`${e}:${t.query}`))})]})}function em({title:e,metrics:t}){return(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:e}),(0,I.jsxs)(`div`,{className:`mt-3 grid gap-3 sm:grid-cols-2`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Duration`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:Jp(t.total_duration_ms)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Eval runs`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:Kp(t.eval_runs)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Input tokens`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:Kp(t.total_input_tokens)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Output tokens`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:Kp(t.total_output_tokens)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Cost`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:qp(t.total_cost_usd)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Turns`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:Kp(t.total_turns)})]})]})]})}function tm({watch:e}){return(0,I.jsxs)(`div`,{className:`space-y-4 rounded-xl border border-border/15 bg-background px-4 py-3`,children:[(0,I.jsxs)(`div`,{className:`grid gap-3 sm:grid-cols-2 xl:grid-cols-3`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Window sessions`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:Kp(e.snapshot.window_sessions)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Skill checks`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:Kp(e.snapshot.skill_checks)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Observed pass rate`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:Hp(e.snapshot.pass_rate)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`False negatives`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:Hp(e.snapshot.false_negative_rate)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Regression`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:e.snapshot.regression_detected?`Detected`:`Clear`})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Rolled back`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-semibold text-foreground`,children:e.rolled_back?`Yes`:`No`})]})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Invocation signal`}),(0,I.jsx)(`div`,{className:`mt-2 grid gap-2 sm:grid-cols-2`,children:Object.entries(e.snapshot.by_invocation_type).map(([e,t])=>(0,I.jsxs)(`div`,{className:`rounded-lg border border-border/10 px-3 py-2`,children:[(0,I.jsx)(`div`,{className:`text-sm font-medium text-foreground`,children:Gp(e)}),(0,I.jsxs)(`div`,{className:`mt-1 text-sm text-muted-foreground`,children:[t.passed,`/`,t.total,` passed`]})]},e))})]}),e.grade_regression?(0,I.jsxs)(`div`,{className:`rounded-lg border border-border/10 px-3 py-2`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Grade regression`}),(0,I.jsxs)(`div`,{className:`mt-1 text-sm text-foreground`,children:[`Baseline `,Hp(e.grade_regression.before),` / Recent`,` `,Hp(e.grade_regression.after),` / Delta`,` `,Up(-e.grade_regression.delta)]}),(0,I.jsx)(`div`,{className:`mt-1 text-sm text-muted-foreground`,children:e.grade_alert??`Grade watch signal detected.`})]}):null,(0,I.jsxs)(`div`,{className:`rounded-lg border border-border/10 px-3 py-2`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Recommendation`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm text-foreground`,children:e.recommendation})]})]})}function nm({searchRun:e}){return(0,I.jsxs)(R,{className:`border-border/20`,children:[(0,I.jsxs)(z,{className:`pb-4`,children:[(0,I.jsxs)(B,{className:`flex items-center gap-2 text-base`,children:[(0,I.jsx)(le,{className:`size-4`}),`Package search run`]}),(0,I.jsx)(V,{children:`Bounded package search result showing selected parent, candidates evaluated, and winner determination.`})]}),(0,I.jsxs)(H,{children:[(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-2 xl:grid-cols-4`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Selected parent`}),(0,I.jsx)(`div`,{className:`mt-2 truncate text-sm font-semibold font-mono`,children:e.parent_candidate_id?e.parent_candidate_id.slice(0,12):`None (root)`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Candidates evaluated`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:e.candidates_evaluated})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Winner`}),(0,I.jsx)(`div`,{className:`mt-2 truncate text-sm font-semibold font-mono`,children:e.winner_candidate_id?e.winner_candidate_id.slice(0,12):`No winner`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Frontier size`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:e.frontier_size})]})]}),(0,I.jsxs)(`div`,{className:`mt-4 grid gap-3 md:grid-cols-3`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3 text-sm`,children:[(0,I.jsx)(`div`,{className:`mb-1 text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Parent selection method`}),(0,I.jsx)(`div`,{className:`text-foreground`,children:e.parent_selection_method})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3 text-sm`,children:[(0,I.jsx)(`div`,{className:`mb-1 text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Search ID`}),(0,I.jsx)(`div`,{className:`truncate font-mono text-foreground`,children:e.search_id})]}),e.surface_plan?(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3 text-sm`,children:[(0,I.jsx)(`div`,{className:`mb-1 text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Surface budget`}),(0,I.jsxs)(`div`,{className:`text-foreground`,children:[`Routing `,e.surface_plan.routing_count,`, body`,` `,e.surface_plan.body_count]}),e.surface_plan.routing_weakness!=null&&e.surface_plan.body_weakness!=null?(0,I.jsxs)(`div`,{className:`mt-1 text-xs text-foreground`,children:[`Weakness: routing `,(e.surface_plan.routing_weakness*100).toFixed(1),`%, body `,(e.surface_plan.body_weakness*100).toFixed(1),`%`]}):null,(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.surface_plan.weakness_source})]}):null]}),e.winner_rationale?(0,I.jsxs)(`div`,{className:`mt-4 rounded-xl border border-border/15 bg-background px-4 py-3 text-sm text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`mb-1 text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Winner rationale`}),(0,I.jsx)(`div`,{className:`text-foreground`,children:e.winner_rationale})]}):null]})]})}function rm(){let[e,t]=c(),n=e.get(`event`)||void 0,r=e.get(`skill`)||void 0,i=e.get(`action`)||void 0,a=Zr(),o=$r({eventId:n,skillName:r,action:i,preferRunning:!0}),s=o?.skillName??r,u=zp(s),d=u.data?.session_metadata??[],f=Vp(d,e=>e.platform),p=Vp(d,e=>e.model),m=Vp(d,e=>e.agent_cli),h=a.filter(e=>!(r&&e.skillName!==r)),_=o?.summary?.package_evaluation_source??null,v=o?.summary?.package_candidate_id??null,y=o?.summary?.package_parent_candidate_id??null,b=o?.summary?.package_candidate_generation??null,x=o?.summary?.package_candidate_acceptance_decision??null,S=o?.summary?.package_candidate_acceptance_rationale??null,C=o?.summary?.package_evidence??null,w=o?.summary?.package_efficiency??null,T=o?.summary?.package_routing??null,E=o?.summary?.package_body??null,D=o?.summary?.package_grading??null,O=o?.summary?.package_unit_tests??null,ee=o?.summary?.package_watch??null,k=Tp(o?.summary?.recommended_command??null),te=C?[{title:Qp(C.replay_failures,`replay failure`,`replay failures`),emptyState:`No failed replay examples were captured.`,samples:C.replay_failure_samples},{title:Qp(C.baseline_wins,`baseline win`,`baseline wins`),emptyState:`No with-skill wins were captured.`,samples:C.baseline_win_samples},{title:Qp(C.baseline_regressions,`baseline regression`,`baseline regressions`),emptyState:`No with-skill regressions were captured.`,samples:C.baseline_regression_samples}]:[];return(0,I.jsxs)(`div`,{className:`mx-auto flex w-full max-w-[1600px] flex-col gap-6 px-6 py-6 lg:px-8`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-start justify-between gap-4`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2 text-xs uppercase tracking-[0.16em] text-muted-foreground`,children:[(0,I.jsxs)(l,{to:s?`/skills/${encodeURIComponent(s)}`:`/skills`,className:`inline-flex items-center gap-1 hover:text-foreground`,children:[(0,I.jsx)(Ke,{className:`size-3`}),`Back to skill`]}),(0,I.jsx)(`span`,{children:`/`}),(0,I.jsx)(`span`,{children:`Live run`})]}),(0,I.jsxs)(`div`,{className:`mt-3 flex flex-wrap items-center gap-3`,children:[(0,I.jsx)(`h1`,{className:`text-3xl font-semibold tracking-tight`,children:o?ei(o.action):`Lifecycle live run`}),o?Bp(o.status):null,s?(0,I.jsx)(F,{variant:`outline`,children:s}):null]}),(0,I.jsx)(`p`,{className:`mt-3 max-w-3xl text-sm text-muted-foreground`,children:`Dedicated streaming view for lifecycle actions. This screen shows the live terminal output, parsed measured action result, and historical platform/model/token aggregates for the selected skill.`})]}),(0,I.jsxs)(`div`,{className:`rounded-2xl border border-border/20 bg-muted/20 px-4 py-3 text-right`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.16em] text-muted-foreground`,children:`Watching`}),(0,I.jsx)(`div`,{className:`mt-1 text-sm font-medium`,children:o?.startedAt?K(new Date(o.startedAt).toISOString()):`Waiting for stream`}),(0,I.jsx)(`div`,{className:`mt-1 text-[11px] font-mono text-muted-foreground`,children:o?.id??`Awaiting action event`})]})]}),(0,I.jsxs)(`div`,{className:`grid gap-6 xl:grid-cols-[minmax(0,1.4fr)_400px]`,children:[(0,I.jsxs)(`div`,{className:`space-y-6`,children:[(0,I.jsxs)(R,{className:`border-border/20`,children:[(0,I.jsxs)(z,{className:`pb-4`,children:[(0,I.jsxs)(B,{className:`flex items-center gap-2 text-base`,children:[(0,I.jsx)(Le,{className:`size-4`}),`Run summary`]}),(0,I.jsx)(V,{children:`Structured action result when creator-loop commands emit machine-readable output.`})]}),(0,I.jsxs)(H,{children:[o?.summary?(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-2 xl:grid-cols-4`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:o.summary.before_label??`Before`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Hp(o.summary.before_pass_rate)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:o.summary.after_label??`After`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Hp(o.summary.after_pass_rate)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:o.summary.net_change_label??`Net change`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Up(o.summary.net_change)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:o.summary.validation_label??`Validation`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Wp(o.summary.validation_mode)})]})]}):(0,I.jsx)(`div`,{className:`rounded-xl border border-dashed border-border/20 px-4 py-8 text-sm text-muted-foreground`,children:`No structured summary yet. Start a create check, replay dry-run, publish, or watch flow from the skill report to stream measured results into this screen.`}),o?.summary?.reason?(0,I.jsx)(`div`,{className:`mt-4 rounded-xl border border-border/15 bg-background px-4 py-3 text-sm text-muted-foreground`,children:o.summary.reason}):null,k?(0,I.jsxs)(`div`,{className:`mt-4 rounded-xl border border-border/15 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Recommended next command`}),(0,I.jsx)(`div`,{className:`mt-2 font-mono text-sm text-foreground`,children:k})]}):null,C?(0,I.jsxs)(`div`,{className:`mt-4 space-y-4`,children:[_||v?(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-4`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Evaluation source`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:_===`artifact_cache`?`Cached artifact`:_===`candidate_cache`?`Accepted candidate cache`:`Fresh`})]}),v?(0,I.jsxs)(I.Fragment,{children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Candidate`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-semibold text-foreground`,children:v})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Parent / generation`}),(0,I.jsxs)(`div`,{className:`mt-2 text-sm font-semibold text-foreground`,children:[y??`root`,` /`,` `,b??0]})]})]}):null,x?(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Candidate acceptance`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-semibold text-foreground`,children:x}),S?(0,I.jsx)(`div`,{className:`mt-2 text-xs text-muted-foreground`,children:S}):null]}):null]}):null,(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Measured package evidence`}),(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-3`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Replay failures`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Kp(C.replay_failures)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Baseline wins`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Kp(C.baseline_wins)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Baseline regressions`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Kp(C.baseline_regressions)})]})]}),(0,I.jsx)(`div`,{className:`grid gap-3 xl:grid-cols-3`,children:te.map(e=>(0,I.jsx)($p,{title:e.title,emptyState:e.emptyState,samples:e.samples},e.title))})]}):null,w?(0,I.jsxs)(`div`,{className:`mt-4 space-y-4`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Measured efficiency`}),(0,I.jsxs)(`div`,{className:`grid gap-3 xl:grid-cols-2`,children:[(0,I.jsx)(em,{title:`With skill`,metrics:w.with_skill}),(0,I.jsx)(em,{title:`Without skill`,metrics:w.without_skill})]})]}):null,T?(0,I.jsxs)(`div`,{className:`mt-4 space-y-4`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Routing validation`}),(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-4`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Pass rate`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Hp(T.pass_rate)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Passed`}),(0,I.jsxs)(`div`,{className:`mt-2 text-lg font-semibold`,children:[T.passed,`/`,T.total]})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Fixture`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-semibold text-foreground`,children:T.fixture_id})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Runtime`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-semibold text-foreground`,children:Jp(T.runtime_metrics?.total_duration_ms??null)})]})]})]}):null,E?(0,I.jsxs)(`div`,{className:`mt-4 space-y-4`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Body validation`}),(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-4`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Structural`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:E.structural_valid?`Pass`:`Fail`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Quality`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:E.quality_score==null?`--`:E.quality_score.toFixed(2)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Threshold`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:E.quality_threshold.toFixed(2)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Valid`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:E.valid?`Yes`:`No`})]})]}),(0,I.jsxs)(`div`,{className:`grid gap-3 xl:grid-cols-2`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Structural reason`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm text-foreground`,children:E.structural_reason})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Quality rationale`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm text-foreground`,children:E.quality_reason??`No body-quality rationale captured.`})]})]})]}):null,D?(0,I.jsxs)(`div`,{className:`mt-4 space-y-4`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Measured grading context`}),(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-2 xl:grid-cols-4`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Baseline grade`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Hp(D.baseline?.pass_rate??null)}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:D.baseline?`${Kp(D.baseline.sample_size)} graded sessions`:`No grading baseline`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Recent average`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Hp(D.recent?.average_pass_rate??null)}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:D.recent?`${Kp(D.recent.sample_size)} recent grading runs`:`No recent grading runs`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Grade delta`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Up(D.pass_rate_delta)}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:D.regressed==null?`Regression unknown`:D.regressed?`Recent grading is below baseline`:`Recent grading is at or above baseline`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Mean score delta`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Up(D.mean_score_delta)}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:D.baseline?.mean_score!=null&&D.recent?.average_mean_score!=null?`Baseline ${D.baseline.mean_score.toFixed(2)} / Recent ${D.recent.average_mean_score.toFixed(2)}`:`Mean score unavailable`})]})]})]}):null,O?(0,I.jsxs)(`div`,{className:`mt-4 space-y-4`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Deterministic unit tests`}),(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-3`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Pass rate`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Hp(O.pass_rate)}),(0,I.jsxs)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:[O.passed,`/`,O.total,` passing`]})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Failing tests`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Kp(O.failed)}),(0,I.jsxs)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:[`Latest run `,O.run_at]})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Failure samples`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Kp(O.failing_tests.length)}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:`Representative deterministic failures`})]})]}),O.failing_tests.length>0?(0,I.jsx)(`div`,{className:`grid gap-3 xl:grid-cols-3`,children:O.failing_tests.map(e=>(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-sm font-medium text-foreground`,children:e.test_id}),(0,I.jsx)(`div`,{className:`mt-2 text-sm text-muted-foreground`,children:e.error??`Assertions failed without an explicit error.`}),e.failed_assertions.length>0?(0,I.jsx)(`div`,{className:`mt-2 text-xs text-muted-foreground`,children:e.failed_assertions.join(` | `)}):null]},e.test_id))}):null]}):null,ee?(0,I.jsxs)(`div`,{className:`mt-4 space-y-4`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Measured watch signal`}),(0,I.jsx)(tm,{watch:ee})]}):null,o?.summary?.watch_gate_passed==null?null:(0,I.jsxs)(`div`,{className:`mt-4 flex items-center gap-2`,children:[(0,I.jsxs)(F,{variant:o.summary.watch_gate_passed?`default`:`destructive`,children:[`Watch gate: `,o.summary.watch_gate_passed?`Passed`:`Alert`]}),o.summary.watch_gate_passed?null:(0,I.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:`Active watch alerts detected. Review before proceeding.`})]})]})]}),o?.summary?.search_run?(0,I.jsx)(nm,{searchRun:o.summary.search_run}):null,(0,I.jsxs)(R,{className:`border-border/20`,children:[(0,I.jsxs)(z,{className:`pb-4`,children:[(0,I.jsxs)(B,{className:`flex items-center gap-2 text-base`,children:[(0,I.jsx)(Le,{className:`size-4`}),`Live action progress`]}),(0,I.jsx)(V,{children:`Structured progress updates from the active creator-loop action. Create check emits draft-validation steps, replay emits per-eval progress, and eval generation plus unit-test generation emit step and LLM-call progress through the same contract.`})]}),(0,I.jsx)(H,{children:o?.progress?(0,I.jsxs)(`div`,{className:`space-y-4`,children:[(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-3`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:Xp(o.progress)}),(0,I.jsxs)(`div`,{className:`mt-2 text-lg font-semibold`,children:[o.progress.current,`/`,o.progress.total]})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Status`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Yp(o.progress)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Outcome`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:o.progress.passed==null?`Pending`:o.progress.passed?`Pass`:`Fail`})]})]}),o.progress.phase?(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3 text-sm text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`mb-1 text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Phase`}),(0,I.jsx)(`div`,{className:`text-foreground`,children:o.progress.phase.replaceAll(`_`,` `)})]}):null,o.progress.label??o.progress.query?(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3 text-sm text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`mb-1 text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:Zp(o.progress)}),(0,I.jsx)(`div`,{className:`text-foreground`,children:o.progress.label??o.progress.query})]}):null,o.progress.evidence?(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-background px-4 py-3 text-sm text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`mb-1 text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Last detail`}),(0,I.jsx)(`div`,{children:o.progress.evidence})]}):null]}):(0,I.jsx)(`div`,{className:`rounded-xl border border-dashed border-border/20 px-4 py-8 text-sm text-muted-foreground`,children:`Waiting for structured progress. Open this page before or during a creator-loop run to watch evals, LLM calls, or action steps stream through.`})})]}),(0,I.jsxs)(R,{className:`border-border/20`,children:[(0,I.jsxs)(z,{className:`pb-4`,children:[(0,I.jsxs)(B,{className:`flex items-center gap-2 text-base`,children:[(0,I.jsx)(he,{className:`size-4`}),`Live runtime metrics`]}),(0,I.jsx)(V,{children:`Per-run metadata emitted from the active action runtime. Replay still has the richest token and cost detail today, while other provider-backed actions emit normalized platform, model, and duration updates through the same metrics surface.`})]}),(0,I.jsx)(H,{className:`space-y-4`,children:o?.metrics?(0,I.jsxs)(I.Fragment,{children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap gap-2`,children:[(0,I.jsx)(F,{variant:`secondary`,children:o.metrics.platform??`Unknown platform`}),(0,I.jsx)(F,{variant:`secondary`,children:o.metrics.model??`Unknown model`}),o.metrics.session_id?(0,I.jsx)(F,{variant:`outline`,children:o.metrics.session_id}):null]}),(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-2 xl:grid-cols-3`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Input tokens`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Kp(o.metrics.input_tokens)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Output tokens`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Kp(o.metrics.output_tokens)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Cache read`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Kp(o.metrics.cache_read_input_tokens)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Cache create`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Kp(o.metrics.cache_creation_input_tokens)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Cost`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:qp(o.metrics.total_cost_usd)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Duration`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:Jp(o.metrics.duration_ms)})]})]})]}):(0,I.jsx)(`div`,{className:`rounded-xl border border-dashed border-border/20 px-4 py-8 text-sm text-muted-foreground`,children:`Waiting for structured runtime metrics. Replay emits token and cost detail today, while other actions emit normalized provider/model/duration data once their LLM calls start and finish.`})})]}),(0,I.jsxs)(R,{className:`border-border/20`,children:[(0,I.jsxs)(z,{className:`pb-4`,children:[(0,I.jsxs)(B,{className:`flex items-center gap-2 text-base`,children:[(0,I.jsx)(de,{className:`size-4`}),`Streaming output`]}),(0,I.jsx)(V,{children:`Live stdout and stderr from the active creator-loop action.`})]}),(0,I.jsx)(H,{children:(0,I.jsx)(`div`,{className:`max-h-[640px] overflow-auto rounded-2xl border border-border/15 bg-zinc-950 px-4 py-3 font-mono text-[12px] leading-6 text-zinc-100`,children:o?.logs.length?o.logs.map(e=>(0,I.jsxs)(`div`,{className:e.stage===`stderr`?`text-amber-300`:e.stage===`progress`?`text-emerald-300`:e.stage===`metrics`?`text-sky-300`:``,children:[(0,I.jsx)(`span`,{className:`mr-3 text-zinc-500`,children:new Date(e.ts).toLocaleTimeString()}),(0,I.jsxs)(`span`,{className:`mr-3 inline-block min-w-16 text-zinc-500`,children:[`[`,e.stage,`]`]}),(0,I.jsx)(`span`,{children:e.text})]},e.id)):(0,I.jsx)(`div`,{className:`text-zinc-500`,children:"Waiting for live output. Start a dashboard action or run a supported `selftune` command in another terminal."})})})]})]}),(0,I.jsxs)(`div`,{className:`space-y-6`,children:[(0,I.jsxs)(R,{className:`border-border/20`,children:[(0,I.jsxs)(z,{className:`pb-4`,children:[(0,I.jsxs)(B,{className:`flex items-center gap-2 text-base`,children:[(0,I.jsx)(he,{className:`size-4`}),`Skill telemetry context`]}),(0,I.jsx)(V,{children:`Historical aggregate data for the selected skill. This uses the existing skill report telemetry so you can narrate model and token footprint during the demo.`})]}),(0,I.jsxs)(H,{className:`space-y-4`,children:[(0,I.jsxs)(`div`,{className:`grid grid-cols-2 gap-3`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Input tokens`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:u.data?.token_usage.total_input_tokens.toLocaleString()??`--`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Output tokens`}),(0,I.jsx)(`div`,{className:`mt-2 text-lg font-semibold`,children:u.data?.token_usage.total_output_tokens.toLocaleString()??`--`})]})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`mb-2 flex items-center gap-2 text-xs font-medium uppercase tracking-[0.12em] text-muted-foreground`,children:[(0,I.jsx)(le,{className:`size-3.5`}),`Platforms`]}),(0,I.jsx)(`div`,{className:`flex flex-wrap gap-2`,children:f.length?f.map(e=>(0,I.jsxs)(F,{variant:`secondary`,children:[e.label,` · `,e.count]},`platform-${e.label}`)):(0,I.jsx)(F,{variant:`outline`,children:`No platform data yet`})})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`mb-2 flex items-center gap-2 text-xs font-medium uppercase tracking-[0.12em] text-muted-foreground`,children:[(0,I.jsx)(g,{className:`size-3.5`}),`Models`]}),(0,I.jsx)(`div`,{className:`flex flex-wrap gap-2`,children:p.length?p.map(e=>(0,I.jsxs)(F,{variant:`secondary`,children:[e.label,` · `,e.count]},`model-${e.label}`)):(0,I.jsx)(F,{variant:`outline`,children:`No model data yet`})})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`mb-2 flex items-center gap-2 text-xs font-medium uppercase tracking-[0.12em] text-muted-foreground`,children:[(0,I.jsx)(he,{className:`size-3.5`}),`Agent CLIs`]}),(0,I.jsx)(`div`,{className:`flex flex-wrap gap-2`,children:m.length?m.map(e=>(0,I.jsxs)(F,{variant:`secondary`,children:[e.label,` · `,e.count]},`agent-${e.label}`)):(0,I.jsx)(F,{variant:`outline`,children:`No agent CLI data yet`})})]})]})]}),(0,I.jsxs)(R,{className:`border-border/20`,children:[(0,I.jsxs)(z,{className:`pb-4`,children:[(0,I.jsx)(B,{className:`text-base`,children:`Recent live runs`}),(0,I.jsx)(V,{children:`Quick jump list for the latest streamed creator-loop actions.`})]}),(0,I.jsx)(H,{className:`space-y-3`,children:h.length?h.slice(0,8).map(e=>{let n=new URLSearchParams;return n.set(`event`,e.id),e.skillName&&n.set(`skill`,e.skillName),n.set(`action`,e.action),(0,I.jsx)(`button`,{type:`button`,className:`w-full rounded-xl border border-border/15 bg-muted/20 px-3 py-3 text-left transition-colors hover:bg-muted/35`,onClick:()=>t(n),children:(0,I.jsxs)(`div`,{className:`flex items-start justify-between gap-3`,children:[(0,I.jsxs)(`div`,{className:`min-w-0`,children:[(0,I.jsx)(`div`,{className:`truncate text-sm font-medium`,children:ei(e.action)}),(0,I.jsxs)(`div`,{className:`mt-1 truncate text-[11px] text-muted-foreground`,children:[e.skillName??`No skill`,` ·`,` `,K(new Date(e.updatedAt).toISOString())]})]}),Bp(e.status)]})},e.id)}):(0,I.jsx)(`div`,{className:`rounded-xl border border-dashed border-border/20 px-4 py-6 text-sm text-muted-foreground`,children:`No live runs have been observed in this browser session yet.`})})]})]})]})]})}function im({evolution:e,activeProposal:t,onSelect:n,collapsedProposalCount:r=6}){let i=(0,N.useMemo)(()=>new Set(e.map(e=>e.proposal_id)).size,[e]),a=i>r,[o,s]=(0,N.useState)(!a),c=(0,N.useMemo)(()=>{if(o)return e;let t=new Set,n=[];for(let i of e){if(!t.has(i.proposal_id)){if(t.size>=r)continue;t.add(i.proposal_id)}n.push(i)}return n},[r,e,o]);return(0,I.jsx)(`aside`,{className:`w-full px-4 py-4 @5xl/main:w-[252px] @5xl/main:self-start @5xl/main:pr-0`,children:(0,I.jsx)(`div`,{className:`@5xl/main:sticky @5xl/main:top-16`,children:(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-3 py-3 text-xs ${o?`themed-scroll max-h-[26rem] overflow-y-auto @5xl/main:max-h-[calc(100svh-6rem)]`:`overflow-visible`}`,children:[(0,I.jsx)(_f,{entries:c,selectedProposalId:t,onSelect:n}),a?(0,I.jsxs)(`button`,{type:`button`,onClick:()=>s(e=>!e),className:`mt-2 flex w-full items-center justify-center gap-1.5 py-2 text-[11px] text-muted-foreground transition-colors hover:text-foreground`,children:[(0,I.jsx)(oe,{className:`size-3 transition-transform duration-150 ${o?`rotate-180`:``}`}),o?`Collapse timeline`:`Show full timeline (${i} proposals)`]}):null]})})})}function am({evolution:e,activeProposal:t,onSelect:n,evidence:r,viewerProposalId:i,showViewer:a,emptyState:o}){return(0,I.jsx)(`div`,{className:`overflow-hidden rounded-2xl border border-border/15 bg-card`,children:(0,I.jsxs)(`div`,{className:`flex flex-col @5xl/main:grid @5xl/main:grid-cols-[252px_minmax(0,1fr)] @5xl/main:items-start`,children:[e.length>0?(0,I.jsx)(im,{evolution:e,activeProposal:t,onSelect:n}):null,(0,I.jsx)(`div`,{className:`min-w-0 p-4 @xl/main:p-5`,children:a?(0,I.jsx)(sf,{proposalId:i,evolution:e,evidence:r}):o??(0,I.jsx)(R,{className:`rounded-2xl`,children:(0,I.jsx)(H,{className:`py-12`,children:(0,I.jsx)(`div`,{className:`flex items-center justify-center text-sm text-muted-foreground`,children:`No recent evaluation evidence available`})})})})]})})}function om({invocations:e,sessionMetadata:t,callout:n}){return(0,I.jsxs)(`div`,{className:`space-y-2`,children:[n,(0,I.jsx)(Ff,{invocations:e,sessionMetadata:t})]})}function sm({examples:e,...t}){return(0,I.jsxs)(`div`,{"data-parity-root":`skill-report-evidence`,className:`space-y-6`,children:[e?(0,I.jsx)(Mf,{examples:e}):null,(0,I.jsx)(am,{...t})]})}function cm({evidenceQuality:e,dataHygiene:t,emptyState:n}){return!e&&!t?n??(0,I.jsx)(R,{className:`rounded-2xl border border-border/15 bg-card`,children:(0,I.jsx)(H,{className:`py-12`,children:(0,I.jsx)(`p`,{className:`text-center text-sm text-muted-foreground`,children:`Detailed data-quality metrics are not available for this skill yet.`})})}):(0,I.jsx)(Nf,{evidenceQuality:e,dataHygiene:t})}function lm(e){let t=Date.now()-new Date(e).getTime(),n=Math.floor(t/6e4);if(n<1)return`just now`;if(n<60)return`${n}m ago`;let r=Math.floor(n/60);if(r<24)return`${r}h ago`;let i=Math.floor(r/24);if(i<30)return`${i}d ago`;let a=new Date(e);return Number.isNaN(a.getTime())?e:a.toLocaleDateString(`en-US`,{month:`short`,day:`numeric`,year:`numeric`})}function um({rows:e,emptyState:t}){return e.length===0?t??(0,I.jsx)(`div`,{className:`rounded-lg border border-dashed border-border p-8 text-center text-sm text-muted-foreground`,children:`No missed queries detected.`}):(0,I.jsx)(`div`,{"data-parity-root":`skill-report-missed-queries`,className:`space-y-3`,children:e.map(e=>(0,I.jsxs)(`div`,{className:`flex items-start gap-3 rounded-lg border border-border p-3`,children:[(0,I.jsx)(`div`,{className:`mt-0.5 h-2 w-2 shrink-0 rounded-full bg-orange-500`}),(0,I.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,I.jsx)(`p`,{className:`truncate text-sm text-foreground`,children:e.query}),(0,I.jsxs)(`div`,{className:`mt-1 flex items-center gap-3 text-xs text-muted-foreground`,children:[e.confidence!==null&&(0,I.jsxs)(`span`,{className:`font-medium text-orange-600 dark:text-orange-400`,children:[(e.confidence*100).toFixed(0),`% confidence`]}),e.source?(0,I.jsx)(`span`,{className:`rounded bg-muted px-1.5 py-0.5`,children:e.source}):null,(0,I.jsx)(`span`,{children:lm(e.createdAt)})]})]})]},e.id))})}var dm=`rounded-lg px-3 font-headline text-xs uppercase tracking-wider data-active:bg-background/70 data-active:text-foreground`;function fm({tabs:e,value:t,defaultValue:n,onValueChange:r}){let i=e.filter(e=>!e.hidden);if(i.length===0)return null;let a=i[0]?.value;return(0,I.jsxs)(St,{...t===void 0?{defaultValue:n??a,onValueChange:r}:{value:t,onValueChange:r},children:[(0,I.jsx)(wt,{variant:`line`,className:`rounded-xl border border-border/10 bg-muted/20 px-1.5 py-1`,children:i.map(e=>{let t=(0,I.jsxs)(I.Fragment,{children:[e.label,e.badge]});return e.tooltip?(0,I.jsxs)(Ot,{children:[(0,I.jsx)(kt,{render:(0,I.jsx)(Tt,{value:e.value,className:dm}),children:t}),(0,I.jsx)(At,{children:e.tooltip})]},e.value):(0,I.jsx)(Tt,{value:e.value,className:dm,children:t},e.value)})}),i.map(e=>(0,I.jsx)(Et,{value:e.value,className:e.contentClassName,children:e.content},e.value))]})}function pm({backLink:e,title:t,statusBadge:n,toolbarMeta:r,summary:i,showOnboardingBanner:a=!1,guideButtonLabel:o=`How to read this page`,nextAction:s,trustState:c,coverage:l,evidenceQuality:u,routingQuality:d,evolutionState:f,dataHygiene:p,fallbackChecks:m,fallbackSessions:h,fallbackEvidenceRows:g,fallbackEvolutionRows:_,fallbackLatestAction:v,nextActionText:y,children:b}){let[x,S]=(0,N.useState)(!1);return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(Yf,{open:x,onOpenChange:S}),(0,I.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-5 p-4 lg:px-6 lg:pb-6 lg:pt-0`,children:[(0,I.jsxs)(`div`,{className:`sticky top-0 z-30 space-y-2 border-b border-border/15 bg-background/95 py-2.5 backdrop-blur supports-[backdrop-filter]:bg-background/85`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-3`,children:[e,(0,I.jsx)(`h1`,{className:`shrink-0 font-headline text-base font-semibold tracking-tight lg:text-lg`,children:t}),n,(0,I.jsxs)(`div`,{className:`ml-auto flex shrink-0 items-center gap-4`,children:[(0,I.jsx)(L,{variant:`outline`,size:`sm`,onClick:()=>S(!0),children:o}),r]})]}),i?(0,I.jsx)(`div`,{className:`space-y-1.5 text-sm leading-relaxed text-muted-foreground`,children:i}):null]}),a?(0,I.jsx)(Xf,{onOpenGuide:()=>S(!0)}):null,(0,I.jsxs)(`div`,{className:`space-y-4`,children:[(0,I.jsx)(Tf,{nextAction:s,latestDecision:(f?.evolution_rows??_)>0&&(f?.latest_action??v)?{action:f?.latest_action??v??`No data`,timestamp:f?.latest_timestamp??null,evolutionCount:f?.evolution_rows??_}:void 0}),(0,I.jsx)(Af,{trustState:c,coverage:l,evidenceQuality:u,routingQuality:d,evolutionState:f,dataHygiene:p,fallbackChecks:m,fallbackSessions:h,nextActionText:y,onOpenGuide:()=>S(!0)}),(0,I.jsx)(jf,{coverage:l,evidenceQuality:u,routingQuality:d,evolutionState:f,fallbackChecks:m,fallbackSessions:h,fallbackEvidenceRows:g,fallbackEvolutionRows:_,fallbackLatestAction:v})]}),b?(0,I.jsx)(`div`,{className:`space-y-4 border-t border-border/10 pt-4`,children:b}):null]})]})}function mm({state:e}){let t=hm(e);return(0,I.jsxs)(F,{variant:t.variant,className:`gap-1.5 shrink-0 text-[10px]`,children:[(0,I.jsx)(`span`,{className:P(`size-1.5 shrink-0 rounded-full`,t.dotClassName)}),t.label]})}function hm(e){switch(e){case`low_sample`:return{label:`Low Sample`,variant:`secondary`,dotClassName:`bg-muted-foreground/60`};case`observed`:return{label:`Observed`,variant:`outline`,dotClassName:`bg-muted-foreground`};case`watch`:return{label:`Watch`,variant:`secondary`,dotClassName:`bg-amber-400`};case`validated`:return{label:`Validated`,variant:`default`,dotClassName:`bg-primary`};case`deployed`:return{label:`Deployed`,variant:`default`,dotClassName:`bg-primary`};case`rolled_back`:return{label:`Rolled Back`,variant:`destructive`,dotClassName:`bg-destructive`}}}function gm(e){switch(e){case`generate_evals`:return`Generate evals`;case`run_unit_tests`:return`Run unit tests`;case`run_replay_dry_run`:return`Replay dry-run`;case`measure_baseline`:return`Measure baseline`;case`deploy_candidate`:return`Ship candidate`;case`watch_deployment`:return`Monitor live`}}function _m(e){switch(e){case`generate_evals`:return`generate-evals`;case`run_unit_tests`:return`generate-unit-tests`;case`run_replay_dry_run`:return`replay-dry-run`;case`measure_baseline`:return`measure-baseline`;case`deploy_candidate`:return`deploy-candidate`;case`watch_deployment`:return`watch`}}function vm(e){switch(e.next_step){case`generate_evals`:return{icon:(0,I.jsx)(ue,{className:`size-5 text-primary`}),text:Ep(e.summary),actionLabel:`Generate evals`,variant:`default`};case`run_unit_tests`:return{icon:(0,I.jsx)(ne,{className:`size-5 text-primary`}),text:Ep(e.summary),actionLabel:`Generate unit tests`,variant:`default`};case`run_replay_dry_run`:return{icon:(0,I.jsx)(ae,{className:`size-5 text-primary`}),text:Ep(e.summary),actionLabel:`Run replay dry-run`,variant:`secondary`};case`measure_baseline`:return{icon:(0,I.jsx)(ve,{className:`size-5 text-primary`}),text:Ep(e.summary),actionLabel:`Measure baseline`,variant:`secondary`};case`deploy_candidate`:return{icon:(0,I.jsx)(S,{className:`size-5 text-primary`}),text:Ep(e.summary),actionLabel:`Ship candidate`,variant:`outline`};case`watch_deployment`:return{icon:(0,I.jsx)(y,{className:`size-5 text-primary`}),text:Ep(e.summary),actionLabel:`Monitor live`,variant:`outline`}}}function ym(e){switch(e){case`blocked_spec_validation`:return`Verification blocked`;case`needs_spec_validation`:return`Verify draft`;case`needs_package_resources`:return`Finish package`;case`needs_evals`:return`Generate evals`;case`needs_unit_tests`:return`Generate unit tests`;case`needs_routing_replay`:return`Replay package`;case`needs_baseline`:return`Measure baseline`;case`ready_to_publish`:return`Publish draft`}}function bm(e){switch(e){case`blocked_spec_validation`:case`needs_spec_validation`:return`create-check`;case`needs_evals`:return`generate-evals`;case`needs_unit_tests`:return`generate-unit-tests`;case`needs_routing_replay`:return`replay-dry-run`;case`needs_baseline`:return`measure-baseline`;case`ready_to_publish`:return`deploy-candidate`;default:return null}}function xm(e){switch(e.state){case`blocked_spec_validation`:return{icon:(0,I.jsx)(at,{className:`size-5 text-destructive`}),text:Ep(e.summary),actionLabel:`Verify draft`,variant:`destructive`};case`needs_spec_validation`:return{icon:(0,I.jsx)(b,{className:`size-5 text-primary`}),text:Ep(e.summary),actionLabel:`Verify draft`,variant:`secondary`};case`needs_package_resources`:return{icon:(0,I.jsx)(k,{className:`size-5 text-primary`}),text:e.summary,actionLabel:`Finish package`,variant:`secondary`};case`needs_evals`:return{icon:(0,I.jsx)(ue,{className:`size-5 text-primary`}),text:e.summary,actionLabel:`Generate evals`,variant:`default`};case`needs_unit_tests`:return{icon:(0,I.jsx)(ne,{className:`size-5 text-primary`}),text:e.summary,actionLabel:`Generate unit tests`,variant:`default`};case`needs_routing_replay`:return{icon:(0,I.jsx)(ae,{className:`size-5 text-primary`}),text:e.summary,actionLabel:`Replay package`,variant:`secondary`};case`needs_baseline`:return{icon:(0,I.jsx)(ve,{className:`size-5 text-primary`}),text:e.summary,actionLabel:`Measure baseline`,variant:`secondary`};case`ready_to_publish`:return{icon:(0,I.jsx)(S,{className:`size-5 text-primary`}),text:e.summary,actionLabel:`Publish draft`,variant:`outline`}}}function Sm(e,t){switch(e.filter(e=>e.proposal_id===t).sort((e,t)=>(e.timestamp??``).localeCompare(t.timestamp??``)).at(-1)?.action){case`validated`:return{icon:(0,I.jsx)(nt,{className:`size-5 text-primary`}),text:`This proposal validated successfully. Review the evidence and deploy if it still looks right.`,actionLabel:`Ship candidate`,variant:`default`};case`created`:return{icon:(0,I.jsx)(k,{className:`size-5 text-primary`}),text:`This proposal has been generated and is ready for review. Inspect the evidence before deploying anything.`,actionLabel:`Review proposal`,variant:`default`};case`deployed`:return{icon:(0,I.jsx)(y,{className:`size-5 text-primary`}),text:`This proposal has already been deployed. Review the evidence trail and keep watching live behavior.`,actionLabel:`Monitor live`,variant:`outline`};case`rolled_back`:return{icon:(0,I.jsx)(at,{className:`size-5 text-destructive`}),text:`This proposal was rolled back. Review the evidence trail before trying another change.`,actionLabel:`Inspect rollback`,variant:`destructive`};case`rejected`:return{icon:(0,I.jsx)(at,{className:`size-5 text-destructive`}),text:`This proposal was rejected by validation. Review the failure evidence before retrying.`,actionLabel:`Review rejection`,variant:`destructive`};default:return{icon:(0,I.jsx)(k,{className:`size-5 text-primary`}),text:`Review the selected proposal and its evidence trail.`,actionLabel:`Review proposal`,variant:`default`}}}function Cm({score:e}){if(e==null)return null;let t=Math.round(e*100);return(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Watch trust`}),(0,I.jsxs)(`div`,{className:`mt-2 text-sm font-medium ${e>=.8?`text-emerald-500`:e>=.5?`text-amber-500`:`text-red-500`}`,children:[t,`%`]}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e>=.8?`Stable post-deploy`:e>=.5?`Needs more data`:`Active regressions`})]})}function wm({readiness:e,skillPath:t,skillName:n,watchTrustScore:r}){let[i,a]=(0,N.useState)(null),o=p();if(!e)return null;let s=_m(e.next_step),c=[{action:`generate-evals`,label:`Generate evals`,autoSynthetic:e.eval_readiness===`cold_start_ready`},{action:`generate-unit-tests`,label:`Generate unit tests`},{action:`replay-dry-run`,label:`Replay dry-run`},{action:`measure-baseline`,label:`Measure baseline`},{action:`deploy-candidate`,label:`Ship candidate`},{action:`watch`,label:`Monitor live`}];function l(e,r){if(!t){Mi.error(`Skill path unavailable`,{description:`This skill needs a resolved SKILL.md path before dashboard actions can run.`});return}a(e),o(`/live-run?${new URLSearchParams({skill:n,action:e}).toString()}`),ta(e,{skill:n,skillPath:t,autoSynthetic:r}).catch(e=>{let t=e instanceof Error?e.message:String(e);Mi.error(`Action failed to start`,{description:t})}).finally(()=>{a(null)})}return(0,I.jsxs)(R,{className:`rounded-2xl border-border/15`,children:[(0,I.jsxs)(z,{className:`gap-2`,children:[(0,I.jsx)(B,{className:`text-base`,children:`Measured trust loop`}),(0,I.jsx)(V,{children:`Build the evidence before you trust a change: generate evals, add unit tests, replay a dry-run, measure baseline, then ship and monitor.`})]}),(0,I.jsxs)(H,{className:`space-y-4`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-2`,children:[(0,I.jsx)(F,{variant:`secondary`,children:gm(e.next_step)}),(0,I.jsx)(`span`,{className:`text-sm text-muted-foreground`,children:e.summary})]}),(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-2 xl:grid-cols-6`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Eval readiness`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-medium`,children:e.eval_readiness===`log_ready`?`Log-ready`:e.eval_readiness===`cold_start_ready`?`Cold-start ready`:`Telemetry only`}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.eval_set_entries>0?`${e.eval_set_entries} canonical eval entries`:`${e.trusted_session_count} trusted sessions`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Unit tests`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-medium`,children:e.unit_test_cases>0?`${e.unit_test_cases} cases`:`Not generated`}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.unit_test_pass_rate==null?`No stored test run`:`Last run ${Math.round(e.unit_test_pass_rate*100)}%`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Replay validation`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-medium`,children:e.replay_check_count>0?`${e.replay_check_count} checks`:`Not recorded`}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.latest_validation_mode?`Latest mode: ${e.latest_validation_mode}`:`Use --validation-mode replay`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Baseline`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-medium`,children:e.baseline_sample_size>0?`${e.baseline_sample_size} samples`:`Not stored`}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.baseline_pass_rate==null?`Run grade baseline`:`Pass rate ${Math.round(e.baseline_pass_rate*100)}%`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Deployment`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-medium`,children:e.deployment_readiness===`ready_to_deploy`?`Ready to deploy`:e.deployment_readiness===`watching`?`Watching live`:e.deployment_readiness===`rolled_back`?`Rolled back`:`Blocked`}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:Ep(e.deployment_summary)})]}),(0,I.jsx)(Cm,{score:r})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-dashed border-border/30 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Recommended command`}),(0,I.jsx)(`code`,{className:`mt-2 block overflow-x-auto text-[11px] text-foreground`,children:Tp(e.recommended_command)})]}),e.deployment_command?(0,I.jsxs)(`div`,{className:`rounded-xl border border-dashed border-border/30 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Deploy / watch command`}),(0,I.jsx)(`code`,{className:`mt-2 block overflow-x-auto text-[11px] text-foreground`,children:Tp(e.deployment_command)})]}):null,(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center justify-between gap-2`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Run from dashboard`}),(0,I.jsx)(`p`,{className:`mt-1 text-sm text-muted-foreground`,children:`These steps execute locally and stream live stdout/stderr into the dashboard feed.`})]}),t?(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(F,{variant:`secondary`,children:`Real-time stream`}),(0,I.jsx)(L,{type:`button`,variant:`ghost`,size:`sm`,onClick:()=>o(`/live-run?${new URLSearchParams({skill:n}).toString()}`),children:`Open live screen`})]}):(0,I.jsx)(F,{variant:`outline`,children:`Path unavailable`})]}),(0,I.jsx)(`div`,{className:`mt-4 grid gap-2 md:grid-cols-2 xl:grid-cols-3`,children:c.map(({action:e,label:n,autoSynthetic:r})=>(0,I.jsxs)(L,{type:`button`,variant:e===s?`default`:`outline`,disabled:!t||i!==null,onClick:()=>void l(e,r),children:[i===e?(0,I.jsx)(ae,{className:`mr-2 size-3.5 animate-spin`}):null,n]},e))})]})]})]})}function Tm({readiness:e,skillName:t}){let[n,r]=(0,N.useState)(null),i=p(),a=bm(e.state),o=Em();function s(n,a){r(n),i(`/live-run?${new URLSearchParams({skill:t,action:n}).toString()}`),ta(n,{skill:t,skillPath:e.skill_path,autoSynthetic:a}).catch(e=>{let t=e instanceof Error?e.message:String(e);Mi.error(`Action failed to start`,{description:t})}).finally(()=>{r(null)})}return(0,I.jsxs)(R,{className:`rounded-2xl border-border/15`,children:[(0,I.jsxs)(z,{className:`gap-2`,children:[(0,I.jsx)(B,{className:`text-base`,children:`Draft skill lifecycle`}),(0,I.jsx)(V,{children:`Finish package resources, verify the draft, then fill any missing measured checks before publishing into watch.`})]}),(0,I.jsxs)(H,{className:`space-y-4`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-2`,children:[(0,I.jsx)(F,{variant:`secondary`,children:ym(e.state)}),(0,I.jsx)(`span`,{className:`text-sm text-muted-foreground`,children:Ep(e.summary)})]}),(0,I.jsxs)(`div`,{className:`grid gap-3 md:grid-cols-2 xl:grid-cols-5`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Package`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-medium`,children:e.checks.workflow_entry?`Workflow entry ready`:`Workflow entry missing`}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.manifest_present?`Manifest present`:`Manifest inferred`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Description`}),(0,I.jsxs)(`div`,{className:`mt-2 text-sm font-medium`,children:[Math.round(e.description_quality.composite*100),`% quality`]}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.checks.skill_md_within_line_budget?`Within SKILL.md budget`:`Trim SKILL.md`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Replay`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-medium`,children:e.checks.package_replay_ready?`Package replay ready`:`Package replay blocked`}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.checks.routing_replay_recorded?`Replay recorded`:`Replay not recorded`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Baseline`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-medium`,children:e.checks.baseline_present?`Baseline stored`:`Baseline missing`}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.checks.unit_tests_present?`Unit tests present`:`Generate unit tests first`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Publish`}),(0,I.jsx)(`div`,{className:`mt-2 text-sm font-medium`,children:e.state===`ready_to_publish`?`Ready to publish`:`Not ready yet`}),(0,I.jsx)(`div`,{className:`mt-1 text-xs text-muted-foreground`,children:e.state===`needs_spec_validation`?`Verify draft before publish`:`Publish hands off into the existing improvement and watch path`})]})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-dashed border-border/30 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Recommended command`}),(0,I.jsx)(`code`,{className:`mt-2 block overflow-x-auto text-[11px] text-foreground`,children:Tp(e.next_command)})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-dashed border-border/30 bg-background px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Lifecycle verify command`}),(0,I.jsx)(`code`,{className:`mt-2 block overflow-x-auto text-[11px] text-foreground`,children:`selftune verify --skill-path ${e.skill_path}`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center justify-between gap-2`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Run from dashboard`}),(0,I.jsx)(`p`,{className:`mt-1 text-sm text-muted-foreground`,children:`Draft actions execute locally and stream stdout/stderr into the live dashboard feed.`})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(F,{variant:`secondary`,children:`Real-time stream`}),(0,I.jsx)(L,{type:`button`,variant:`ghost`,size:`sm`,onClick:()=>i(`/live-run?${new URLSearchParams({skill:t}).toString()}`),children:`Open live screen`})]})]}),(0,I.jsx)(`div`,{className:`mt-4 grid gap-2 md:grid-cols-2 xl:grid-cols-3`,children:o.map(({action:e,label:t,autoSynthetic:r})=>(0,I.jsxs)(L,{type:`button`,variant:e===a?`default`:`outline`,disabled:n!==null,onClick:()=>void s(e,r),children:[n===e?(0,I.jsx)(ae,{className:`mr-2 size-3.5 animate-spin`}):null,t]},e))})]})]})]})}function Em(){return[{action:`create-check`,label:`Verify draft`},{action:`generate-evals`,label:`Generate evals`,autoSynthetic:!0},{action:`generate-unit-tests`,label:`Generate unit tests`},{action:`replay-dry-run`,label:`Replay package`},{action:`measure-baseline`,label:`Measure baseline`},{action:`search-run`,label:`Run search`},{action:`report-package`,label:`Package report`},{action:`deploy-candidate`,label:`Publish draft`},{action:`watch`,label:`Publish + monitor`}]}function Dm(e,t,n,r,i){return e===`low_sample`?{icon:(0,I.jsx)(y,{className:`size-5`}),text:`Keep observing. This skill needs more sessions before trust can be assessed.`,actionLabel:`Keep observing`,variant:`secondary`}:e===`rolled_back`?{icon:(0,I.jsx)(at,{className:`size-5 text-destructive`}),text:`Inspect rollback evidence before re-deploying.`,actionLabel:`Inspect rollback`,variant:`destructive`}:e===`watch`&&(n??0)>.05?{icon:(0,I.jsx)(at,{className:`size-5 text-amber-500`}),text:`Clean source-truth data or routing data before trusting this report.`,actionLabel:`Clean data`,variant:`secondary`}:e===`watch`&&(t??0)>0?{icon:(0,I.jsx)(w,{className:`size-5 text-amber-500`}),text:`Generate evals to investigate missed triggers.`,actionLabel:`Generate evals`,variant:`secondary`}:e===`watch`?{icon:(0,I.jsx)(y,{className:`size-5 text-amber-500`}),text:`This skill is under active observation. Review recent invocations to verify routing accuracy.`,actionLabel:`Review invocations`,variant:`secondary`}:r?{icon:(0,I.jsx)(k,{className:`size-5 text-primary`}),text:`Review pending proposal.`,actionLabel:`Review proposal`,variant:`default`}:e===`validated`?{icon:(0,I.jsx)(nt,{className:`size-5 text-primary`}),text:`Deploy the validated candidate.`,actionLabel:`Deploy candidate`,variant:`default`}:e===`deployed`?{icon:(0,I.jsx)(b,{className:`size-5 text-primary`}),text:`No action needed. Skill is healthy and being monitored.`,actionLabel:`Healthy`,variant:`outline`}:e===`observed`?{icon:(0,I.jsx)(y,{className:`size-5 text-muted-foreground`}),text:`No action needed. Selftune is still observing this skill and building confidence from real usage.`,actionLabel:`Observed`,variant:`outline`}:{icon:(0,I.jsx)(y,{className:`size-5`}),text:`Continue monitoring this skill.`,actionLabel:`Monitor`,variant:`outline`}}function Om({frontierState:e}){if(!e||e.members.length===0)return null;let t=e.members.filter(e=>e.decision===`accepted`),n=t.filter(e=>e.watch_demoted);return(0,I.jsxs)(R,{className:`rounded-2xl border-border/15`,children:[(0,I.jsxs)(z,{className:`gap-2`,children:[(0,I.jsxs)(B,{className:`flex items-center gap-2 text-base`,children:[(0,I.jsx)(le,{className:`size-4`}),`Package frontier`]}),(0,I.jsx)(V,{children:`Accepted candidates ranked by measured evidence. Watch-fed demotions are flagged when live observation evidence causes a previously accepted candidate to lose rank.`})]}),(0,I.jsxs)(H,{className:`space-y-4`,children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-2`,children:[(0,I.jsxs)(F,{variant:`secondary`,children:[e.accepted_count,` accepted`]}),e.rejected_count>0?(0,I.jsxs)(F,{variant:`outline`,children:[e.rejected_count,` rejected`]}):null,e.pending_count>0?(0,I.jsxs)(F,{variant:`outline`,children:[e.pending_count,` pending`]}):null,n.length>0?(0,I.jsxs)(F,{variant:`destructive`,children:[(0,I.jsx)(Qe,{className:`mr-1 size-3`}),n.length,` watch-demoted`]}):null]}),e.latest_search_run?(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`Latest search run`}),(0,I.jsxs)(`div`,{className:`mt-2 grid gap-2 text-sm md:grid-cols-4`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`Parent: `}),(0,I.jsx)(`span`,{className:`font-mono`,children:e.latest_search_run.parent_candidate_id?.slice(0,12)??`root`})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`Winner: `}),(0,I.jsx)(`span`,{className:`font-mono`,children:e.latest_search_run.winner_candidate_id?.slice(0,12)??`none`})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`Method: `}),(0,I.jsx)(`span`,{children:e.latest_search_run.provenance.parent_selection_method})]}),e.latest_search_run.provenance.surface_plan?(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`Budget: `}),(0,I.jsxs)(`span`,{children:[`R`,e.latest_search_run.provenance.surface_plan.routing_count,`/B`,e.latest_search_run.provenance.surface_plan.body_count]})]}):null]}),(()=>{let t=e.latest_search_run.provenance.surface_plan;if(!t||t.routing_weakness==null||t.body_weakness==null)return null;let n=(t.routing_weakness*100).toFixed(1),r=(t.body_weakness*100).toFixed(1),i=t.routing_weakness>=t.body_weakness;return(0,I.jsxs)(`div`,{className:`mt-2 flex items-center gap-3 text-sm`,children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`Weakness:`}),(0,I.jsxs)(`span`,{className:i?`text-amber-500 font-medium`:``,children:[`Routing `,n,`%`]}),(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`|`}),(0,I.jsxs)(`span`,{className:i?``:`text-amber-500 font-medium`,children:[`Body `,r,`%`]}),(0,I.jsxs)(`div`,{className:`flex h-2 w-24 overflow-hidden rounded-full bg-muted`,children:[(0,I.jsx)(`div`,{className:i?`bg-amber-500`:`bg-muted-foreground/40`,style:{width:`${n}%`}}),(0,I.jsx)(`div`,{className:i?`bg-muted-foreground/40`:`bg-amber-500`,style:{width:`${r}%`}})]})]})})()]}):null,(()=>{let t=e.latest_search_run;if(!t)return null;let n=t.parent_candidate_id?e.members.find(e=>e.candidate_id===t.parent_candidate_id):null,r=t.winner_candidate_id?e.members.find(e=>e.candidate_id===t.winner_candidate_id):null;if(!r&&!n)return null;let i=(e,t)=>(0,I.jsxs)(`div`,{className:`flex-1 rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:e}),(0,I.jsxs)(`div`,{className:`mt-2 space-y-1 text-sm`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`ID: `}),(0,I.jsx)(`span`,{className:`font-mono`,children:t.candidate_id.slice(0,12)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`Fingerprint: `}),(0,I.jsx)(`span`,{className:`font-mono`,children:t.fingerprint.slice(0,16)})]}),(0,I.jsx)(`div`,{className:`flex items-center gap-2`,children:(0,I.jsx)(F,{variant:t.decision===`accepted`?`secondary`:t.decision===`rejected`?`destructive`:`outline`,children:t.decision})}),t.measured_delta==null?null:(0,I.jsxs)(`div`,{className:`text-sm font-semibold tabular-nums ${t.measured_delta>0?`text-green-500`:t.measured_delta<0?`text-red-500`:``}`,children:[t.measured_delta>0?`+`:``,t.measured_delta.toFixed(2),` delta`]})]})]});return!n&&r?(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3`,children:[(0,I.jsx)(`div`,{className:`text-[11px] uppercase tracking-[0.12em] text-muted-foreground`,children:`First candidate`}),(0,I.jsxs)(`div`,{className:`mt-2 space-y-1 text-sm`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`ID: `}),(0,I.jsx)(`span`,{className:`font-mono`,children:r.candidate_id.slice(0,12)})]}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`Fingerprint: `}),(0,I.jsx)(`span`,{className:`font-mono`,children:r.fingerprint.slice(0,16)})]}),(0,I.jsx)(F,{variant:r.decision===`accepted`?`secondary`:r.decision===`rejected`?`destructive`:`outline`,children:r.decision})]})]}):(0,I.jsxs)(`div`,{className:`flex gap-3`,children:[n?i(`Parent`,n):null,r?i(`Winner`,r):null]})})(),(0,I.jsx)(`div`,{className:`space-y-2`,children:t.sort((e,t)=>(e.evidence_rank??999)-(t.evidence_rank??999)).map(e=>(0,I.jsxs)(`div`,{className:`flex items-center justify-between gap-3 rounded-xl border px-4 py-3 ${e.watch_demoted?`border-destructive/30 bg-destructive/5`:`border-border/10 bg-muted/20`}`,children:[(0,I.jsxs)(`div`,{className:`min-w-0`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[e.evidence_rank==null?null:(0,I.jsxs)(`span`,{className:`text-[11px] font-medium text-muted-foreground`,children:[`#`,e.evidence_rank]}),(0,I.jsx)(`span`,{className:`truncate font-mono text-sm`,children:e.candidate_id.slice(0,16)}),e.watch_demoted?(0,I.jsxs)(F,{variant:`destructive`,className:`text-[10px]`,children:[(0,I.jsx)(Qe,{className:`mr-0.5 size-2.5`}),`demoted`]}):null]}),(0,I.jsxs)(`div`,{className:`mt-1 truncate text-[11px] text-muted-foreground`,children:[`fingerprint: `,e.fingerprint.slice(0,20),e.parent_candidate_id?` | parent: ${e.parent_candidate_id.slice(0,12)}`:``]})]}),(0,I.jsxs)(`div`,{className:`shrink-0 text-right`,children:[(0,I.jsx)(`div`,{className:`text-sm font-semibold tabular-nums`,children:e.measured_delta==null?`--`:`${e.measured_delta>0?`+`:``}${e.measured_delta.toFixed(2)}`}),(0,I.jsx)(`div`,{className:`text-[10px] text-muted-foreground`,children:`delta`})]})]},e.candidate_id))})]})]})}function km(){let{name:e}=i(),[t,n]=c(),{data:r,isPending:a,isError:o,error:s,refetch:u}=zp(e),[d,f]=(0,N.useState)(`invocations`),p=r?.evolution??[],m=new Set(p.map(e=>e.proposal_id)),h=t.get(`proposal`),g=h&&m.has(h)?h:null,_=!!g;(0,N.useEffect)(()=>{if(r&&t.get(`proposal`)&&!g){let e=new URLSearchParams(t);e.delete(`proposal`),n(e,{replace:!0})}},[r,g,t,n]);let v=e=>{let r=new URLSearchParams(t);r.set(`proposal`,e),n(r,{replace:!0})},b=r?.trust,x=r?.coverage,S=r?.evidence_quality,C=r?.routing_quality,w=r?.evolution_state,T=r?.data_hygiene,E=r?.examples,D=T?.raw_checks??x?.checks??r?.usage.total_checks??0,O=T?.operational_checks??x?.checks??r?.usage.total_checks??0,ee=Math.max(D-O,0),k=(w?.evolution_rows??p.length)>0,te=r?.testing_readiness??null,A=r?.create_readiness??null,j=r?.frontier_state??null,ne=A?.skill_path??te?.skill_path??r?.canonical_invocations.find(e=>e.skill_path)?.skill_path??null,re=A!=null&&te?.next_step!==`watch_deployment`,M=k?`evidence`:`invocations`;(0,N.useEffect)(()=>{f(M)},[M]);let ie=(0,N.useMemo)(()=>{let e=(r?.canonical_invocations??[]).map(e=>({timestamp:e.timestamp||e.occurred_at||null,session_id:e.session_id,triggered:e.triggered,query:e.query??``,source:e.source??``,invocation_mode:e.invocation_mode??null,confidence:e.confidence??null,tool_name:e.tool_name??null,agent_type:e.agent_type??null,observation_kind:e.observation_kind??`canonical`,historical_context:e.historical_context??null}));return e.sort((e,t)=>(t.timestamp??``).localeCompare(e.timestamp??``)),e},[r?.canonical_invocations]);if(!e)return(0,I.jsx)(`div`,{className:`flex flex-1 items-center justify-center py-16`,children:(0,I.jsx)(`p`,{className:`text-sm text-destructive`,children:`No skill name provided`})});if(a)return(0,I.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-6 p-4 lg:p-6`,children:[(0,I.jsx)(Sp,{className:`h-10 w-64`}),(0,I.jsx)(`div`,{className:`grid grid-cols-1 gap-4 @xl/main:grid-cols-2 @5xl/main:grid-cols-4`,children:Array.from({length:4}).map((e,t)=>(0,I.jsx)(Sp,{className:`h-28 rounded-2xl`},t))}),(0,I.jsx)(Sp,{className:`h-20 rounded-2xl`}),(0,I.jsx)(Sp,{className:`h-64 rounded-2xl`})]});if(o)return(0,I.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,I.jsx)(Xe,{className:`size-10 text-destructive`}),(0,I.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:s instanceof Error?s.message:`Unknown error`}),(0,I.jsxs)(L,{variant:`outline`,size:`sm`,onClick:()=>u(),children:[(0,I.jsx)(ae,{className:`mr-2 size-3.5`}),`Retry`]})]});if(!r)return(0,I.jsx)(`div`,{className:`flex flex-1 items-center justify-center py-16`,children:(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No data yet`})});if((x?.checks??r.usage.total_checks)===0&&r.evidence.length===0&&r.evolution.length===0&&(r.canonical_invocations?.length??0)===0&&A==null)return(0,I.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,I.jsxs)(`p`,{className:`text-sm text-muted-foreground`,children:[`No data found for skill "`,e,`".`]}),(0,I.jsxs)(L,{variant:`outline`,size:`sm`,nativeButton:!1,render:(0,I.jsx)(l,{to:`/`}),children:[(0,I.jsx)(Ke,{className:`mr-2 size-3.5`}),`Back to Overview`]})]});let oe=b?.state??`low_sample`,se=Dm(oe,C?.miss_rate,S?.system_like_rate,w?.has_pending_proposals??r.pending_proposals.length>0,k),ce=(_&&g?Sm(p,g):null)??(_?se:re&&A?xm(A):oe===`rolled_back`||!te||te.next_step===`watch_deployment`?se:vm(te));return(0,I.jsxs)(pm,{backLink:(0,I.jsx)(L,{variant:`outline`,size:`sm`,nativeButton:!1,render:(0,I.jsx)(l,{to:`/`}),className:`shrink-0`,children:(0,I.jsx)(Ke,{className:`size-3.5`})}),title:r.skill_name,statusBadge:(0,I.jsx)(mm,{state:oe}),toolbarMeta:(0,I.jsxs)(I.Fragment,{children:[(0,I.jsxs)(`div`,{className:`hidden @xl/main:flex items-center gap-3 text-xs text-muted-foreground`,children:[(0,I.jsxs)(`span`,{className:`tabular-nums`,children:[(0,I.jsx)(`strong`,{className:`text-foreground`,children:x?.checks??r.usage.total_checks}),` `,`checks`]}),(0,I.jsx)(`span`,{className:`text-border`,children:`|`}),(0,I.jsxs)(`span`,{className:`tabular-nums`,children:[(0,I.jsx)(`strong`,{className:`text-foreground`,children:x?.sessions??r.sessions_with_skill}),` `,`sessions`]}),(0,I.jsx)(`span`,{className:`text-border`,children:`|`}),(0,I.jsxs)(`span`,{className:`tabular-nums`,children:[(0,I.jsx)(`strong`,{className:`text-foreground`,children:x?.workspaces??`No data`}),` `,`workspaces`]})]}),x?.first_seen||x?.last_seen?(0,I.jsxs)(`div`,{className:`hidden @3xl/main:flex items-center gap-2 font-mono text-[10px] text-muted-foreground`,children:[x?.first_seen?(0,I.jsx)(`span`,{title:`First seen`,children:K(x.first_seen)}):null,x?.first_seen&&x?.last_seen?(0,I.jsx)(`span`,{children:`-`}):null,x?.last_seen?(0,I.jsx)(`span`,{title:`Last seen`,children:K(x.last_seen)}):null]}):null]}),summary:b?.summary?(0,I.jsxs)(I.Fragment,{children:[(0,I.jsxs)(`div`,{className:`flex flex-wrap items-center gap-3`,children:[(0,I.jsx)(`span`,{children:b.summary}),w?.latest_action&&w?.latest_timestamp?(0,I.jsxs)(`span`,{className:`font-mono text-[11px] text-muted-foreground/70`,children:[`Latest: `,w.latest_action,` (`,K(w.latest_timestamp),`)`]}):null]}),ee>0?(0,I.jsxs)(`div`,{className:`text-[12px] text-muted-foreground/80`,children:[`Based on `,(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:O}),` `,`real checks. `,(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:ee}),` `,`internal or legacy rows are excluded from trust scoring.`]}):null]}):void 0,showOnboardingBanner:!_,guideButtonLabel:`How this works`,nextAction:ce,trustState:oe,coverage:x,evidenceQuality:S,routingQuality:C,evolutionState:w,dataHygiene:T,fallbackChecks:r.usage.total_checks,fallbackSessions:r.sessions_with_skill,fallbackEvidenceRows:r.evidence.length,fallbackEvolutionRows:p.length,fallbackLatestAction:p[0]?.action,nextActionText:ce.text,children:[_?null:re&&A?(0,I.jsx)(Tm,{readiness:A,skillName:r.skill_name}):(0,I.jsx)(wm,{readiness:te,skillPath:ne,skillName:r.skill_name,watchTrustScore:r.watch_trust_score}),_?null:(0,I.jsx)(Om,{frontierState:j}),(0,I.jsx)(fm,{value:d,onValueChange:e=>f(e),tabs:[{value:`evidence`,label:`Evidence`,tooltip:`Change history and validation results`,hidden:!k,contentClassName:`space-y-6`,content:(0,I.jsx)(I.Fragment,{children:(0,I.jsx)(sm,{examples:E,evolution:p,activeProposal:g,onSelect:v,evidence:r.evidence,viewerProposalId:g??``,showViewer:!!g,emptyState:(0,I.jsx)(R,{className:`rounded-2xl`,children:(0,I.jsx)(H,{className:`py-12`,children:(0,I.jsxs)(`div`,{className:`flex flex-col items-center justify-center gap-3 text-center`,children:[(0,I.jsx)(y,{className:`size-8 text-muted-foreground/40`}),(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`This skill is being observed but has no reviewable evolution evidence yet.`})]})})})})})},{value:`invocations`,label:`Invocations`,tooltip:`Real usage and repaired misses only. Internal selftune traffic and legacy residue are excluded from this working set.`,badge:(0,I.jsx)(F,{variant:`secondary`,className:`ml-1.5 text-[10px]`,children:ie.length}),content:(0,I.jsx)(om,{invocations:ie,sessionMetadata:r?.session_metadata??[],callout:ee>0?(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3 text-sm text-muted-foreground`,children:[`Showing`,` `,(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:ie.length}),` `,`operational invocations.`,` `,(0,I.jsx)(`span`,{className:`font-medium text-foreground`,children:ee}),` internal or legacy rows are tracked in Data Quality instead of being mixed into this working set.`]}):void 0})},{value:`missed`,label:`Missed Queries`,hidden:(E?.missed.length??0)===0,tooltip:`Queries that look like missed triggers from real usage.`,badge:(E?.missed.length??0)>0?(0,I.jsx)(F,{variant:`secondary`,className:`ml-1.5 text-[10px]`,children:E?.missed.length??0}):void 0,contentClassName:`pt-2`,content:(0,I.jsx)(um,{rows:(E?.missed??[]).map((e,t)=>({id:`${e.session_id}:${e.timestamp??t}`,query:e.query_text,confidence:e.confidence,source:e.source??e.platform??null,createdAt:e.timestamp??``}))})},{value:`data-quality`,label:`Data Quality`,tooltip:`Evidence quality metrics and data hygiene`,content:(0,I.jsx)(cm,{evidenceQuality:S,dataHygiene:T})}]})]})}function Am({skills:e,heroSkill:t,aggregatePassRate:n,gradedCount:r,pendingProposals:i,isLoading:a,error:o,onRetry:s,renderHeroActions:c,renderCardActions:l}){let[u,d]=(0,N.useState)(`ALL`),[f,p]=(0,N.useState)(!0),m=(0,N.useMemo)(()=>{let t=e;return u!==`ALL`&&(t=t.filter(e=>e.status===u)),f?t.reduceRight((e,t)=>(e.push(t),e),[]):t},[u,e,f]),h=(0,N.useMemo)(()=>{let t={ALL:e.length,HEALTHY:0,WARNING:0,CRITICAL:0,UNGRADED:0};for(let n of e)n.status in t&&t[n.status]++;return t},[e]);return a?(0,I.jsx)(ep,{}):o?(0,I.jsx)(cp,{message:o,onRetry:s}):(0,I.jsxs)(`div`,{"data-parity-root":`skills-library`,className:`@container/main flex flex-1 animate-in fade-in flex-col gap-8 px-4 py-8 duration-500 lg:px-6`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`h1`,{className:`font-headline text-4xl font-bold tracking-tight text-foreground`,children:`Skills Library`}),(0,I.jsx)(`p`,{className:`mt-2 max-w-2xl text-sm text-muted-foreground`,children:`Monitor and manage your evolving skill definitions across all scopes.`})]}),(0,I.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[t?(0,I.jsx)(tp,{skillName:t.skillName,skillScope:t.skillScope??null,platforms:t.platforms,passRate:t.passRate,totalChecks:t.totalChecks,uniqueSessions:t.uniqueSessions,status:t.status,latestEvolutionTimestamp:t.latestEvolutionTimestamp??null,renderActions:c}):(0,I.jsx)(op,{}),(0,I.jsxs)(`div`,{className:`col-span-12 flex flex-col gap-6 lg:col-span-4`,children:[(0,I.jsx)(np,{aggregatePassRate:n,gradedCount:r}),(0,I.jsx)(rp,{proposals:i})]})]}),(0,I.jsxs)(`div`,{className:`space-y-6`,children:[(0,I.jsx)(ap,{filter:u,onFilterChange:d,counts:h,sortDesc:f,onSortToggle:()=>p(e=>!e)}),m.length>0?(0,I.jsx)(`div`,{className:`grid grid-cols-1 gap-6 md:grid-cols-2 xl:grid-cols-3`,children:m.map(e=>(0,I.jsx)(ip,{skill:e,renderActions:l},e.name))}):(0,I.jsx)(sp,{})]})]})}function jm(e){return Er(e.map(e=>({name:e.skill_name,scope:e.skill_scope,platforms:[],passRate:e.total_checks>0?e.pass_rate:null,checks:e.total_checks,status:wr(e.pass_rate,e.total_checks),uniqueSessions:e.unique_sessions,triggeredCount:e.triggered_count,lastSeen:e.last_seen})))}function Mm(e){let t=e.filter(e=>e.total_checks>=5);if(t.length===0)return null;let n=t.reduce((e,t)=>e+t.total_checks,0),r=t.reduce((e,t)=>e+Math.round(t.pass_rate*t.total_checks),0);return n>0?r/n:null}function Nm(e,t){let n=[...t].filter(e=>e.skill_name).sort((e,t)=>new Date(t.timestamp).getTime()-new Date(e.timestamp).getTime());for(let t of n){let n=e.find(e=>e.skill_name===t.skill_name);if(n)return{skill:n,latestEvolution:t}}return e.length>0?{skill:[...e].sort((e,t)=>t.total_checks-e.total_checks)[0],latestEvolution:n[0]??null}:null}function Pm(e){let t=encodeURIComponent(e);return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l,{to:`/skills/${t}`,className:`px-6 py-2 rounded-xl text-muted-foreground font-bold hover:bg-input transition-colors`,children:`Configure`}),(0,I.jsx)(l,{to:`/skills/${t}`,className:`px-8 py-2 bg-primary text-primary-foreground font-bold rounded-xl shadow-[0_4px_20px_rgba(79,242,255,0.2)] hover:shadow-[0_4px_25px_rgba(79,242,255,0.4)] transition-all`,children:`View Report`})]})}function Fm(e){let t=encodeURIComponent(e);return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l,{to:`/skills/${t}`,className:`flex-1 py-2 text-xs font-bold text-muted-foreground bg-muted rounded-lg text-center hover:bg-input transition-colors`,children:`Configure`}),(0,I.jsx)(l,{to:`/skills/${t}`,className:`flex-1 py-2 text-xs font-bold text-muted-foreground bg-secondary rounded-lg text-center hover:bg-input hover:text-foreground transition-all`,children:`View Report`})]})}function Im({overviewQuery:e}){let{data:t,isLoading:n,isError:r,error:i,refetch:a}=e,o=(0,N.useMemo)(()=>t?jm(t.skills):[],[t]),s=(0,N.useMemo)(()=>t?Nm(t.skills,t.overview.evolution):null,[t]),c=(0,N.useMemo)(()=>s?{skillName:s.skill.skill_name,skillScope:s.skill.skill_scope,passRate:s.skill.total_checks>0?s.skill.pass_rate:null,totalChecks:s.skill.total_checks,uniqueSessions:s.skill.unique_sessions,status:wr(s.skill.pass_rate,s.skill.total_checks),latestEvolutionTimestamp:s.latestEvolution?.timestamp??null}:null,[s]),l=(0,N.useMemo)(()=>t?t.overview.pending_proposals.map(e=>({id:e.proposal_id,skillName:e.skill_name??null,action:e.action})):[],[t]);return(0,I.jsx)(Am,{skills:o,heroSkill:c,aggregatePassRate:t?Mm(t.skills):null,gradedCount:t?t.skills.filter(e=>e.total_checks>=5).length:0,pendingProposals:l,isLoading:n,error:r?i instanceof Error?i.message:`Failed to load skills library.`:null,onRetry:()=>{a()},renderHeroActions:Pm,renderCardActions:Fm})}var Lm=6e4;function Rm(){return Cr({queryKey:[`doctor`],queryFn:ea,staleTime:5e3,refetchInterval:Lm})}var zm={pass:{color:`text-primary`,label:`Pass`,dotColor:`bg-primary`,dotGlow:`shadow-[0_0_8px_rgba(79,242,255,0.6)]`,animate:!0},warn:{color:`text-amber-400`,label:`Warn`,dotColor:`bg-amber-400`,dotGlow:``,animate:!1},fail:{color:`text-destructive`,label:`Fail`,dotColor:`bg-destructive`,dotGlow:`shadow-[0_0_8px_rgba(255,180,171,0.6)]`,animate:!1}},Bm={config:{label:`Configuration`,description:`selftune.json exists and contains valid agent_type and llm_mode`,icon:(0,I.jsx)(pe,{className:`size-4`})},log_session_telemetry:{label:`Session Telemetry Log`,description:`session_telemetry_log.jsonl exists and records parse correctly`,icon:(0,I.jsx)(pt,{className:`size-4`})},log_skill_usage:{label:`Skill Usage Log`,description:`skill_usage_log.jsonl exists and records parse correctly`,icon:(0,I.jsx)(pt,{className:`size-4`})},log_all_queries:{label:`Query Log`,description:`all_queries_log.jsonl exists and records parse correctly`,icon:(0,I.jsx)(pt,{className:`size-4`})},log_evolution_audit:{label:`Evolution Audit Log`,description:`evolution_audit_log.jsonl exists and records parse correctly`,icon:(0,I.jsx)(pt,{className:`size-4`})},hook_settings:{label:`Hook Installation`,description:`Claude Code settings.json has all required selftune hooks configured`,icon:(0,I.jsx)(Be,{className:`size-4`})},evolution_audit:{label:`Evolution Health`,description:`Evolution audit log is intact and records are well-formed`,icon:(0,I.jsx)(b,{className:`size-4`})},dashboard_freshness_mode:{label:`Dashboard Freshness`,description:`The current dashboard still invalidates live updates from JSONL log watchers. SQLite WAL live invalidation has not been cut over yet.`,icon:(0,I.jsx)(E,{className:`size-4`})}};function Vm(e){if(typeof e!=`object`||!e)return!1;let t=e;return typeof t.workspace_root==`string`&&typeof t.git_sha==`string`&&typeof t.db_path==`string`&&typeof t.process_mode==`string`&&(t.watcher_mode===`wal`||t.watcher_mode===`jsonl`||t.watcher_mode===`none`)}function Hm({refreshKey:e}){let[t,n]=(0,N.useState)(null);if((0,N.useEffect)(()=>{fetch(`/api/health`).then(e=>e.json()).then(e=>{Vm(e)&&n(e)}).catch(()=>{})},[e]),!t)return null;let r=t.watcher_mode===`jsonl`?{className:`border-amber-400/25 bg-amber-400/10 text-amber-400`,label:`Legacy watcher path active`}:t.watcher_mode===`none`?{className:`border-muted-foreground/20 bg-muted/40 text-muted-foreground`,label:`Watcher inactive`}:{className:`border-primary/25 bg-primary/10 text-primary`,label:`Live invalidation active`};return(0,I.jsxs)(`section`,{className:`glass-panel rounded-2xl border border-border/15 p-6`,children:[(0,I.jsxs)(`div`,{className:`flex flex-col gap-2 md:flex-row md:items-end md:justify-between`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.2em] text-muted-foreground`,children:`Runtime Environment`}),(0,I.jsx)(`h2`,{className:`mt-1 font-headline text-xl font-semibold text-foreground`,children:`Active dashboard runtime`})]}),(0,I.jsx)(F,{variant:`outline`,className:r.className,children:r.label})]}),(0,I.jsxs)(`div`,{className:`mt-5 grid gap-3 md:grid-cols-2 xl:grid-cols-4`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,I.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Process mode`}),(0,I.jsx)(`p`,{className:`mt-2 text-sm font-semibold text-foreground`,children:t.process_mode})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,I.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Watcher mode`}),(0,I.jsx)(`p`,{className:`mt-2 text-sm font-semibold text-foreground`,children:t.watcher_mode})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,I.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`SPA mode`}),(0,I.jsx)(`p`,{className:`mt-2 text-sm font-semibold text-foreground`,children:t.spa_mode??`dist`})]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,I.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Git SHA`}),(0,I.jsx)(`p`,{className:`mt-2 truncate font-mono text-sm text-foreground`,children:t.git_sha})]})]}),(0,I.jsxs)(`div`,{className:`mt-3 grid gap-3 md:grid-cols-2`,children:[(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,I.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`SPA build`}),(0,I.jsx)(`p`,{className:`mt-2 truncate font-mono text-sm text-foreground`,children:t.spa_build_id??t.version}),t.spa_proxy_url?(0,I.jsx)(`p`,{className:`mt-1 truncate text-xs text-muted-foreground`,children:t.spa_proxy_url}):null]}),(0,I.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,I.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Database path`}),(0,I.jsx)(`p`,{className:`mt-2 truncate font-mono text-sm text-foreground`,children:t.db_path})]})]}),(0,I.jsxs)(`div`,{className:`mt-3 rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,I.jsxs)(`div`,{className:`flex flex-col gap-2 md:flex-row md:items-start md:justify-between`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Updates`}),(0,I.jsx)(`p`,{className:`mt-2 text-sm font-semibold text-foreground`,children:t.update_available&&t.latest_version?`v${t.latest_version} available`:`Current version cached as latest`})]}),(0,I.jsx)(F,{variant:`outline`,className:t.update_available?`border-amber-400/25 bg-amber-400/10 text-amber-400`:`border-primary/25 bg-primary/10 text-primary`,children:t.update_available?t.auto_update_supported?`Auto-update supported`:`Manual refresh required`:`Up to date`})]}),t.update_available?(0,I.jsx)(`p`,{className:`mt-3 text-xs text-muted-foreground`,children:t.auto_update_supported?`This install can update itself when the CLI updater runs.`:`This dashboard is running from a local/source-tree install, so refresh it manually.`}):null,t.update_hint?(0,I.jsx)(`p`,{className:`mt-2 break-all font-mono text-xs text-muted-foreground`,children:t.update_hint}):null]}),(0,I.jsxs)(`div`,{className:`mt-3 rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,I.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Workspace root`}),(0,I.jsx)(`p`,{className:`mt-2 break-all font-mono text-sm text-foreground`,children:t.workspace_root})]})]})}function Um({check:e}){let t=Bm[e.name]??{label:e.name,description:``,icon:(0,I.jsx)(E,{className:`size-4`})},n=zm[e.status]??{color:`text-muted-foreground`,label:e.status,dotColor:`bg-muted-foreground`,dotGlow:``,animate:!1};return(0,I.jsxs)(`div`,{className:`group flex items-start gap-4 px-6 py-4 border-b border-border/10 last:border-b-0 hover:bg-secondary/40 transition-colors`,children:[(0,I.jsx)(`div`,{className:`mt-1.5 flex-shrink-0`,children:(0,I.jsx)(`span`,{className:`block size-1.5 rounded-full ${n.dotColor} ${n.dotGlow} ${n.animate?`animate-pulse`:``}`})}),(0,I.jsx)(`div`,{className:`flex-shrink-0 mt-0.5 text-muted-foreground`,children:t.icon}),(0,I.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(`span`,{className:`text-sm font-semibold text-foreground`,children:t.label}),t.description&&(0,I.jsx)(vf,{text:t.description})]}),(0,I.jsx)(`p`,{className:`text-xs text-muted-foreground mt-0.5 leading-relaxed`,children:e.message||`No details`}),e.path&&(0,I.jsx)(`p`,{className:`text-[11px] text-muted-foreground/60 font-mono mt-1 truncate`,children:e.path})]}),(0,I.jsx)(`div`,{className:`flex-shrink-0`,children:(0,I.jsxs)(`div`,{className:`inline-flex items-center gap-2 px-2 py-1 rounded-md ${e.status===`pass`?`bg-primary/10`:e.status===`fail`?`bg-destructive/10`:`bg-amber-400/10`}`,children:[(0,I.jsx)(`span`,{className:`size-1.5 rounded-full ${n.dotColor} ${n.animate?`animate-pulse`:``}`}),(0,I.jsx)(`span`,{className:`text-[10px] font-bold uppercase tracking-tighter font-headline ${n.color}`,children:n.label})]})})]})}function Wm(){let{data:e,isPending:t,isError:n,error:r,refetch:i}=Rm(),[a,o]=(0,N.useState)(0);if(t)return(0,I.jsxs)(`div`,{className:`flex flex-1 flex-col gap-8 p-8`,children:[(0,I.jsx)(Sp,{className:`h-12 w-64`}),(0,I.jsx)(Sp,{className:`h-24 rounded-xl`}),(0,I.jsx)(Sp,{className:`h-[400px] rounded-xl`})]});if(n)return(0,I.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,I.jsx)(Xe,{className:`size-10 text-destructive`}),(0,I.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:r instanceof Error?r.message:`Unknown error`}),(0,I.jsxs)(L,{variant:`outline`,size:`sm`,onClick:()=>i(),children:[(0,I.jsx)(ae,{className:`mr-2 size-3.5`}),`Retry`]})]});if(!e)return(0,I.jsx)(`div`,{className:`flex flex-1 items-center justify-center py-16`,children:(0,I.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No diagnostics data available.`})});let{checks:s,summary:c,healthy:l=!1,timestamp:u}=e,d=s??[],f=c??{pass:0,warn:0,fail:0},p=f.pass+f.warn+f.fail,m=d.filter(e=>e.name===`config`),h=d.filter(e=>e.name.startsWith(`log_`)),g=d.filter(e=>e.name===`hook_settings`),_=d.filter(e=>e.name===`evolution_audit`),v=d.filter(e=>e.name===`dashboard_freshness_mode`),y=new Set([`config`,...h.map(e=>e.name),`hook_settings`,`evolution_audit`,`dashboard_freshness_mode`]),b=d.filter(e=>!y.has(e.name)),x=[{title:`Configuration`,checks:m},{title:`Log Files`,checks:h},{title:`Hooks`,checks:g},{title:`Evolution`,checks:_},{title:`Integrity`,checks:v},{title:`Other`,checks:b}].filter(e=>e.checks.length>0);return(0,I.jsxs)(`div`,{className:`flex flex-1 flex-col gap-8 p-8 max-w-5xl mx-auto w-full`,children:[(0,I.jsxs)(`section`,{className:`flex flex-col md:flex-row md:items-end justify-between gap-4`,children:[(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`h1`,{className:`font-headline text-4xl font-bold tracking-tight text-foreground`,children:`System Status`}),(0,I.jsx)(`p`,{className:`text-muted-foreground max-w-md mt-1`,children:`Diagnostics and health checks for selftune infrastructure.`})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsxs)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest font-headline`,children:[`Last checked `,u?K(u):`—`]}),(0,I.jsx)(L,{"aria-label":`Refresh status`,variant:`ghost`,size:`sm`,onClick:()=>{o(e=>e+1),i()},className:`shrink-0`,children:(0,I.jsx)(ae,{className:`size-3.5`})})]})]}),(0,I.jsxs)(`div`,{className:`glass-panel rounded-2xl border border-border/15 p-6 flex items-center justify-between overflow-hidden relative`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-8`,children:[(0,I.jsxs)(`div`,{className:`flex flex-col`,children:[(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-[0.2em] font-headline mb-1`,children:`Overall`}),(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[l?(0,I.jsx)(`span`,{className:`size-3 rounded-full bg-primary animate-pulse shadow-[0_0_12px_rgba(79,242,255,0.6)]`}):(0,I.jsx)(`span`,{className:`size-3 rounded-full bg-destructive shadow-[0_0_12px_rgba(255,180,171,0.6)]`}),(0,I.jsx)(`span`,{className:`font-headline text-2xl font-bold text-foreground`,children:l?`Healthy`:`Unhealthy`})]})]}),(0,I.jsx)(`div`,{className:`h-10 w-px bg-border/20`}),(0,I.jsxs)(`div`,{className:`flex flex-col`,children:[(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-[0.2em] font-headline mb-1`,children:`Passed`}),(0,I.jsx)(`span`,{className:`font-headline text-2xl font-bold text-primary`,children:f.pass})]}),(0,I.jsxs)(`div`,{className:`flex flex-col`,children:[(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-[0.2em] font-headline mb-1`,children:`Warnings`}),(0,I.jsx)(`span`,{className:`font-headline text-2xl font-bold ${f.warn>0?`text-amber-400`:`text-foreground`}`,children:f.warn})]}),(0,I.jsxs)(`div`,{className:`flex flex-col`,children:[(0,I.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-[0.2em] font-headline mb-1`,children:`Failed`}),(0,I.jsx)(`span`,{className:`font-headline text-2xl font-bold ${f.fail>0?`text-destructive`:`text-foreground`}`,children:f.fail})]})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsxs)(`div`,{className:`text-right`,children:[(0,I.jsxs)(`p`,{className:`text-xs font-bold text-foreground font-headline`,children:[p,` Checks`]}),(0,I.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:f.pass===p?`All checks passing`:`${f.fail+f.warn} issue${f.fail+f.warn===1?``:`s`} detected`})]}),(0,I.jsx)(`div`,{className:`size-12 rounded-full flex items-center justify-center border-4 border-primary/20 border-t-primary`,children:(0,I.jsx)(se,{className:`size-5 text-primary`})})]}),(0,I.jsx)(`div`,{className:`absolute -right-20 -bottom-20 w-64 h-64 bg-primary/5 blur-3xl rounded-full pointer-events-none`})]}),(0,I.jsx)(Hm,{refreshKey:a}),(0,I.jsx)(`div`,{className:`bg-muted rounded-2xl border border-border/15 overflow-hidden`,children:x.map((e,t)=>(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`px-6 py-3 bg-secondary/60 border-b border-border/15`,children:[(0,I.jsx)(`span`,{className:`text-[10px] font-bold text-muted-foreground uppercase tracking-[0.2em] font-headline`,children:e.title}),(0,I.jsx)(F,{variant:`outline`,className:`ml-3 text-[10px] px-1.5 py-0 border-border/40 text-muted-foreground`,children:e.checks.length})]}),e.checks.map((e,t)=>(0,I.jsx)(Um,{check:e},`${e.name}-${t}`)),t<x.length-1&&(0,I.jsx)(`div`,{className:`border-b border-border/25`})]},e.title))})]})}var Gm={host:`local`,plan:`oss`,features:{analytics:!0,registry:!1,signals:!1,proposals:!1,billing:!1,teamAdmin:!1,runtimeStatus:!0},discoverable:{registry:!0,signals:!0,proposals:!0,billing:!1}};function Km(e){return{version:e.version,summary:{totalSkills:e.skills.length,avgPassRate30d:e.skills.length?e.skills.reduce((e,t)=>e+t.pass_rate,0)/e.skills.length:null,unmatchedCount30d:e.overview.unmatched_queries.length,sessionsCount30d:e.overview.counts.sessions,pendingCount:e.overview.pending_proposals.length,evidenceCount:e.overview.counts.evidence},autonomy:{level:e.autonomy_status.level,summary:e.autonomy_status.summary,attentionRequired:e.autonomy_status.attention_required,skillsObserved:e.autonomy_status.skills_observed,pendingReviews:e.autonomy_status.pending_reviews,lastRunAt:e.autonomy_status.last_run},skillCards:e.skills.map(e=>({name:e.skill_name,scope:e.skill_scope,platforms:e.skill_scope?[e.skill_scope]:[],passRate:e.pass_rate,checks:e.total_checks,status:e.pass_rate>=.8?`HEALTHY`:e.pass_rate>=.6?`WARNING`:e.total_checks>0?`CRITICAL`:`UNKNOWN`,hasEvidence:e.has_evidence,uniqueSessions:e.unique_sessions,lastSeen:e.last_seen})),watchlist:e.trust_watchlist.map(e=>({skillName:e.skill_name,bucket:e.bucket,lastSeen:e.last_seen,passRate:e.pass_rate,checks:e.checks})),attention:e.attention_queue.map(e=>({skillName:e.skill_name,severity:e.severity,title:e.category.replace(/_/g,` `),body:e.reason})),decisions:e.recent_decisions.map(e=>({skillName:e.skill_name,kind:e.kind,timestamp:e.timestamp,summary:e.summary})),activity:e.overview.recent_activity.map(e=>({id:`${e.session_id}:${e.timestamp}`,type:e.triggered?`evolution`:`unmatched`,skillName:e.skill_name,timestamp:e.timestamp,title:e.skill_name,summary:e.query})),jobs:[],signals:null}}function qm(e){return{items:e.skills.map(e=>({name:e.skill_name,platforms:e.skill_scope?[e.skill_scope]:[],status:e.pass_rate>=.8?`HEALTHY`:e.pass_rate>=.6?`WARNING`:e.total_checks>0?`CRITICAL`:`UNKNOWN`,passRate:e.pass_rate,totalChecks:e.total_checks,uniqueSessions:e.unique_sessions,evidenceCount:e.has_evidence?1:0,lastSeen:e.last_seen}))}}function Jm(e){return{summary:{activeSkills:e.summary.active_skills,totalChecks30d:e.summary.total_checks_30d,totalEvolutions:e.summary.total_evolutions,avgImprovement:e.summary.avg_improvement},passRateTrend:e.pass_rate_trend.map(e=>({date:e.date,passRate:e.pass_rate,checkVolume:e.total_checks})),skillRankings:e.skill_rankings.map((e,t)=>({skillName:e.skill_name,passRate:e.pass_rate,totalChecks:e.total_checks,rank:t+1})),dailyActivity:e.daily_activity.map(e=>({date:e.date,checks:e.checks})),evolutionImpact:e.evolution_impact.map(e=>({skillName:e.skill_name,passRateBefore:e.pass_rate_before,passRateAfter:e.pass_rate_after,improvement:e.pass_rate_after-e.pass_rate_before}))}}async function Ym(){let e=await fetch(`/api/health`);if(!e.ok)throw Error(`API error: ${e.status} ${e.statusText}`);let t=await e.json();return{workspaceRoot:t.workspace_root,gitSha:t.git_sha,dbPath:t.db_path,processMode:t.process_mode,watcherMode:t.watcher_mode}}async function Xm(e){let t=await fetch(`/api/actions/watchlist`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({skills:e})});if(!t.ok)throw Error(`API error: ${t.status} ${t.statusText}`);let n=await t.json();return Array.isArray(n.watched_skills)?n.watched_skills:e}var Zm={useSession(){return{status:`authenticated`,user:{name:`Admin Node`,subtitle:`Active`}}},api:{async fetchOverview(){return Km(await Xi())},async fetchSkills(){return qm(await Xi())},async fetchAnalytics(){return Jm(await $i())},fetchRuntimeHealth:Ym},links:{upgrade:`https://selftune.dev/pricing`,docs:`https://docs.selftune.dev`,cloudDashboard:`https://selftune.dev`},actions:{openUpgrade(){typeof window<`u`&&window.open(`https://selftune.dev/pricing`,`_blank`,`noopener,noreferrer`)},updateOverviewWatchlist:Xm}},Qm=new or({defaultOptions:{queries:{refetchOnWindowFocus:!0,gcTime:300*1e3}}});function $m({href:e,className:t,children:n,onClick:r}){return(0,I.jsx)(l,{to:e,className:t,onClick:r,children:n})}function eh({routeId:e}){let t=Xt(`local`,Gm).find(t=>t.id===e);return!t||t.access!==`locked`||!t.lockedTitle||!t.lockedBody?null:(0,I.jsx)(Bt,{eyebrow:`Cloud feature`,title:t.lockedTitle,description:t.lockedBody,highlights:t.lockedHighlights,primaryAction:{href:t.lockedPrimaryCtaHref??`https://selftune.dev/pricing`,label:t.lockedPrimaryCtaLabel??`View cloud plans`},secondaryAction:t.lockedSecondaryCtaHref&&t.lockedSecondaryCtaLabel?{href:t.lockedSecondaryCtaHref,label:t.lockedSecondaryCtaLabel}:void 0,note:`Keep using the local dashboard for offline diagnostics and day-to-day health checks. Cloud adds the shared coordination layer.`})}function th(e,t){if(e.startsWith(`/live-run`))return{title:`Live run`,icon:(0,I.jsx)(Le,{className:`size-4 text-primary`}),badge:`Creator loop`,backHref:`/skills`,backLabel:`Skills`};let n=Qt(e,t);if(n?.id===`skills`&&n.matchKind===`detail`)return{title:decodeURIComponent(e.slice(8)),icon:(0,I.jsx)(xe,{className:`size-4 text-primary`}),badge:n.badge,backHref:n.backHref,backLabel:n.backLabel};if(n){let e=n.icon;return{title:n.title,icon:(0,I.jsx)(e,{className:`size-4 text-primary`}),badge:n.badge,backHref:n.backHref,backLabel:n.backLabel}}return{title:`Dashboard`,icon:void 0,badge:`Overview`,backHref:null,backLabel:null}}function nh(){aa();let[e,t]=(0,N.useState)(`ALL`),n=ia(),{data:i}=n,a=u(),o=p(),c=Xt(`local`,Gm),l=c.map(e=>{let t=e.icon;return{href:e.path,label:e.label,icon:(0,I.jsx)(t,{className:`size-4`}),tooltip:e.tooltip,isActive:Zt(a.pathname,e),isLocked:e.access===`locked`}}),d=[...c.map(e=>{let t=e.icon;return{id:`page:${e.id}`,group:`Pages`,label:e.label,meta:e.tooltip,leading:(0,I.jsx)(t,{className:`size-4`}),trailing:e.access===`locked`?`Locked`:void 0,onSelect:()=>o(e.path)}}),...(i?.skills??[]).map(e=>{let t=wr(e.pass_rate,e.total_checks),n=t===`HEALTHY`?`bg-primary`:t===`WARNING`?`bg-primary-accent`:t===`CRITICAL`?`bg-destructive`:`bg-muted-foreground`;return{id:`skill:${e.skill_name}`,group:`Skills`,label:e.skill_name,meta:`Skill report`,keywords:[e.skill_scope??``,t],leading:(0,I.jsx)(`span`,{className:`size-2 rounded-full ${n}`}),trailing:Tr(e.total_checks>0?e.pass_rate:null),onSelect:()=>o(`/skills/${encodeURIComponent(e.skill_name)}`)}})];return(0,I.jsx)(Rt,{brand:{href:`/`,name:`Selftune`,caption:`Skill Evolution Engine`,footerLabel:i?.version?`selftune v${i.version}`:`selftune`},navItems:l,renderLink:$m,headerMeta:th(a.pathname,c),searchItems:d,headerUser:{name:`Admin Node`,subtitle:`Active`},contentClassName:null,overlay:(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(ci,{}),(0,I.jsx)(ii,{})]}),children:(0,I.jsxs)(r,{children:[(0,I.jsx)(s,{path:`/`,element:(0,I.jsx)(Mp,{search:``,statusFilter:e,onStatusFilterChange:t,overviewQuery:n})}),(0,I.jsx)(s,{path:`/skills`,element:(0,I.jsx)(Im,{overviewQuery:n})}),(0,I.jsx)(s,{path:`/skills-library`,element:(0,I.jsx)(f,{replace:!0,to:`/skills`})}),(0,I.jsx)(s,{path:`/analytics`,element:(0,I.jsx)(Lp,{})}),(0,I.jsx)(s,{path:`/skills/:name`,element:(0,I.jsx)(km,{})}),(0,I.jsx)(s,{path:`/live-run`,element:(0,I.jsx)(rm,{})}),(0,I.jsx)(s,{path:`/registry`,element:(0,I.jsx)(eh,{routeId:`registry`})}),(0,I.jsx)(s,{path:`/signals`,element:(0,I.jsx)(eh,{routeId:`signals`})}),(0,I.jsx)(s,{path:`/community`,element:(0,I.jsx)(f,{replace:!0,to:`/signals`})}),(0,I.jsx)(s,{path:`/proposals`,element:(0,I.jsx)(eh,{routeId:`proposals`})}),(0,I.jsx)(s,{path:`/status`,element:(0,I.jsx)(Wm,{})})]})})}function rh(){return(0,I.jsx)(lr,{client:Qm,children:(0,I.jsx)(m,{children:(0,I.jsxs)(hi,{defaultTheme:`dark`,children:[(0,I.jsxs)(Wt,{adapter:Zm,capabilities:Gm,children:[(0,I.jsx)(nh,{}),(0,I.jsx)(fi,{})]}),(0,I.jsx)(Ji,{richColors:!0,closeButton:!0}),!1]})})})}(0,mt.createRoot)(document.getElementById(`root`)).render((0,I.jsx)(N.StrictMode,{children:(0,I.jsx)(rh,{})}));