@repo-os/repoos 0.5.45
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.
- package/LICENSE.md +110 -0
- package/README.md +272 -0
- package/dist/.build-info.json +4 -0
- package/dist/.build-stamp.json +3 -0
- package/dist/cli/colors.d.ts +13 -0
- package/dist/cli/colors.js +37 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +221 -0
- package/dist/commands/check.d.ts +170 -0
- package/dist/commands/check.js +1227 -0
- package/dist/commands/docs.d.ts +2 -0
- package/dist/commands/docs.js +70 -0
- package/dist/commands/gc.d.ts +1 -0
- package/dist/commands/gc.js +57 -0
- package/dist/commands/init.d.ts +9 -0
- package/dist/commands/init.js +699 -0
- package/dist/commands/screenshots.d.ts +7 -0
- package/dist/commands/screenshots.js +77 -0
- package/dist/commands/serve.d.ts +55 -0
- package/dist/commands/serve.js +204 -0
- package/dist/commands/status.d.ts +140 -0
- package/dist/commands/status.js +569 -0
- package/dist/commands/stop.d.ts +1 -0
- package/dist/commands/stop.js +59 -0
- package/dist/commands/tasks.d.ts +47 -0
- package/dist/commands/tasks.js +334 -0
- package/dist/commands/tunnel.d.ts +1 -0
- package/dist/commands/tunnel.js +1271 -0
- package/dist/commands/ui-harness.d.ts +53 -0
- package/dist/commands/ui-harness.js +62 -0
- package/dist/commands/ui-smoke.d.ts +6 -0
- package/dist/commands/ui-smoke.js +220 -0
- package/dist/commands/upgrade.d.ts +15 -0
- package/dist/commands/upgrade.js +188 -0
- package/dist/core/auth-store.d.ts +81 -0
- package/dist/core/auth-store.js +530 -0
- package/dist/core/auth.d.ts +75 -0
- package/dist/core/auth.js +124 -0
- package/dist/core/bootstrap.d.ts +41 -0
- package/dist/core/bootstrap.js +236 -0
- package/dist/core/build.d.ts +92 -0
- package/dist/core/build.js +249 -0
- package/dist/core/canary.d.ts +10 -0
- package/dist/core/canary.js +14 -0
- package/dist/core/check-failure-summary.d.ts +10 -0
- package/dist/core/check-failure-summary.js +34 -0
- package/dist/core/config.d.ts +160 -0
- package/dist/core/config.js +1288 -0
- package/dist/core/context-pack.d.ts +74 -0
- package/dist/core/context-pack.js +778 -0
- package/dist/core/db.d.ts +236 -0
- package/dist/core/db.js +747 -0
- package/dist/core/detect.d.ts +69 -0
- package/dist/core/detect.js +251 -0
- package/dist/core/docs.d.ts +76 -0
- package/dist/core/docs.js +225 -0
- package/dist/core/frontmatter.d.ts +29 -0
- package/dist/core/frontmatter.js +215 -0
- package/dist/core/git.d.ts +505 -0
- package/dist/core/git.js +1453 -0
- package/dist/core/indexer.d.ts +33 -0
- package/dist/core/indexer.js +282 -0
- package/dist/core/input.d.ts +66 -0
- package/dist/core/input.js +222 -0
- package/dist/core/logger.d.ts +70 -0
- package/dist/core/logger.js +138 -0
- package/dist/core/models.d.ts +45 -0
- package/dist/core/models.js +291 -0
- package/dist/core/net-probe.d.ts +4 -0
- package/dist/core/net-probe.js +20 -0
- package/dist/core/providers/deepinfra.d.ts +23 -0
- package/dist/core/providers/deepinfra.js +44 -0
- package/dist/core/providers/index.d.ts +24 -0
- package/dist/core/providers/index.js +59 -0
- package/dist/core/providers/openrouter.d.ts +28 -0
- package/dist/core/providers/openrouter.js +82 -0
- package/dist/core/providers/spend.d.ts +86 -0
- package/dist/core/providers/spend.js +286 -0
- package/dist/core/providers/types.d.ts +56 -0
- package/dist/core/providers/types.js +39 -0
- package/dist/core/repoos.d.ts +59 -0
- package/dist/core/repoos.js +221 -0
- package/dist/core/runtime.d.ts +35 -0
- package/dist/core/runtime.js +167 -0
- package/dist/core/skills-registry.d.ts +39 -0
- package/dist/core/skills-registry.js +148 -0
- package/dist/core/skills-registry.test.d.ts +1 -0
- package/dist/core/skills-registry.test.js +52 -0
- package/dist/core/sysmem.d.ts +7 -0
- package/dist/core/sysmem.js +55 -0
- package/dist/core/tailscale.d.ts +2 -0
- package/dist/core/tailscale.js +19 -0
- package/dist/core/task.d.ts +53 -0
- package/dist/core/task.js +310 -0
- package/dist/core/toml-line.d.ts +20 -0
- package/dist/core/toml-line.js +52 -0
- package/dist/core/toml-validate.d.ts +44 -0
- package/dist/core/toml-validate.js +335 -0
- package/dist/core/tunnel-assistant.d.ts +30 -0
- package/dist/core/tunnel-assistant.js +65 -0
- package/dist/core/tunnel-registry.d.ts +96 -0
- package/dist/core/tunnel-registry.js +267 -0
- package/dist/core/tunnel-registry.test.d.ts +1 -0
- package/dist/core/tunnel-registry.test.js +309 -0
- package/dist/core/tunnel.d.ts +103 -0
- package/dist/core/tunnel.js +320 -0
- package/dist/core/types.d.ts +811 -0
- package/dist/core/types.js +27 -0
- package/dist/core/worktree-gc.d.ts +57 -0
- package/dist/core/worktree-gc.js +194 -0
- package/dist/server/__tests__/integration-job.test.d.ts +1 -0
- package/dist/server/__tests__/integration-job.test.js +129 -0
- package/dist/server/agents.d.ts +1020 -0
- package/dist/server/agents.js +4070 -0
- package/dist/server/attachments.d.ts +51 -0
- package/dist/server/attachments.js +130 -0
- package/dist/server/auto-engineering.d.ts +45 -0
- package/dist/server/auto-engineering.js +275 -0
- package/dist/server/branchless-release.d.ts +22 -0
- package/dist/server/branchless-release.js +67 -0
- package/dist/server/built-in-agents.d.ts +305 -0
- package/dist/server/built-in-agents.js +1838 -0
- package/dist/server/cto-monitor.d.ts +35 -0
- package/dist/server/cto-monitor.js +281 -0
- package/dist/server/cto.d.ts +125 -0
- package/dist/server/cto.js +590 -0
- package/dist/server/deployments.d.ts +119 -0
- package/dist/server/deployments.js +325 -0
- package/dist/server/diff-snapshot.d.ts +20 -0
- package/dist/server/diff-snapshot.js +73 -0
- package/dist/server/done.d.ts +160 -0
- package/dist/server/done.js +488 -0
- package/dist/server/freeform.d.ts +55 -0
- package/dist/server/freeform.js +179 -0
- package/dist/server/handoff.d.ts +99 -0
- package/dist/server/handoff.js +575 -0
- package/dist/server/hetzner.d.ts +45 -0
- package/dist/server/hetzner.js +117 -0
- package/dist/server/icons.d.ts +8 -0
- package/dist/server/icons.js +195 -0
- package/dist/server/integration-job.d.ts +75 -0
- package/dist/server/integration-job.js +144 -0
- package/dist/server/integration-orchestrator.d.ts +211 -0
- package/dist/server/integration-orchestrator.js +1299 -0
- package/dist/server/integration-status.d.ts +48 -0
- package/dist/server/integration-status.js +71 -0
- package/dist/server/live-index.d.ts +295 -0
- package/dist/server/live-index.js +452 -0
- package/dist/server/model-test.d.ts +20 -0
- package/dist/server/model-test.js +100 -0
- package/dist/server/ntfy.d.ts +57 -0
- package/dist/server/ntfy.js +112 -0
- package/dist/server/pm-attachments.d.ts +35 -0
- package/dist/server/pm-attachments.js +181 -0
- package/dist/server/pm-runs.d.ts +58 -0
- package/dist/server/pm-runs.js +80 -0
- package/dist/server/preview.d.ts +174 -0
- package/dist/server/preview.js +641 -0
- package/dist/server/release.d.ts +88 -0
- package/dist/server/release.js +449 -0
- package/dist/server/reload.d.ts +194 -0
- package/dist/server/reload.js +586 -0
- package/dist/server/remote-validation.d.ts +132 -0
- package/dist/server/remote-validation.js +478 -0
- package/dist/server/repo-lock.d.ts +36 -0
- package/dist/server/repo-lock.js +141 -0
- package/dist/server/review-guard.d.ts +14 -0
- package/dist/server/review-guard.js +159 -0
- package/dist/server/review.d.ts +243 -0
- package/dist/server/review.js +1211 -0
- package/dist/server/routes/agents.d.ts +6 -0
- package/dist/server/routes/agents.js +28 -0
- package/dist/server/routes/auth.d.ts +60 -0
- package/dist/server/routes/auth.js +755 -0
- package/dist/server/routes/config.d.ts +20 -0
- package/dist/server/routes/config.js +347 -0
- package/dist/server/routes/debugger.d.ts +33 -0
- package/dist/server/routes/debugger.js +360 -0
- package/dist/server/routes/deployments.d.ts +3 -0
- package/dist/server/routes/deployments.js +16 -0
- package/dist/server/routes/docs.d.ts +8 -0
- package/dist/server/routes/docs.js +135 -0
- package/dist/server/routes/helpers.d.ts +21 -0
- package/dist/server/routes/helpers.js +171 -0
- package/dist/server/routes/index.d.ts +19 -0
- package/dist/server/routes/index.js +18 -0
- package/dist/server/routes/info.d.ts +17 -0
- package/dist/server/routes/info.js +177 -0
- package/dist/server/routes/inputs.d.ts +7 -0
- package/dist/server/routes/inputs.js +125 -0
- package/dist/server/routes/model-providers.d.ts +27 -0
- package/dist/server/routes/model-providers.js +94 -0
- package/dist/server/routes/models.d.ts +3 -0
- package/dist/server/routes/models.js +36 -0
- package/dist/server/routes/notify.d.ts +2 -0
- package/dist/server/routes/notify.js +17 -0
- package/dist/server/routes/playground.d.ts +29 -0
- package/dist/server/routes/playground.js +81 -0
- package/dist/server/routes/release.d.ts +20 -0
- package/dist/server/routes/release.js +86 -0
- package/dist/server/routes/router.d.ts +12 -0
- package/dist/server/routes/router.js +32 -0
- package/dist/server/routes/skill-registry.d.ts +5 -0
- package/dist/server/routes/skill-registry.js +51 -0
- package/dist/server/routes/tasks.d.ts +58 -0
- package/dist/server/routes/tasks.js +1442 -0
- package/dist/server/routes/transcribe.d.ts +2 -0
- package/dist/server/routes/transcribe.js +124 -0
- package/dist/server/routes/types.d.ts +68 -0
- package/dist/server/routes/types.js +1 -0
- package/dist/server/routes/ui.d.ts +5 -0
- package/dist/server/routes/ui.js +81 -0
- package/dist/server/routes/utils.d.ts +3 -0
- package/dist/server/routes/utils.js +23 -0
- package/dist/server/serve-reaper.d.ts +135 -0
- package/dist/server/serve-reaper.js +491 -0
- package/dist/server/server.d.ts +49 -0
- package/dist/server/server.js +2171 -0
- package/dist/server/supervisor.d.ts +89 -0
- package/dist/server/supervisor.js +231 -0
- package/dist/server/system.d.ts +198 -0
- package/dist/server/system.js +480 -0
- package/dist/server/task-check.d.ts +45 -0
- package/dist/server/task-check.js +71 -0
- package/dist/server/task-transitions.d.ts +51 -0
- package/dist/server/task-transitions.js +78 -0
- package/dist/server/task-watchdog.d.ts +158 -0
- package/dist/server/task-watchdog.js +681 -0
- package/dist/server/test-run.d.ts +28 -0
- package/dist/server/test-run.js +81 -0
- package/dist/server/watcher.d.ts +21 -0
- package/dist/server/watcher.js +194 -0
- package/dist/server/write.d.ts +94 -0
- package/dist/server/write.js +345 -0
- package/dist/ui/assets/AgentsView-CF4wRvHh.css +1 -0
- package/dist/ui/assets/AgentsView-D-myL-kA.js +1 -0
- package/dist/ui/assets/ContextView-D3TC-RSp.css +1 -0
- package/dist/ui/assets/ContextView-DsOqAdyE.js +4 -0
- package/dist/ui/assets/DashboardView-BOhsIJqO.js +1 -0
- package/dist/ui/assets/DashboardView-Ck9o0RP2.css +1 -0
- package/dist/ui/assets/DeploymentsView--iIUVfEH.css +1 -0
- package/dist/ui/assets/DeploymentsView-DXu_FYR2.js +1 -0
- package/dist/ui/assets/InputsView-24HVbVPk.js +1 -0
- package/dist/ui/assets/InputsView-BLb7GHtx.css +1 -0
- package/dist/ui/assets/LoginView-6QlGg6cx.css +1 -0
- package/dist/ui/assets/LoginView-BqupI0Lt.js +1 -0
- package/dist/ui/assets/ReleasesView-BEG1A0YH.css +1 -0
- package/dist/ui/assets/ReleasesView-CAgMuxpe.js +3 -0
- package/dist/ui/assets/SettingsView-CA-NYSMK.css +1 -0
- package/dist/ui/assets/SettingsView-O3iZSnjg.js +3 -0
- package/dist/ui/assets/WorkView-D8Tl6qwy.js +1 -0
- package/dist/ui/assets/WorkView-DMYL2s3W.css +1 -0
- package/dist/ui/assets/abnfDiagram-VCTEODGH-J5lkSnEE.js +1 -0
- package/dist/ui/assets/arc-BHZnmhhM.js +1 -0
- package/dist/ui/assets/architecture-7GRP2DOG-pLdFt-xS.js +1 -0
- package/dist/ui/assets/architectureDiagram-5GKGNRK7-C3k89uKX.js +36 -0
- package/dist/ui/assets/array-BifhSqXX.js +1 -0
- package/dist/ui/assets/blockDiagram-I7D4REHJ-AWNoBzop.js +129 -0
- package/dist/ui/assets/button-lbikqSph.js +1 -0
- package/dist/ui/assets/c4Diagram-7LVT6UL2-DKG1D5gd.js +38 -0
- package/dist/ui/assets/channel-gA4qBv3A.js +1 -0
- package/dist/ui/assets/chunk-2Q5K7J3B-C1jixKkw.js +1 -0
- package/dist/ui/assets/chunk-4HAMMTFA-D1YR8lF_.js +62 -0
- package/dist/ui/assets/chunk-5VM5RSS4-ZNzvKenW.js +15 -0
- package/dist/ui/assets/chunk-75Z2AOVW-5GuBxfsL.js +2 -0
- package/dist/ui/assets/chunk-DU6HZSFF-DfdNNqwa.js +127 -0
- package/dist/ui/assets/chunk-F27PBJKO-BPZzinQ4.js +1 -0
- package/dist/ui/assets/chunk-FOHPRMQF-l2z4K2jD.js +161 -0
- package/dist/ui/assets/chunk-GMAD6QVW-DGWvSKj5.js +72 -0
- package/dist/ui/assets/chunk-GVQU2GXP-D6Aw75wJ.js +1 -0
- package/dist/ui/assets/chunk-IMKFNOWR-B8mMBKCW.js +231 -0
- package/dist/ui/assets/chunk-JWPE2WC7-DVXcaiue.js +1 -0
- package/dist/ui/assets/chunk-L3NEJ4N5-D5OJuXYE.js +1 -0
- package/dist/ui/assets/chunk-OSK3NFVY-B7r9w2UW.js +10 -0
- package/dist/ui/assets/chunk-P2QGCYS3-C74X4AQX.js +1 -0
- package/dist/ui/assets/chunk-POPQ4Y6H-C5_u1gUS.js +1 -0
- package/dist/ui/assets/chunk-PWAF6VOD-DfoTLtxn.js +1 -0
- package/dist/ui/assets/chunk-SHT3W25Y-D40m2eqz.js +168 -0
- package/dist/ui/assets/chunk-SVP7TREG-euxi0Kap.js +88 -0
- package/dist/ui/assets/chunk-TICWLB2K-fkdxngzN.js +206 -0
- package/dist/ui/assets/chunk-XXDRQBXY-DFBUG-OT.js +1 -0
- package/dist/ui/assets/chunk-Y2CYZVJY-DsF7k-Jl.js +1 -0
- package/dist/ui/assets/classDiagram-ZZMXUADV-BzW8bq2P.js +1 -0
- package/dist/ui/assets/classDiagram-v2-VYDZK3BY-BzW8bq2P.js +1 -0
- package/dist/ui/assets/cose-bilkent-JH36ORCC-BTcgMon1.js +1 -0
- package/dist/ui/assets/cynefin-OW5HDTMX-B5m_COsS.js +1 -0
- package/dist/ui/assets/cynefinDiagram-5FMLGOSQ-C-AG6CGe.js +62 -0
- package/dist/ui/assets/cytoscape.esm-FBntH-9t.js +321 -0
- package/dist/ui/assets/dagre-GXQ25YYZ-DDfDnp8L.js +4 -0
- package/dist/ui/assets/dagre-PrKaheQc.js +1 -0
- package/dist/ui/assets/defaultLocale-BFoDCU3G.js +1 -0
- package/dist/ui/assets/diagram-S7CK7UJ4-DjQZAlEY.js +30 -0
- package/dist/ui/assets/diagram-UQ7AKVKN-DAZ9yp1B.js +41 -0
- package/dist/ui/assets/diagram-VSXAHHWV-BWepUKJD.js +3 -0
- package/dist/ui/assets/diagram-VX7I27RA-EcV1J81b.js +24 -0
- package/dist/ui/assets/diagram-Z3DM3KII-Dbz7XU_K.js +24 -0
- package/dist/ui/assets/dist-DTg6UBE_.js +1 -0
- package/dist/ui/assets/ebnfDiagram-PWID7BFC-BUyQw8Mm.js +1 -0
- package/dist/ui/assets/erDiagram-RLTQ6QDP-WVf8ukKt.js +99 -0
- package/dist/ui/assets/eventmodeling-NTZA5JFV-DHqyLOAn.js +1 -0
- package/dist/ui/assets/flowDiagram-HODETNUW-CYk_ze5K.js +1 -0
- package/dist/ui/assets/ganttDiagram-EL5Y4UJY-rB4MZuB-.js +292 -0
- package/dist/ui/assets/gitGraph-4MIJSDKK-BOTWM8dY.js +1 -0
- package/dist/ui/assets/gitGraphDiagram-WWUBYQGX-eYscuhtP.js +106 -0
- package/dist/ui/assets/graphlib-DS17s2tU.js +1 -0
- package/dist/ui/assets/index-BACBfnga.css +1 -0
- package/dist/ui/assets/index-BOQ-ust6.js +26 -0
- package/dist/ui/assets/info-A6RAGUB7-_67wOORe.js +1 -0
- package/dist/ui/assets/infoDiagram-27XIBGKW-XVXbddTA.js +2 -0
- package/dist/ui/assets/init-C-OQMol4.js +1 -0
- package/dist/ui/assets/ishikawaDiagram-5VMMS53U-ClLNiEru.js +70 -0
- package/dist/ui/assets/journeyDiagram-3NMN7TZE-NRawjR6i.js +139 -0
- package/dist/ui/assets/kanban-definition-UXKFOSKX-BgSzBfIx.js +89 -0
- package/dist/ui/assets/katex-DolUETbr.js +257 -0
- package/dist/ui/assets/line-KAyfuul4.js +1 -0
- package/dist/ui/assets/linear-cCCPOpu7.js +1 -0
- package/dist/ui/assets/mermaid-parser.core-CgXZk1iN.js +7 -0
- package/dist/ui/assets/mermaid.core-BUUkChHW.js +44 -0
- package/dist/ui/assets/mindmap-definition-YA3MSWOX-Cpn7vW4r.js +96 -0
- package/dist/ui/assets/ordinal-BDEzSJ7C.js +1 -0
- package/dist/ui/assets/packet-AYTQ26CC-0lZwM-d6.js +1 -0
- package/dist/ui/assets/path-COt_16Va.js +1 -0
- package/dist/ui/assets/pegDiagram-XKGWAZYB-impy0inn.js +1 -0
- package/dist/ui/assets/pie-WAS4IAKB-CqfdGHYg.js +1 -0
- package/dist/ui/assets/pieDiagram-E7YTZNPT-CxjL4I1h.js +39 -0
- package/dist/ui/assets/quadrantDiagram-AXDQQJYC-Cjd1QMIe.js +7 -0
- package/dist/ui/assets/radar-RG4KPBEZ-CRkQIwiv.js +1 -0
- package/dist/ui/assets/railroad-74A4TZTK-i67XSWTB.js +1 -0
- package/dist/ui/assets/railroad-abnf-HS5TGJTU-Cv9m5aS3.js +1 -0
- package/dist/ui/assets/railroad-ebnf-LZEXJU2U-C5ZIn-Jh.js +1 -0
- package/dist/ui/assets/railroad-peg-WCYAUIDC-CGra9Oq-.js +1 -0
- package/dist/ui/assets/railroadDiagram-O6MQD6OU-_pK0qyaY.js +1 -0
- package/dist/ui/assets/releases-B0WNV-SY.js +1 -0
- package/dist/ui/assets/repoos-cto-square.webp +0 -0
- package/dist/ui/assets/repoos-helpful-pm-square.webp +0 -0
- package/dist/ui/assets/repoos-orchestrator-square.webp +0 -0
- package/dist/ui/assets/repoos-performance-agent-square.webp +0 -0
- package/dist/ui/assets/repoos-ross-from-friends-square.webp +0 -0
- package/dist/ui/assets/repoos-tech-debt-agent-square.webp +0 -0
- package/dist/ui/assets/requirementDiagram-BXWQKSXE-CRrFX-yw.js +84 -0
- package/dist/ui/assets/rough.esm-By172zw-.js +1 -0
- package/dist/ui/assets/sankeyDiagram-P5KCCOFB-X_xFRj9E.js +40 -0
- package/dist/ui/assets/sequenceDiagram-WJ2MYXX4-Byb49lKf.js +162 -0
- package/dist/ui/assets/sizeCapture-INFHLROL-B0uUizjq.js +1 -0
- package/dist/ui/assets/src-BH-TyZbA.js +1 -0
- package/dist/ui/assets/stateDiagram-D77RDMKH-CzaPrqYF.js +1 -0
- package/dist/ui/assets/stateDiagram-v2-MP3YSRHH-BCXckz7K.js +1 -0
- package/dist/ui/assets/swimlanes-42K2YHIH-Cx_1lnqr.js +1 -0
- package/dist/ui/assets/swimlanesDiagram-VR7AAH4N-54qsKi6A.js +8 -0
- package/dist/ui/assets/timeline-definition-24CTP7MA-B1IbZPQ-.js +120 -0
- package/dist/ui/assets/treeView-Q6P3EWNA-DFWhVE3d.js +1 -0
- package/dist/ui/assets/treemap-WGGIJYW6-BmbYPThn.js +1 -0
- package/dist/ui/assets/vendor-ui-DPm7zLxi.js +3 -0
- package/dist/ui/assets/vendor-vue-CobgyEJp.js +1 -0
- package/dist/ui/assets/vennDiagram-4TSXK5OY-Ae2AtRpt.js +34 -0
- package/dist/ui/assets/wardley-WFR3VGLG-BtD4X4tL.js +1 -0
- package/dist/ui/assets/wardleyDiagram-VM6X3IG4-B3YN2fTd.js +78 -0
- package/dist/ui/assets/xychartDiagram-S5SC5T6Z-CIzJfMKA.js +7 -0
- package/dist/ui/favicon.svg +11 -0
- package/dist/ui/index.html +49 -0
- package/dist/ui/sw.js +48 -0
- package/package.json +91 -0
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import type { CheckContrastPair, CheckThemeScope } from "../core/types.js";
|
|
2
|
+
/**
|
|
3
|
+
* Bare `require(...)` calls guard (#0271 follow-up): this package is
|
|
4
|
+
* `"type": "module"` (ESM) — a bare, un-shadowed `require` is undefined at
|
|
5
|
+
* runtime in the compiled `dist/` output, throwing `ReferenceError`.
|
|
6
|
+
* Confirmed live: `integration-job.ts`'s `removeJob()` used bare
|
|
7
|
+
* `require("fs")` inside a try/catch that silently swallowed the
|
|
8
|
+
* `ReferenceError`, so a moot close-out job was never actually deleted from
|
|
9
|
+
* disk — it kept getting re-picked-up and re-processed in a tight infinite
|
|
10
|
+
* loop, live, in production (task #0258), until someone noticed and asked
|
|
11
|
+
* why it was stuck.
|
|
12
|
+
*
|
|
13
|
+
* vitest transpiles TypeScript on the fly with its own module loader, which
|
|
14
|
+
* DOES provide a working `require()` even in these ESM-flagged files — so
|
|
15
|
+
* this bug is invisible to every unit test that imports the affected module,
|
|
16
|
+
* no matter how thorough. Only the actual compiled `dist/` output, run under
|
|
17
|
+
* Node's real ESM semantics, exposes it. This static, textual guard is the
|
|
18
|
+
* only check in the whole gate that runs against the real failure mode.
|
|
19
|
+
*
|
|
20
|
+
* `createRequire(...)` (a real, valid way to get a working `require` in ESM
|
|
21
|
+
* — see `ui-harness.ts`) shadows the global; a file that uses it anywhere is
|
|
22
|
+
* exempted file-wide rather than precisely scoping which calls are shadowed
|
|
23
|
+
* and which aren't — simpler, and a false negative here just means a
|
|
24
|
+
* legitimately-shadowed file's OTHER bare-require bugs (if any) go
|
|
25
|
+
* uncaught, never that a broken bare require ships silently.
|
|
26
|
+
*/
|
|
27
|
+
export declare function bareRequireOffenders(roots: string[], opts?: {
|
|
28
|
+
repoRoot?: string;
|
|
29
|
+
excludes?: string[];
|
|
30
|
+
}): string[];
|
|
31
|
+
/** Parse a `tsconfig.json` (JSONC) and read the fields the guard needs, or null. */
|
|
32
|
+
export declare function readTsconfig(repoRoot: string): {
|
|
33
|
+
include?: unknown;
|
|
34
|
+
files?: unknown;
|
|
35
|
+
exclude?: unknown;
|
|
36
|
+
} | null;
|
|
37
|
+
export interface ResolvedBareRequireRoots {
|
|
38
|
+
/** Repo-relative source roots to scan; empty when nothing could be resolved. */
|
|
39
|
+
roots: string[];
|
|
40
|
+
/**
|
|
41
|
+
* Repo-relative globs/paths to skip — from `[check] bareRequireExcludes`, or
|
|
42
|
+
* the tsconfig's own `exclude` when the roots came from there.
|
|
43
|
+
*/
|
|
44
|
+
excludes: string[];
|
|
45
|
+
/** Where the roots came from, for the check's status message. */
|
|
46
|
+
source: "config" | "tsconfig" | "none";
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Decide which source roots the bare-`require()` guard scans (#0352). Explicit
|
|
50
|
+
* `[check] bareRequireDirs` wins; otherwise the repo's tsconfig `include` (plus
|
|
51
|
+
* `files`) is mapped to directories, minus its `exclude` list. Pure so the
|
|
52
|
+
* resolution is unit-testable; if neither yields a root the guard skips rather
|
|
53
|
+
* than passing vacuously.
|
|
54
|
+
*/
|
|
55
|
+
export declare function resolveBareRequireRoots(configured: string[] | undefined, tsconfig: {
|
|
56
|
+
include?: unknown;
|
|
57
|
+
files?: unknown;
|
|
58
|
+
exclude?: unknown;
|
|
59
|
+
} | null, configuredExcludes?: string[]): ResolvedBareRequireRoots;
|
|
60
|
+
/**
|
|
61
|
+
* Binary attachments (screenshots, PDFs) under the task/input folders must
|
|
62
|
+
* never enter git history: they are uploaded through the UI, written to
|
|
63
|
+
* `<dir>/.attachments/`, and served back by the running server from disk — the
|
|
64
|
+
* committed record is the task/input `.md`, not the pixels. Binaries in
|
|
65
|
+
* history bloat the repo irreversibly (this repo once carried ~250 MiB of
|
|
66
|
+
* stale screenshot churn). Product image assets — UI, icons, logos, docs —
|
|
67
|
+
* live outside those folders and stay tracked.
|
|
68
|
+
*
|
|
69
|
+
* The folder names come from `repoos.toml` (`workDir`/`inputsDir`) so a managed
|
|
70
|
+
* repo that renames them still gets the guard; they default to `work`/`inputs`.
|
|
71
|
+
*
|
|
72
|
+
* Pure (takes the tracked-file list) so it is unit-testable; the check block
|
|
73
|
+
* feeds it `git ls-files`.
|
|
74
|
+
*/
|
|
75
|
+
/**
|
|
76
|
+
* Normalize a configured guard directory (`workDir`/`inputsDir`) for prefix
|
|
77
|
+
* matching against `git ls-files` output, which is always repo-root-relative:
|
|
78
|
+
* strip any leading `./` and trailing slashes. Returns empty for anything that
|
|
79
|
+
* can't be a repo-relative directory — an explicit `""`, `"."`/`"./"`, an
|
|
80
|
+
* absolute path, a home-relative `~/…`, or a path containing a `..` segment.
|
|
81
|
+
* Those would all silently match nothing (or, for `""`, fatal git's pathspec),
|
|
82
|
+
* so callers must treat empty as unusable rather than as "match everything".
|
|
83
|
+
*/
|
|
84
|
+
export declare function normalizeGuardDir(d: string): string;
|
|
85
|
+
export declare function taskAssetOffenders(trackedPaths: string[], dirs?: {
|
|
86
|
+
workDir?: string;
|
|
87
|
+
inputsDir?: string;
|
|
88
|
+
}): string[];
|
|
89
|
+
/**
|
|
90
|
+
* Scan a stylesheet for UNLAYERED universal/bare-element selectors.
|
|
91
|
+
* With Tailwind v4 everything lives in cascade layers; an unlayered `*`
|
|
92
|
+
* or tag rule silently beats every utility (unlayered > @layer), which
|
|
93
|
+
* already collapsed all shadcn padding once. Scoped class/ID/attribute
|
|
94
|
+
* rules are intentional legacy overrides and stay allowed.
|
|
95
|
+
*/
|
|
96
|
+
export declare function cssLayeringOffenders(css: string): string[];
|
|
97
|
+
/** The `[check]` token vocabulary the theme-contrast guard evaluates. */
|
|
98
|
+
export interface ThemeContrastConfig {
|
|
99
|
+
scopes: CheckThemeScope[];
|
|
100
|
+
pairs: CheckContrastPair[];
|
|
101
|
+
gradientTokens: string[];
|
|
102
|
+
/** Token to composite semi-transparent colors over; see CheckConfig. */
|
|
103
|
+
backdropToken?: string;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* True when at least one configured scope selector opens a block in `css`.
|
|
107
|
+
* The theme-contrast step uses this to skip a stylesheet with no theme blocks
|
|
108
|
+
* rather than keying off a hardcoded RepoOS selector like `:root`.
|
|
109
|
+
*/
|
|
110
|
+
export declare function hasThemeBlocks(css: string, scopes: CheckThemeScope[]): boolean;
|
|
111
|
+
/**
|
|
112
|
+
* Advisory config-shape warnings for declared theme scopes: a typo'd
|
|
113
|
+
* `inherits` target or a duplicated selector/name otherwise collapses
|
|
114
|
+
* silently (empty declarations / last-wins). Returned rather than thrown so
|
|
115
|
+
* `repoos check` can surface them without failing the gate on a config typo.
|
|
116
|
+
*/
|
|
117
|
+
export declare function themeScopeConfigWarnings(scopes: CheckThemeScope[]): string[];
|
|
118
|
+
export declare function themeContrastOffenders(css: string, config: ThemeContrastConfig): string[];
|
|
119
|
+
/**
|
|
120
|
+
* Which git ref (if any) to scope the Tests step to, via Vitest's own
|
|
121
|
+
* `--changed <ref>` (git-diff + module graph, only runs tests that could
|
|
122
|
+
* actually be affected). Unset for a standalone `repoos check` — that path
|
|
123
|
+
* is the full definition-of-done gate and must never narrow coverage.
|
|
124
|
+
*
|
|
125
|
+
* Only the two per-branch pre-merge checks set this: the engineer's own
|
|
126
|
+
* self-check before requesting handoff, and the server's handoff-finalize
|
|
127
|
+
* re-verification (both re-checking the SAME isolated branch, just diffed
|
|
128
|
+
* against its own base). The close-out gate that validates the actual merge
|
|
129
|
+
* onto main (integration-orchestrator.ts's validateCandidate) deliberately
|
|
130
|
+
* never sets it — that check is about interaction with whatever else has
|
|
131
|
+
* landed on main since, which a per-branch diff can't see.
|
|
132
|
+
*/
|
|
133
|
+
export declare function changedTestRef(env: NodeJS.ProcessEnv): string | undefined;
|
|
134
|
+
/**
|
|
135
|
+
* The `package.json` script name a project uses to opt into `repoos check`'s
|
|
136
|
+
* UI smoke step with no configuration — the same zero-config convention
|
|
137
|
+
* `build`/`test`/`lint` already follow elsewhere in this gate.
|
|
138
|
+
*/
|
|
139
|
+
export declare const UI_SMOKE_SCRIPT = "smoke";
|
|
140
|
+
export type SmokeCommand = {
|
|
141
|
+
source: "config";
|
|
142
|
+
command: string;
|
|
143
|
+
} | {
|
|
144
|
+
source: "script";
|
|
145
|
+
script: string;
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* Resolve which UI smoke command (if any) `repoos check` should run for the
|
|
149
|
+
* current project (#0348). Precedence: `repoos.toml` `[check] uiSmoke` wins,
|
|
150
|
+
* then a `smoke` package.json script, else null — the caller then skips the
|
|
151
|
+
* step cleanly. RepoOS's own repo resolves through this same path (its `smoke`
|
|
152
|
+
* script); there is no RepoOS-only fallback.
|
|
153
|
+
*/
|
|
154
|
+
export declare function resolveSmokeCommand(configured: string | undefined, pkgScripts: Record<string, string> | undefined): SmokeCommand | null;
|
|
155
|
+
/**
|
|
156
|
+
* Vitest worker-pool size for the Tests step. `vite.config.ts` pins a
|
|
157
|
+
* conservative floor (`maxWorkers: 2`) because several agent-driven check runs
|
|
158
|
+
* routinely overlap across worktrees and each pool otherwise multiplies against
|
|
159
|
+
* the others. But a solo run on an idle machine with memory to spare leaves
|
|
160
|
+
* most of the box idle — the subprocess-heavy suites (agent-review,
|
|
161
|
+
* done-reliability, task-watchdog) are I/O-bound on `waitFor` polls, so more
|
|
162
|
+
* workers is close to linear there.
|
|
163
|
+
*
|
|
164
|
+
* Scale up only with real headroom, gated on BOTH cpu count and reclaimable
|
|
165
|
+
* memory (budget ~900MB per worker + its fixture subprocesses). An explicit
|
|
166
|
+
* `REPOOS_TEST_WORKERS` always wins; anything else falls back to the config
|
|
167
|
+
* floor via `undefined`.
|
|
168
|
+
*/
|
|
169
|
+
export declare function testPoolSize(env: NodeJS.ProcessEnv): number | undefined;
|
|
170
|
+
export declare function cmdCheck(): Promise<void>;
|