onbuzz 4.8.3 → 4.9.1
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/bin/cli.js +27 -1
- package/bin/composio-cli.js +431 -0
- package/package.json +1 -1
- package/scripts/build-onboarding-doc.cjs +805 -0
- package/scripts/composio-bench/README.md +151 -0
- package/scripts/memory-bench/bench.mjs +576 -0
- package/scripts/memory-bench/live-after-2026-05-21T16-20-52-767Z.json +150 -0
- package/scripts/memory-bench/live-after-2026-05-21T16-37-17-147Z.json +795 -0
- package/scripts/memory-bench/live-after-final-2026-05-21T17-16-02-947Z.json +766 -0
- package/scripts/memory-bench/live-after-v2-2026-05-21T16-52-26-833Z.json +890 -0
- package/scripts/memory-bench/live-after-v3-2026-05-21T17-05-40-622Z.json +955 -0
- package/scripts/memory-bench/live-probe-v2.mjs +412 -0
- package/scripts/memory-bench/live-probe.mjs +387 -0
- package/scripts/memory-bench/live-smoke-2026-05-21T16-22-35-945Z.json +36 -0
- package/scripts/memory-bench/live-smoke2-2026-05-21T16-24-14-095Z.json +36 -0
- package/scripts/memory-bench/live-smoke3-2026-05-21T16-26-54-093Z.json +123 -0
- package/scripts/memory-bench/live-v2-baseline-2026-05-23T22-43-20-757Z.json +628 -0
- package/scripts/memory-bench/live-v2-directive-2026-05-23T21-32-41-369Z.json +628 -0
- package/scripts/memory-bench/live-v2-smoke-2026-05-23T20-06-37-325Z.json +34 -0
- package/scripts/memory-bench/live-v2-smoke-2026-05-23T20-12-48-199Z.json +38 -0
- package/scripts/memory-bench/results-baseline-2026-05-19T11-23-12-245Z.json +39 -0
- package/scripts/memory-bench/results-baseline-2026-05-19T11-30-28-763Z.json +1024 -0
- package/scripts/memory-bench/results-baseline-2026-05-19T11-34-19-299Z.json +1007 -0
- package/scripts/memory-bench/results-baseline-2026-05-19T11-44-18-054Z.json +1432 -0
- package/scripts/memory-bench/results-nudge-combined-2026-05-19T12-00-37-465Z.json +1413 -0
- package/scripts/memory-bench/results-nudge-directive-2026-05-19T11-36-52-963Z.json +210 -0
- package/scripts/memory-bench/results-nudge-directive-2026-05-19T11-49-55-790Z.json +1464 -0
- package/scripts/memory-bench/results-nudge-echo-catalog-2026-05-19T11-39-01-829Z.json +232 -0
- package/scripts/memory-bench/results-nudge-echo-catalog-2026-05-19T11-55-12-705Z.json +1397 -0
- package/scripts/memory-bench/scenarios-v2.mjs +123 -0
- package/scripts/memory-bench/scenarios.mjs +178 -0
- package/scripts/office-bench/generate-samples.mjs +180 -0
- package/scripts/op-posture-bench/bench.mjs +397 -0
- package/scripts/op-posture-bench/probe.mjs +87 -0
- package/scripts/op-posture-bench/results-2026-05-18T20-29-13-941Z.json +57 -0
- package/scripts/op-posture-bench/results-2026-05-18T20-38-36-400Z.json +3071 -0
- package/scripts/op-posture-bench/scenarios.mjs +60 -0
- package/scripts/op-posture-bench/variants.mjs +68 -0
- package/scripts/stub-bench/bench.mjs +439 -0
- package/scripts/stub-bench/fixture/auth.js +41 -0
- package/scripts/stub-bench/results-2026-05-19T10-33-27-045Z.json +99 -0
- package/scripts/stub-bench/results-2026-05-19T10-35-08-240Z.json +920 -0
- package/scripts/stub-bench/results-2026-05-19T10-40-12-166Z.json +463 -0
- package/scripts/verify/azure-custom-embeddings.mjs +152 -0
- package/scripts/verify/azure-embeddings.mjs +146 -0
- package/scripts/verify/composio-toolkits.mjs +453 -0
- package/scripts/verify/local-embeddings.mjs +171 -0
- package/scripts/verify/openai-embeddings.mjs +140 -0
- package/src/__tests__/composioCliFlags.test.js +239 -0
- package/src/core/__tests__/agentScheduler.autoRecall.test.js +215 -0
- package/src/core/__tests__/agentScheduler.codebaseKnowledge.test.js +65 -0
- package/src/core/__tests__/agentScheduler.errorCategorisation.test.js +169 -0
- package/src/core/__tests__/agentScheduler.memoryInjection.test.js +78 -0
- package/src/core/agentPool.js +10 -0
- package/src/core/agentScheduler.js +273 -36
- package/src/index.js +82 -4
- package/src/interfaces/__tests__/bulkAgentRoute.test.js +290 -0
- package/src/interfaces/__tests__/composioRoutes.test.js +318 -0
- package/src/interfaces/webServer.js +436 -2
- package/src/interfaces/webServer.js.bak +7047 -0
- package/src/services/__tests__/aiService.core.test.js +420 -0
- package/src/services/__tests__/aiService.embed.test.js +172 -0
- package/src/services/__tests__/apiKeyManager.getEmbeddingApiKey.test.js +86 -0
- package/src/services/__tests__/codeMapStubRenderer.test.js +207 -0
- package/src/services/__tests__/codebaseKnowledgeService.test.js +427 -0
- package/src/services/__tests__/composioService.test.js +714 -0
- package/src/services/__tests__/memoryService.appendAndCatalog.test.js +139 -0
- package/src/services/__tests__/telegramService.test.js +91 -0
- package/src/services/aiService.js +137 -0
- package/src/services/apiKeyManager.js +61 -0
- package/src/services/codeMapStubRenderer.js +142 -0
- package/src/services/codebaseKnowledgeService.js +430 -0
- package/src/services/composioService.js +729 -0
- package/src/services/embeddings/__tests__/autoRecall.test.js +237 -0
- package/src/services/embeddings/__tests__/azureCustomProvider.test.js +232 -0
- package/src/services/embeddings/__tests__/cloudProviders.test.js +339 -0
- package/src/services/embeddings/__tests__/embeddingService.test.js +417 -0
- package/src/services/embeddings/__tests__/embeddingsConfig.test.js +182 -0
- package/src/services/embeddings/__tests__/inMemoryJsonStore.test.js +207 -0
- package/src/services/embeddings/__tests__/localProvider.test.js +263 -0
- package/src/services/embeddings/__tests__/providerInterface.test.js +209 -0
- package/src/services/embeddings/autoRecall.js +219 -0
- package/src/services/embeddings/embeddingService.js +452 -0
- package/src/services/embeddings/embeddingsConfig.js +203 -0
- package/src/services/embeddings/indexers/__tests__/agentIndexer.test.js +232 -0
- package/src/services/embeddings/indexers/__tests__/composioIndexer.test.js +265 -0
- package/src/services/embeddings/indexers/__tests__/memoryIndexer.test.js +418 -0
- package/src/services/embeddings/indexers/__tests__/reminisceIndexer.test.js +357 -0
- package/src/services/embeddings/indexers/__tests__/skillsIndexer.test.js +145 -0
- package/src/services/embeddings/indexers/__tests__/taskIndexer.test.js +146 -0
- package/src/services/embeddings/indexers/agentIndexer.js +249 -0
- package/src/services/embeddings/indexers/composioIndexer.js +279 -0
- package/src/services/embeddings/indexers/memoryIndexer.js +358 -0
- package/src/services/embeddings/indexers/reminisceIndexer.js +370 -0
- package/src/services/embeddings/indexers/skillsIndexer.js +154 -0
- package/src/services/embeddings/indexers/taskIndexer.js +155 -0
- package/src/services/embeddings/providerInterface.js +206 -0
- package/src/services/embeddings/providers/azureCustomProvider.js +154 -0
- package/src/services/embeddings/providers/azureProvider.js +122 -0
- package/src/services/embeddings/providers/cloudHttpTransport.js +205 -0
- package/src/services/embeddings/providers/localProvider.js +287 -0
- package/src/services/embeddings/providers/openaiProvider.js +101 -0
- package/src/services/embeddings/utilities/__tests__/textChunker.test.js +217 -0
- package/src/services/embeddings/utilities/textChunker.js +290 -0
- package/src/services/embeddings/vectorStore/__tests__/scoring.test.js +189 -0
- package/src/services/embeddings/vectorStore/inMemoryJsonStore.js +356 -0
- package/src/services/embeddings/vectorStore/scoring.js +128 -0
- package/src/services/embeddings/vectorStore/storeContractTests.js +179 -0
- package/src/services/embeddings/vectorStore/storeInterface.js +91 -0
- package/src/services/memoryService.js +98 -0
- package/src/services/telegramService.js +140 -1
- package/src/tools/__tests__/agentCommunicationTool.findAgent.test.js +226 -0
- package/src/tools/__tests__/agentCommunicationTool.test.js +17 -2
- package/src/tools/__tests__/baseTool.test.js +76 -10
- package/src/tools/__tests__/cloneDetectionTool.test.js +430 -0
- package/src/tools/__tests__/codeMapTool.pluralCanonical.test.js +83 -0
- package/src/tools/__tests__/composioTool.findAction.test.js +448 -0
- package/src/tools/__tests__/composioTool.test.js +499 -0
- package/src/tools/__tests__/dependencyResolverTool.test.js +567 -0
- package/src/tools/__tests__/docxTool.test.js +449 -0
- package/src/tools/__tests__/excelTool.test.js +486 -0
- package/src/tools/__tests__/importAnalyzerTool.test.js +368 -0
- package/src/tools/__tests__/memoryTool.forgetStale.test.js +272 -0
- package/src/tools/__tests__/memoryTool.pluralCanonical.test.js +189 -0
- package/src/tools/__tests__/memoryTool.reminisceSemanticSearch.test.js +301 -0
- package/src/tools/__tests__/memoryTool.semanticSearch.test.js +405 -0
- package/src/tools/__tests__/memoryTool.teamPool.test.js +293 -0
- package/src/tools/__tests__/memoryTool.test.js +1 -1
- package/src/tools/__tests__/officeTool.test.js +403 -0
- package/src/tools/__tests__/openaiFunctionSchemas.memoryReminisce.test.js +24 -25
- package/src/tools/__tests__/openaiFunctionSchemas.validity.test.js +268 -0
- package/src/tools/__tests__/pdfTool.test.js +457 -0
- package/src/tools/__tests__/singularToolReverseForgive.test.js +97 -0
- package/src/tools/__tests__/skillsTool.search.test.js +164 -0
- package/src/tools/__tests__/taskManagerTool.discipline.test.js +137 -0
- package/src/tools/__tests__/taskManagerTool.search.test.js +143 -0
- package/src/tools/__tests__/taskManagerTool.transition.test.js +236 -0
- package/src/tools/__tests__/toolShapeForgiveness.test.js +260 -0
- package/src/tools/agentCommunicationTool.js +120 -5
- package/src/tools/baseTool.js +28 -1
- package/src/tools/codeMapTool.js +1673 -1521
- package/src/tools/composioTool.js +617 -0
- package/src/tools/fileContentReplaceTool.js +893 -840
- package/src/tools/fileSystemTool.js +1372 -1314
- package/src/tools/fileTreeTool.js +7 -0
- package/src/tools/memoryTool.js +847 -82
- package/src/tools/office/officeDoc.js +425 -0
- package/src/tools/office/officePres.js +360 -0
- package/src/tools/office/officeSheet.js +350 -0
- package/src/tools/officeTool.js +313 -0
- package/src/tools/openaiFunctionSchemas.js +824 -44
- package/src/tools/platformControlTool.js +5 -0
- package/src/tools/seekTool.js +36 -1
- package/src/tools/skillsTool.js +133 -0
- package/src/tools/taskManagerTool.js +264 -16
- package/src/tools/terminalTool.js +23 -1
- package/src/tools/visionTool.js +7 -0
- package/src/tools/visualEditorTool.js +7 -0
- package/src/tools/webTool.js +28 -1
- package/src/tools/whatsappTool.js +7 -0
- package/src/utilities/authCache.js +47 -6
- package/src/utilities/authCache.js.backup-1779570472481 +121 -0
- package/src/utilities/toolConstants.js +3 -1
- package/web-ui/build/index.html +2 -2
- package/web-ui/build/static/1c-CTztA3Xo.js +1 -0
- package/web-ui/build/static/abap-BsUhLmBp.js +1 -0
- package/web-ui/build/static/abnf-CGKV2y5s.js +1 -0
- package/web-ui/build/static/abnf-vQPGuzu_.js +1 -0
- package/web-ui/build/static/accesslog-mUZocN9d.js +1 -0
- package/web-ui/build/static/actionscript-BmCHyr7v.js +1 -0
- package/web-ui/build/static/actionscript-Cc5vZvFE.js +1 -0
- package/web-ui/build/static/ada-BHR9NMNv.js +1 -0
- package/web-ui/build/static/ada-DnxQs2b9.js +1 -0
- package/web-ui/build/static/agda-CHEWVCEZ.js +1 -0
- package/web-ui/build/static/al-C0otNZjc.js +1 -0
- package/web-ui/build/static/angelscript-Co5e7ZdR.js +1 -0
- package/web-ui/build/static/antlr4-Dkky4AXR.js +1 -0
- package/web-ui/build/static/apache-BJkYIuV-.js +1 -0
- package/web-ui/build/static/apacheconf-XLif_lM5.js +1 -0
- package/web-ui/build/static/apex-DiKnugSK.js +1 -0
- package/web-ui/build/static/apl-R5OItFx8.js +1 -0
- package/web-ui/build/static/applescript-D8uiCoXI.js +1 -0
- package/web-ui/build/static/applescript-e5KOVzz4.js +1 -0
- package/web-ui/build/static/aql-Cvy5hwR1.js +1 -0
- package/web-ui/build/static/arcade-0iAjFk8w.js +1 -0
- package/web-ui/build/static/arduino-BJeuGqAT.js +1 -0
- package/web-ui/build/static/arduino-QJJjnM1j.js +1 -0
- package/web-ui/build/static/arff-C-i_E_-B.js +1 -0
- package/web-ui/build/static/armasm-ukFQKHGn.js +1 -0
- package/web-ui/build/static/asciidoc-B49qqHJJ.js +1 -0
- package/web-ui/build/static/asciidoc-Nkm1Ylrd.js +1 -0
- package/web-ui/build/static/asm6502-CMiM3nZs.js +1 -0
- package/web-ui/build/static/asmatmel-DG9XzIBf.js +1 -0
- package/web-ui/build/static/aspectj-DjRutrRk.js +1 -0
- package/web-ui/build/static/aspnet-DCNVRVi9.js +1 -0
- package/web-ui/build/static/autohotkey-C7eyvps0.js +1 -0
- package/web-ui/build/static/autohotkey-CiaZi-WO.js +1 -0
- package/web-ui/build/static/autoit-CaKUQkux.js +1 -0
- package/web-ui/build/static/autoit-D-CUHQgt.js +1 -0
- package/web-ui/build/static/avisynth-DFP3h4zu.js +1 -0
- package/web-ui/build/static/avrasm-BqvUj3fg.js +1 -0
- package/web-ui/build/static/avro-idl-D3l0ptuQ.js +1 -0
- package/web-ui/build/static/awk-BmDxAZFj.js +1 -0
- package/web-ui/build/static/axapta-B424jrgT.js +1 -0
- package/web-ui/build/static/bash-CgAffr8Z.js +1 -0
- package/web-ui/build/static/bash-D41aILLG.js +1 -0
- package/web-ui/build/static/basic-5DFTo35K.js +1 -0
- package/web-ui/build/static/basic-BONYG7D2.js +1 -0
- package/web-ui/build/static/batch-BnaDGMwS.js +1 -0
- package/web-ui/build/static/bbcode-Daujj4hU.js +1 -0
- package/web-ui/build/static/bicep-CXidcIK5.js +1 -0
- package/web-ui/build/static/birb-CcOzsnqB.js +1 -0
- package/web-ui/build/static/bison-rq0w5JFF.js +1 -0
- package/web-ui/build/static/bnf-C4uK1dK8.js +1 -0
- package/web-ui/build/static/bnf-CvXZ9crt.js +1 -0
- package/web-ui/build/static/brainfuck-B5Ezdg2y.js +1 -0
- package/web-ui/build/static/brainfuck-BZaTfZ97.js +1 -0
- package/web-ui/build/static/brightscript-D_2WBVxt.js +1 -0
- package/web-ui/build/static/bro-BD7GT6j_.js +1 -0
- package/web-ui/build/static/bsl-Bh-qcQ3w.js +1 -0
- package/web-ui/build/static/c-DNmZz1iT.js +1 -0
- package/web-ui/build/static/c-dUrSOcB2.js +1 -0
- package/web-ui/build/static/c-like-DfzKY8Uu.js +1 -0
- package/web-ui/build/static/cal-DgrFs4te.js +1 -0
- package/web-ui/build/static/capnproto-BxFR2k8w.js +1 -0
- package/web-ui/build/static/ceylon-B2Q7BIPM.js +1 -0
- package/web-ui/build/static/cfscript-DeaR8rww.js +1 -0
- package/web-ui/build/static/chaiscript-BeBIoz6b.js +1 -0
- package/web-ui/build/static/cil-YHiHOb4c.js +1 -0
- package/web-ui/build/static/clean-BgOl_0cN.js +1 -0
- package/web-ui/build/static/clojure-BlgOza7C.js +1 -0
- package/web-ui/build/static/clojure-PlKRYx3q.js +1 -0
- package/web-ui/build/static/clojure-repl-Dv2_THNB.js +1 -0
- package/web-ui/build/static/cmake-Ccf43gsy.js +1 -0
- package/web-ui/build/static/cmake-Dah_b5tK.js +1 -0
- package/web-ui/build/static/cobol-o9YRDzXA.js +1 -0
- package/web-ui/build/static/coffeescript-DTYLvxG9.js +1 -0
- package/web-ui/build/static/coffeescript-Dm4UcexP.js +1 -0
- package/web-ui/build/static/concurnas-1OxY7nFV.js +1 -0
- package/web-ui/build/static/coq-CvJBSoWT.js +1 -0
- package/web-ui/build/static/coq-DPZunybQ.js +1 -0
- package/web-ui/build/static/cos-BBstQgB4.js +1 -0
- package/web-ui/build/static/cpp-BR1pa5Wr.js +1 -0
- package/web-ui/build/static/cpp-C-_tTuKh.js +1 -0
- package/web-ui/build/static/crmsh-BIme7ihG.js +1 -0
- package/web-ui/build/static/crystal-C2hlJxaB.js +1 -0
- package/web-ui/build/static/crystal-Ca6D0fV7.js +1 -0
- package/web-ui/build/static/csharp-DGvdwvDH.js +1 -0
- package/web-ui/build/static/csharp-DbAjVltn.js +1 -0
- package/web-ui/build/static/cshtml-DVC84JPa.js +1 -0
- package/web-ui/build/static/csp-BawtG83z.js +1 -0
- package/web-ui/build/static/csp-BlaoxdTK.js +1 -0
- package/web-ui/build/static/css-52oqss7r.js +1 -0
- package/web-ui/build/static/css-extras-BoTVw2IW.js +1 -0
- package/web-ui/build/static/csv-nXBSv5kK.js +1 -0
- package/web-ui/build/static/cypher-WuesoPm2.js +1 -0
- package/web-ui/build/static/d-BmmTjwiV.js +1 -0
- package/web-ui/build/static/d-BwHf5A8R.js +1 -0
- package/web-ui/build/static/dart-BVZTRb8b.js +1 -0
- package/web-ui/build/static/dart-CbWzIBpX.js +1 -0
- package/web-ui/build/static/dataweave-qi_fpjJR.js +1 -0
- package/web-ui/build/static/dax-BpP02TD3.js +1 -0
- package/web-ui/build/static/delphi-TK0E0gLN.js +1 -0
- package/web-ui/build/static/dhall-jyNJwUbo.js +1 -0
- package/web-ui/build/static/diff-Dbu90HZq.js +1 -0
- package/web-ui/build/static/diff-Df6ezhAq.js +1 -0
- package/web-ui/build/static/django-BDy-xiWR.js +1 -0
- package/web-ui/build/static/django-CbmnWIX9.js +1 -0
- package/web-ui/build/static/dns-D_wmKRHl.js +1 -0
- package/web-ui/build/static/dns-zone-file-_1osc1Qk.js +1 -0
- package/web-ui/build/static/docker-D62hlkjX.js +1 -0
- package/web-ui/build/static/dockerfile-DQ080zHh.js +1 -0
- package/web-ui/build/static/dos-B5mA8Wna.js +1 -0
- package/web-ui/build/static/dot-D497WUfu.js +1 -0
- package/web-ui/build/static/dsconfig-dERMCQVk.js +1 -0
- package/web-ui/build/static/dts-DC3ujcbX.js +1 -0
- package/web-ui/build/static/dust-Bhm1VBQg.js +1 -0
- package/web-ui/build/static/ebnf-1lmwK0bv.js +1 -0
- package/web-ui/build/static/ebnf-qzzqKVXL.js +1 -0
- package/web-ui/build/static/editorconfig-CCe25wQr.js +1 -0
- package/web-ui/build/static/eiffel-BFOXbwEN.js +1 -0
- package/web-ui/build/static/ejs-D94vVkGZ.js +1 -0
- package/web-ui/build/static/elixir-B2W81YV0.js +1 -0
- package/web-ui/build/static/elixir-CD1szlP_.js +1 -0
- package/web-ui/build/static/elm-BUJhR-kM.js +1 -0
- package/web-ui/build/static/elm-DwLnLHSK.js +1 -0
- package/web-ui/build/static/erb-CcokD9Fu.js +1 -0
- package/web-ui/build/static/erb-lzhmSBEV.js +1 -0
- package/web-ui/build/static/erlang-C0jnu48-.js +1 -0
- package/web-ui/build/static/erlang-CrevXBnJ.js +1 -0
- package/web-ui/build/static/erlang-repl-CNY6yNoO.js +1 -0
- package/web-ui/build/static/etlua-BMO_ICdR.js +1 -0
- package/web-ui/build/static/excel-C5PbLrVC.js +1 -0
- package/web-ui/build/static/excel-formula-CX4pOnnV.js +1 -0
- package/web-ui/build/static/factor-bW3WUpa0.js +1 -0
- package/web-ui/build/static/false-CQx6Crbr.js +1 -0
- package/web-ui/build/static/firestore-security-rules-DT5oRNdf.js +1 -0
- package/web-ui/build/static/fix-C4IWe2LI.js +1 -0
- package/web-ui/build/static/flix-hi9-cLwA.js +1 -0
- package/web-ui/build/static/flow-CkX6DAhF.js +1 -0
- package/web-ui/build/static/fortran-C4rIX-2n.js +1 -0
- package/web-ui/build/static/fortran-Dvu3q_x_.js +1 -0
- package/web-ui/build/static/fsharp-Bwa1UrRI.js +1 -0
- package/web-ui/build/static/fsharp-CvadhLcA.js +1 -0
- package/web-ui/build/static/ftl-eFEI11YV.js +1 -0
- package/web-ui/build/static/gams-BxGx7deQ.js +1 -0
- package/web-ui/build/static/gap-Dcv7bqDd.js +1 -0
- package/web-ui/build/static/gauss-CcVoF4l8.js +1 -0
- package/web-ui/build/static/gcode-B1dc5sh5.js +1 -0
- package/web-ui/build/static/gcode-D5OxRG5t.js +1 -0
- package/web-ui/build/static/gdscript-CL-EA1wk.js +1 -0
- package/web-ui/build/static/gedcom-BbXrNsr0.js +1 -0
- package/web-ui/build/static/gherkin-B2wQMbT2.js +1 -0
- package/web-ui/build/static/gherkin-CnL4Y3j1.js +1 -0
- package/web-ui/build/static/git-DpdutSM5.js +1 -0
- package/web-ui/build/static/glsl-C7sgdZCA.js +1 -0
- package/web-ui/build/static/glsl-DVaNsn1Z.js +1 -0
- package/web-ui/build/static/gml-B_NppoA4.js +1 -0
- package/web-ui/build/static/gml-DFrn75UD.js +1 -0
- package/web-ui/build/static/gn-BhTU_aTW.js +1 -0
- package/web-ui/build/static/go-DKrUPrfb.js +1 -0
- package/web-ui/build/static/go-DLAYIsJl.js +1 -0
- package/web-ui/build/static/go-module-BXY6q1Ug.js +1 -0
- package/web-ui/build/static/golo-CKxjLRpC.js +1 -0
- package/web-ui/build/static/gradle-DN8lsmJj.js +1 -0
- package/web-ui/build/static/graphql-CMb_4vdm.js +1 -0
- package/web-ui/build/static/groovy-Bhi1VPv7.js +1 -0
- package/web-ui/build/static/groovy-D3X3r3EX.js +1 -0
- package/web-ui/build/static/haml-CvOCw9lL.js +1 -0
- package/web-ui/build/static/haml-DYs0wBJO.js +1 -0
- package/web-ui/build/static/handlebars-CLnuKGPm.js +1 -0
- package/web-ui/build/static/handlebars-CYGG_M1h.js +1 -0
- package/web-ui/build/static/haskell-0Ju0XclD.js +1 -0
- package/web-ui/build/static/haskell-CL5jUHSd.js +1 -0
- package/web-ui/build/static/haxe-BghRbBtK.js +1 -0
- package/web-ui/build/static/haxe-dfL7GzPv.js +1 -0
- package/web-ui/build/static/hcl-BZP2QME-.js +1 -0
- package/web-ui/build/static/hlsl-Djp0TiCX.js +1 -0
- package/web-ui/build/static/hoon-Df5gJVqA.js +1 -0
- package/web-ui/build/static/hpkp-Cy-hjB4V.js +1 -0
- package/web-ui/build/static/hsp-CntMIMs4.js +1 -0
- package/web-ui/build/static/hsts-BNBhETNx.js +1 -0
- package/web-ui/build/static/htmlbars-VCCYaDHA.js +1 -0
- package/web-ui/build/static/http-7DbskohZ.js +1 -0
- package/web-ui/build/static/http-BT5FYFAK.js +1 -0
- package/web-ui/build/static/hy-DuGSaK_b.js +1 -0
- package/web-ui/build/static/ichigojam-CjvnJmlr.js +1 -0
- package/web-ui/build/static/icon-BsBz6XP6.js +1 -0
- package/web-ui/build/static/icu-message-format-BEpv_nip.js +1 -0
- package/web-ui/build/static/idris-DiXQdMPU.js +1 -0
- package/web-ui/build/static/iecst-C9tYEzwP.js +1 -0
- package/web-ui/build/static/ignore-DNMpCRPN.js +1 -0
- package/web-ui/build/static/index-B-r71gxO.js +1 -0
- package/web-ui/build/static/index-CTtNXVAZ.js +1217 -0
- package/web-ui/build/static/index-DkBBEGYj.css +1 -0
- package/web-ui/build/static/index-PvzceRzr.js +13 -0
- package/web-ui/build/static/inform7-D38mj1Ty.js +1 -0
- package/web-ui/build/static/inform7-SwIRbrNQ.js +1 -0
- package/web-ui/build/static/ini-B9xO6J_m.js +1 -0
- package/web-ui/build/static/ini-zcp_esam.js +1 -0
- package/web-ui/build/static/io-C-Ay4jvg.js +1 -0
- package/web-ui/build/static/irpf90-BYnkitLq.js +1 -0
- package/web-ui/build/static/isbl-BYtdwd6v.js +1 -0
- package/web-ui/build/static/j-ByZQN5E4.js +1 -0
- package/web-ui/build/static/java-BNtb6JWL.js +1 -0
- package/web-ui/build/static/java-CQZL3scW.js +1 -0
- package/web-ui/build/static/javadoc-BciMZ8jg.js +1 -0
- package/web-ui/build/static/javadoclike-07BOTXmy.js +1 -0
- package/web-ui/build/static/javascript-CViZlg1q.js +1 -0
- package/web-ui/build/static/javastacktrace-bWyAK0up.js +1 -0
- package/web-ui/build/static/jboss-cli-hz5boSGB.js +1 -0
- package/web-ui/build/static/jexl-DdIINSXT.js +1 -0
- package/web-ui/build/static/jolie-CQnDX-f0.js +1 -0
- package/web-ui/build/static/jq-BzhF0CHG.js +1 -0
- package/web-ui/build/static/js-extras-jizEtT14.js +1 -0
- package/web-ui/build/static/js-templates-Dr1BqLAt.js +1 -0
- package/web-ui/build/static/jsdoc-CI-GPi6r.js +1 -0
- package/web-ui/build/static/json-2eDPxnHO.js +1 -0
- package/web-ui/build/static/json-BBqUMOAQ.js +1 -0
- package/web-ui/build/static/json5-CeIoln-Y.js +1 -0
- package/web-ui/build/static/jsonp-DWe9tbr2.js +1 -0
- package/web-ui/build/static/jsstacktrace-aE-go9tq.js +1 -0
- package/web-ui/build/static/jsx-BTXEPQYI.js +1 -0
- package/web-ui/build/static/julia-4VeOirXa.js +1 -0
- package/web-ui/build/static/julia-Da6yHEfz.js +1 -0
- package/web-ui/build/static/julia-repl-CFrizGkE.js +1 -0
- package/web-ui/build/static/keepalived-39SDM4j5.js +1 -0
- package/web-ui/build/static/keyman-DU5yOLYr.js +1 -0
- package/web-ui/build/static/kotlin-DJoqh3HG.js +1 -0
- package/web-ui/build/static/kotlin-DsKd3r_L.js +1 -0
- package/web-ui/build/static/kumir-CO96hby4.js +1 -0
- package/web-ui/build/static/kusto-DyuMf8l-.js +1 -0
- package/web-ui/build/static/lasso-BiPmQTXQ.js +1 -0
- package/web-ui/build/static/latex-Bd1ef5fi.js +1 -0
- package/web-ui/build/static/latex-DUrYkmWb.js +1 -0
- package/web-ui/build/static/latte-BSD-hpi5.js +1 -0
- package/web-ui/build/static/ldif-1ZMSg0qI.js +1 -0
- package/web-ui/build/static/leaf-Cg0eq01F.js +1 -0
- package/web-ui/build/static/less-BKcd1_xh.js +1 -0
- package/web-ui/build/static/less-SB5bcusC.js +1 -0
- package/web-ui/build/static/lilypond-BX_kuAqT.js +1 -0
- package/web-ui/build/static/liquid-C337T5bt.js +1 -0
- package/web-ui/build/static/lisp-B_bJRelF.js +1 -0
- package/web-ui/build/static/lisp-Du04Vdmx.js +1 -0
- package/web-ui/build/static/livecodeserver-BOkA9fV6.js +1 -0
- package/web-ui/build/static/livescript-DkMTCCBM.js +1 -0
- package/web-ui/build/static/livescript-rTaLq5oP.js +1 -0
- package/web-ui/build/static/llvm-BrBlvl5p.js +1 -0
- package/web-ui/build/static/llvm-DQbygw7z.js +1 -0
- package/web-ui/build/static/log-DoAzOt8c.js +1 -0
- package/web-ui/build/static/lolcode-DnB7KhRR.js +1 -0
- package/web-ui/build/static/lsl-DpzE7F5A.js +1 -0
- package/web-ui/build/static/lua-CIceROsO.js +1 -0
- package/web-ui/build/static/lua-DhnvJuMn.js +1 -0
- package/web-ui/build/static/magma-BwjzpKxi.js +1 -0
- package/web-ui/build/static/makefile-D10Y62dl.js +1 -0
- package/web-ui/build/static/makefile-esgkquGi.js +1 -0
- package/web-ui/build/static/markdown-B-Y7Y0Nn.js +1 -0
- package/web-ui/build/static/markdown-Cv3Onm-Q.js +1 -0
- package/web-ui/build/static/markup-templating-B1-9WWYa.js +1 -0
- package/web-ui/build/static/mathematica-gSyKdw2h.js +1 -0
- package/web-ui/build/static/matlab-6i1uXuBx.js +1 -0
- package/web-ui/build/static/matlab-CqcSZ1d9.js +1 -0
- package/web-ui/build/static/maxima-Bc-OnIOQ.js +1 -0
- package/web-ui/build/static/maxscript-Bce44o6c.js +1 -0
- package/web-ui/build/static/mel-0Jk3y-vw.js +1 -0
- package/web-ui/build/static/mel-DmA_8WPg.js +1 -0
- package/web-ui/build/static/mercury-DNdP1u-O.js +1 -0
- package/web-ui/build/static/mermaid-DrLkSIIb.js +1 -0
- package/web-ui/build/static/mipsasm-BIQVs3Ff.js +1 -0
- package/web-ui/build/static/mizar-BD5ZD_Rk.js +1 -0
- package/web-ui/build/static/mizar-DThX8Mdy.js +1 -0
- package/web-ui/build/static/mojolicious-Bra-ClwJ.js +1 -0
- package/web-ui/build/static/mongodb-DirByEEg.js +1 -0
- package/web-ui/build/static/monkey-C-Pvu43G.js +1 -0
- package/web-ui/build/static/monkey-n4IFmaA7.js +1 -0
- package/web-ui/build/static/moonscript-B1DM34lp.js +1 -0
- package/web-ui/build/static/moonscript-B82JBytX.js +1 -0
- package/web-ui/build/static/n1ql-C46iq3Hh.js +1 -0
- package/web-ui/build/static/n1ql-DOs3gJQo.js +1 -0
- package/web-ui/build/static/n4js-CPYgal3G.js +1 -0
- package/web-ui/build/static/nand2tetris-hdl-BhlUIq7M.js +1 -0
- package/web-ui/build/static/naniscript-D1YZXYcf.js +1 -0
- package/web-ui/build/static/nasm-2-TtCBo4.js +1 -0
- package/web-ui/build/static/neon-BzoXMDea.js +1 -0
- package/web-ui/build/static/nevod-DW_87wHj.js +1 -0
- package/web-ui/build/static/nginx-BgieYUhk.js +1 -0
- package/web-ui/build/static/nginx-DW0RVJbs.js +1 -0
- package/web-ui/build/static/nim-BbTa7YZN.js +1 -0
- package/web-ui/build/static/nim-VdXk3QT9.js +1 -0
- package/web-ui/build/static/nix-3tNNprEI.js +1 -0
- package/web-ui/build/static/nix-BDghlfzh.js +1 -0
- package/web-ui/build/static/node-repl-BBLv3tyt.js +1 -0
- package/web-ui/build/static/nsis-DxjfnSO8.js +1 -0
- package/web-ui/build/static/nsis-FY5xiiar.js +1 -0
- package/web-ui/build/static/objectivec-CXhf_sp_.js +1 -0
- package/web-ui/build/static/objectivec-DcRKjWcd.js +1 -0
- package/web-ui/build/static/ocaml-BLRL6Zro.js +1 -0
- package/web-ui/build/static/ocaml-C4S4QQtS.js +1 -0
- package/web-ui/build/static/opencl-ruEAYetM.js +1 -0
- package/web-ui/build/static/openqasm-D6r_FwIh.js +1 -0
- package/web-ui/build/static/openscad-BEPjoj_N.js +1 -0
- package/web-ui/build/static/oxygene-A61yc5Or.js +1 -0
- package/web-ui/build/static/oz-DICidCTs.js +1 -0
- package/web-ui/build/static/parigp-MjTNwy2s.js +1 -0
- package/web-ui/build/static/parser-DmI7lg_r.js +1 -0
- package/web-ui/build/static/parser3-Bv9kXAib.js +1 -0
- package/web-ui/build/static/pascal-B23PBLTj.js +1 -0
- package/web-ui/build/static/pascaligo-CPIJtX2C.js +1 -0
- package/web-ui/build/static/pcaxis-Bsj_6x8j.js +1 -0
- package/web-ui/build/static/peoplecode-VvQbMjsD.js +1 -0
- package/web-ui/build/static/perl-Cr6Y9-hl.js +1 -0
- package/web-ui/build/static/perl-D37oTJip.js +1 -0
- package/web-ui/build/static/pf-BKHaWcGm.js +1 -0
- package/web-ui/build/static/pgsql-ChusgWw2.js +1 -0
- package/web-ui/build/static/php-3Qr4hNV1.js +1 -0
- package/web-ui/build/static/php-CgxeEh4Y.js +1 -0
- package/web-ui/build/static/php-extras-DeLqwT6H.js +1 -0
- package/web-ui/build/static/php-template-DcOJxuIf.js +1 -0
- package/web-ui/build/static/phpdoc-amFph5Ax.js +1 -0
- package/web-ui/build/static/plaintext-mqBcO1hG.js +1 -0
- package/web-ui/build/static/plsql-ioyqfxP7.js +1 -0
- package/web-ui/build/static/pony-nxjy8Qot.js +1 -0
- package/web-ui/build/static/powerquery-Ci_Fxyg8.js +1 -0
- package/web-ui/build/static/powershell-CB_GgRqr.js +1 -0
- package/web-ui/build/static/powershell-au4fYIm7.js +1 -0
- package/web-ui/build/static/processing-Bkd3f-Wz.js +1 -0
- package/web-ui/build/static/processing-PgCPZm30.js +1 -0
- package/web-ui/build/static/profile-C2GBY6C9.js +1 -0
- package/web-ui/build/static/prolog-BRjYwjIO.js +1 -0
- package/web-ui/build/static/prolog-BheGlH8Q.js +1 -0
- package/web-ui/build/static/promql-CtCmTKys.js +1 -0
- package/web-ui/build/static/properties-BpLqVZha.js +1 -0
- package/web-ui/build/static/properties-UQxavHUY.js +1 -0
- package/web-ui/build/static/protobuf-BSuul6Uw.js +1 -0
- package/web-ui/build/static/protobuf-CLRi8VTE.js +1 -0
- package/web-ui/build/static/psl-CJsJilqO.js +1 -0
- package/web-ui/build/static/pug-5BY6sdv1.js +1 -0
- package/web-ui/build/static/puppet-DBg45gHV.js +1 -0
- package/web-ui/build/static/puppet-DPANCbOj.js +1 -0
- package/web-ui/build/static/pure-Cn4p-7Bj.js +1 -0
- package/web-ui/build/static/purebasic-CoXbIzZJ.js +1 -0
- package/web-ui/build/static/purebasic-DZ_eLoUV.js +1 -0
- package/web-ui/build/static/purescript-B98GoUb_.js +1 -0
- package/web-ui/build/static/python-B-Lm1OME.js +1 -0
- package/web-ui/build/static/python-C_ApFGS1.js +1 -0
- package/web-ui/build/static/python-repl-CJW5_RON.js +1 -0
- package/web-ui/build/static/q-BB2BYhxG.js +1 -0
- package/web-ui/build/static/q-DVqo_ScG.js +1 -0
- package/web-ui/build/static/qml-Co-8g096.js +1 -0
- package/web-ui/build/static/qml-Du0WFcoy.js +1 -0
- package/web-ui/build/static/qore-C6XBzy3U.js +1 -0
- package/web-ui/build/static/qsharp-BCMklAuq.js +1 -0
- package/web-ui/build/static/r-B5CGUQwN.js +1 -0
- package/web-ui/build/static/r-Dxhot-za.js +1 -0
- package/web-ui/build/static/racket-C0dCdrKh.js +1 -0
- package/web-ui/build/static/reason-DGJ1fFJs.js +1 -0
- package/web-ui/build/static/reasonml-gt_AvBg7.js +1 -0
- package/web-ui/build/static/regex-B5iNH8MZ.js +1 -0
- package/web-ui/build/static/rego-hfPajYet.js +1 -0
- package/web-ui/build/static/renpy-BkG5aM4I.js +1 -0
- package/web-ui/build/static/rest-C4uwtrF8.js +1 -0
- package/web-ui/build/static/rib-D32ew8Y7.js +1 -0
- package/web-ui/build/static/rip-BIEbWzxe.js +1 -0
- package/web-ui/build/static/roboconf-CMN8BoHf.js +1 -0
- package/web-ui/build/static/roboconf-GVMh3ioj.js +1 -0
- package/web-ui/build/static/robotframework-CUQybJQ9.js +1 -0
- package/web-ui/build/static/routeros-DUEdLmuc.js +1 -0
- package/web-ui/build/static/rsl-BsAePIwQ.js +1 -0
- package/web-ui/build/static/ruby-CZMMjJFw.js +1 -0
- package/web-ui/build/static/ruby-WOVZyoXO.js +1 -0
- package/web-ui/build/static/ruleslanguage-xV-HszUl.js +1 -0
- package/web-ui/build/static/rust-Da9GRxLz.js +1 -0
- package/web-ui/build/static/rust-uCND428m.js +1 -0
- package/web-ui/build/static/sas-BW15NPzf.js +1 -0
- package/web-ui/build/static/sas-DCx9gext.js +1 -0
- package/web-ui/build/static/sass-BMD7eETo.js +1 -0
- package/web-ui/build/static/scala-0wnxLTlF.js +1 -0
- package/web-ui/build/static/scala-D3Hk-q5-.js +1 -0
- package/web-ui/build/static/scheme-Ci9QOUcD.js +1 -0
- package/web-ui/build/static/scheme-CtqjB_HN.js +1 -0
- package/web-ui/build/static/scilab-CnITQd23.js +1 -0
- package/web-ui/build/static/scss-DCceV6xw.js +1 -0
- package/web-ui/build/static/scss-N5EuPQOS.js +1 -0
- package/web-ui/build/static/shell-BegJTton.js +1 -0
- package/web-ui/build/static/shell-session-BHBoosfJ.js +1 -0
- package/web-ui/build/static/smali-CoHePNQf.js +1 -0
- package/web-ui/build/static/smali-D64W1f0Y.js +1 -0
- package/web-ui/build/static/smalltalk-CagI-Ky8.js +1 -0
- package/web-ui/build/static/smalltalk-DHLuWDjp.js +1 -0
- package/web-ui/build/static/smarty-CSS2XBuu.js +1 -0
- package/web-ui/build/static/sml-D8Oyp9xr.js +1 -0
- package/web-ui/build/static/sml-DvC_VDmX.js +1 -0
- package/web-ui/build/static/solidity-DVkeulrL.js +1 -0
- package/web-ui/build/static/solution-file-Bd7qWzoo.js +1 -0
- package/web-ui/build/static/soy-BRSlVWf7.js +1 -0
- package/web-ui/build/static/sparql-DNnCQmqM.js +1 -0
- package/web-ui/build/static/splunk-spl-DXCDUv2Y.js +1 -0
- package/web-ui/build/static/sqf-C_IKzP5b.js +1 -0
- package/web-ui/build/static/sqf-DBqlUGoG.js +1 -0
- package/web-ui/build/static/sql-Dt3ZutCc.js +1 -0
- package/web-ui/build/static/sql-q0UMLqb7.js +1 -0
- package/web-ui/build/static/sql_more-DAuY5p3F.js +1 -0
- package/web-ui/build/static/squirrel-CgQZeaNT.js +1 -0
- package/web-ui/build/static/stan-D5kYsid7.js +1 -0
- package/web-ui/build/static/stan-JSHToKMA.js +1 -0
- package/web-ui/build/static/stata-DRVhVjVb.js +1 -0
- package/web-ui/build/static/step21-C7h5ssgs.js +1 -0
- package/web-ui/build/static/stylus-BXIDNFUe.js +1 -0
- package/web-ui/build/static/stylus-CyMBrStz.js +1 -0
- package/web-ui/build/static/subunit-Lbpuvy4t.js +1 -0
- package/web-ui/build/static/swift-BCxWOc8n.js +1 -0
- package/web-ui/build/static/swift-B_YEL6eF.js +1 -0
- package/web-ui/build/static/systemd-_zWfs8U5.js +1 -0
- package/web-ui/build/static/t4-cs-BCiVX6dp.js +1 -0
- package/web-ui/build/static/t4-templating-CDm61rWh.js +1 -0
- package/web-ui/build/static/t4-vb-OO2oZZrL.js +1 -0
- package/web-ui/build/static/taggerscript-CkXxiITO.js +1 -0
- package/web-ui/build/static/tap-C612JPhJ.js +1 -0
- package/web-ui/build/static/tap-J-zR66jL.js +1 -0
- package/web-ui/build/static/tcl-DIGan5K8.js +1 -0
- package/web-ui/build/static/tcl-SFVWFwbb.js +1 -0
- package/web-ui/build/static/textile-D0WxA5g8.js +1 -0
- package/web-ui/build/static/thrift-jboo4tJl.js +1 -0
- package/web-ui/build/static/toml-DIK32ROb.js +1 -0
- package/web-ui/build/static/tp-Bhs1iGD3.js +1 -0
- package/web-ui/build/static/tremor-4d_juLiN.js +1 -0
- package/web-ui/build/static/tsx-hEN3qQzd.js +1 -0
- package/web-ui/build/static/tt2-WU6EuPNO.js +1 -0
- package/web-ui/build/static/turtle-CUM3xwNI.js +1 -0
- package/web-ui/build/static/twig-B9JwTKv9.js +1 -0
- package/web-ui/build/static/twig-Crv6BtK7.js +1 -0
- package/web-ui/build/static/typescript-BmabW_ur.js +1 -0
- package/web-ui/build/static/typescript-oMKx2dph.js +1 -0
- package/web-ui/build/static/typoscript-X48MNTeK.js +1 -0
- package/web-ui/build/static/unrealscript-qnu9Ogmz.js +1 -0
- package/web-ui/build/static/uorazor-BicTvjGt.js +1 -0
- package/web-ui/build/static/uri-CyRoMB-u.js +1 -0
- package/web-ui/build/static/v-BDM6ZJR7.js +1 -0
- package/web-ui/build/static/vala-BWCf7DTx.js +1 -0
- package/web-ui/build/static/vala-COL5roWV.js +1 -0
- package/web-ui/build/static/vbnet-BHPgkiip.js +1 -0
- package/web-ui/build/static/vbnet-BadWmTKs.js +1 -0
- package/web-ui/build/static/vbscript-BfUpIAaV.js +1 -0
- package/web-ui/build/static/vbscript-html-BBR6zcvV.js +1 -0
- package/web-ui/build/static/velocity-k4gGPuiP.js +1 -0
- package/web-ui/build/static/verilog-BoNroxW8.js +1 -0
- package/web-ui/build/static/verilog-C7cplLIi.js +1 -0
- package/web-ui/build/static/vhdl-BrKkx69g.js +1 -0
- package/web-ui/build/static/vhdl-CWacsAXR.js +1 -0
- package/web-ui/build/static/vim-BcdueaEC.js +1 -0
- package/web-ui/build/static/vim-BwsUolG_.js +1 -0
- package/web-ui/build/static/visual-basic-DTXlX5HN.js +1 -0
- package/web-ui/build/static/warpscript-2w0_2KsB.js +1 -0
- package/web-ui/build/static/wasm-BPaXQO-A.js +1 -0
- package/web-ui/build/static/web-idl-BoCTFQod.js +1 -0
- package/web-ui/build/static/wiki-BkkCi9wm.js +1 -0
- package/web-ui/build/static/wolfram-CvRNTaAX.js +1 -0
- package/web-ui/build/static/wren-Bz8Smtz-.js +1 -0
- package/web-ui/build/static/x86asm-BM83B0N_.js +1 -0
- package/web-ui/build/static/xeora-BjuDukl7.js +1 -0
- package/web-ui/build/static/xl-ByiuKWwm.js +1 -0
- package/web-ui/build/static/xml-Dut2p53G.js +1 -0
- package/web-ui/build/static/xml-doc-CxgwiuaA.js +1 -0
- package/web-ui/build/static/xojo-CBqUB8JI.js +1 -0
- package/web-ui/build/static/xquery-D-agM4jx.js +1 -0
- package/web-ui/build/static/xquery-DL_eetrQ.js +1 -0
- package/web-ui/build/static/yaml-DZ7HVZSe.js +1 -0
- package/web-ui/build/static/yaml-DatJAv7_.js +1 -0
- package/web-ui/build/static/yang-D0nrKE-r.js +1 -0
- package/web-ui/build/static/zephir--M2g15-k.js +1 -0
- package/web-ui/build/static/zig-CK6rUH8E.js +1 -0
- package/web-ui/build/static/1c-DGpIT7i5.js +0 -1
- package/web-ui/build/static/abap-5wFDdWLh.js +0 -1
- package/web-ui/build/static/abnf-BP1dpNSE.js +0 -1
- package/web-ui/build/static/abnf-DBEIAl8g.js +0 -1
- package/web-ui/build/static/accesslog-CWSM_T5E.js +0 -1
- package/web-ui/build/static/actionscript-DONkco1J.js +0 -1
- package/web-ui/build/static/actionscript-FqBYk5er.js +0 -1
- package/web-ui/build/static/ada-C2JLRIaM.js +0 -1
- package/web-ui/build/static/ada-gKiygTRK.js +0 -1
- package/web-ui/build/static/agda-CkSODqK2.js +0 -1
- package/web-ui/build/static/al-BJ_YR6p7.js +0 -1
- package/web-ui/build/static/angelscript-Dg2byMGg.js +0 -1
- package/web-ui/build/static/antlr4-BnpyaFNr.js +0 -1
- package/web-ui/build/static/apache-Dffxsd7O.js +0 -1
- package/web-ui/build/static/apacheconf-DLitjtWj.js +0 -1
- package/web-ui/build/static/apex-Drr_IvU2.js +0 -1
- package/web-ui/build/static/apl-CF6qxmXG.js +0 -1
- package/web-ui/build/static/applescript-CjOlw3b_.js +0 -1
- package/web-ui/build/static/applescript-DjkSl1Ry.js +0 -1
- package/web-ui/build/static/aql-KwVmK1gP.js +0 -1
- package/web-ui/build/static/arcade-CENSXx0R.js +0 -1
- package/web-ui/build/static/arduino-B3Ta9Fll.js +0 -1
- package/web-ui/build/static/arduino-CzcsaB9_.js +0 -1
- package/web-ui/build/static/arff-CMJSVt_O.js +0 -1
- package/web-ui/build/static/armasm-0zSgSPB4.js +0 -1
- package/web-ui/build/static/asciidoc-B8K5ctWq.js +0 -1
- package/web-ui/build/static/asciidoc-bk2Sg6b6.js +0 -1
- package/web-ui/build/static/asm6502-ji6zm4FQ.js +0 -1
- package/web-ui/build/static/asmatmel-DJqObM4Y.js +0 -1
- package/web-ui/build/static/aspectj-DqQKI7J5.js +0 -1
- package/web-ui/build/static/aspnet-9cenTxW7.js +0 -1
- package/web-ui/build/static/autohotkey-C6EhiZvl.js +0 -1
- package/web-ui/build/static/autohotkey-sTGJOvMM.js +0 -1
- package/web-ui/build/static/autoit-B0Im8iQ1.js +0 -1
- package/web-ui/build/static/autoit-CO6pUD0H.js +0 -1
- package/web-ui/build/static/avisynth-OvOHTfj5.js +0 -1
- package/web-ui/build/static/avrasm-BLWZ5Mye.js +0 -1
- package/web-ui/build/static/avro-idl-BB2ODvnw.js +0 -1
- package/web-ui/build/static/awk-_jhMabQ0.js +0 -1
- package/web-ui/build/static/axapta-DdBRgoYy.js +0 -1
- package/web-ui/build/static/bash-CsaRGXBQ.js +0 -1
- package/web-ui/build/static/bash-CxLFkwAC.js +0 -1
- package/web-ui/build/static/basic-BJyy7JJE.js +0 -1
- package/web-ui/build/static/basic-CrMb-gv0.js +0 -1
- package/web-ui/build/static/batch-BvcykMe5.js +0 -1
- package/web-ui/build/static/bbcode-EOBuY5Y6.js +0 -1
- package/web-ui/build/static/bicep-QkDJBA34.js +0 -1
- package/web-ui/build/static/birb-TAOxKurn.js +0 -1
- package/web-ui/build/static/bison-BEK6cnad.js +0 -1
- package/web-ui/build/static/bnf-DfEODxsr.js +0 -1
- package/web-ui/build/static/bnf-DhbMjsuA.js +0 -1
- package/web-ui/build/static/brainfuck-BoVocOa7.js +0 -1
- package/web-ui/build/static/brainfuck-DDC5QXPK.js +0 -1
- package/web-ui/build/static/brightscript-DNN598w2.js +0 -1
- package/web-ui/build/static/bro-Cn_jjZ8P.js +0 -1
- package/web-ui/build/static/bsl-CMCN75Gu.js +0 -1
- package/web-ui/build/static/c-DbOGQnEJ.js +0 -1
- package/web-ui/build/static/c-kggwYFsy.js +0 -1
- package/web-ui/build/static/c-like-BIsuUvof.js +0 -1
- package/web-ui/build/static/cal-DpgMsBZE.js +0 -1
- package/web-ui/build/static/capnproto-C1AHYI-M.js +0 -1
- package/web-ui/build/static/ceylon-pvJffDe1.js +0 -1
- package/web-ui/build/static/cfscript-C1qylu52.js +0 -1
- package/web-ui/build/static/chaiscript-D417WKRI.js +0 -1
- package/web-ui/build/static/cil-CjbZHbcY.js +0 -1
- package/web-ui/build/static/clean-Dvc6R-F2.js +0 -1
- package/web-ui/build/static/clojure-CSVRQPMQ.js +0 -1
- package/web-ui/build/static/clojure-ig1Vkg7X.js +0 -1
- package/web-ui/build/static/clojure-repl-C1uyEabk.js +0 -1
- package/web-ui/build/static/cmake-DSbVcAB3.js +0 -1
- package/web-ui/build/static/cmake-Zp8kPwnH.js +0 -1
- package/web-ui/build/static/cobol-OsZSiK_P.js +0 -1
- package/web-ui/build/static/coffeescript-D8r0416S.js +0 -1
- package/web-ui/build/static/coffeescript-DCpgClxh.js +0 -1
- package/web-ui/build/static/concurnas-DKnsxUOc.js +0 -1
- package/web-ui/build/static/coq-BQFlywVI.js +0 -1
- package/web-ui/build/static/coq-BvS9mQB2.js +0 -1
- package/web-ui/build/static/cos-D3ze2791.js +0 -1
- package/web-ui/build/static/cpp-Bw-cV3P1.js +0 -1
- package/web-ui/build/static/cpp-vi1p7XpB.js +0 -1
- package/web-ui/build/static/crmsh-BClnJTeQ.js +0 -1
- package/web-ui/build/static/crystal-DGzOUYZq.js +0 -1
- package/web-ui/build/static/crystal-DMzk6EvA.js +0 -1
- package/web-ui/build/static/csharp-BTom8s2X.js +0 -1
- package/web-ui/build/static/csharp-Cp2V3jfR.js +0 -1
- package/web-ui/build/static/cshtml-Dmtt9Kto.js +0 -1
- package/web-ui/build/static/csp-WPVsLe9_.js +0 -1
- package/web-ui/build/static/csp-qddj5fu_.js +0 -1
- package/web-ui/build/static/css-B0FAm7kj.js +0 -1
- package/web-ui/build/static/css-extras-Bx3pvjiG.js +0 -1
- package/web-ui/build/static/csv-CH-edgS5.js +0 -1
- package/web-ui/build/static/cypher-c3G8Leew.js +0 -1
- package/web-ui/build/static/d-BMDSy22_.js +0 -1
- package/web-ui/build/static/d-BdH4oW8-.js +0 -1
- package/web-ui/build/static/dart-C-r72q-O.js +0 -1
- package/web-ui/build/static/dart-CwpBMrKa.js +0 -1
- package/web-ui/build/static/dataweave-BPvqdt4k.js +0 -1
- package/web-ui/build/static/dax-Eyy6ixcN.js +0 -1
- package/web-ui/build/static/delphi-DhEbPj_5.js +0 -1
- package/web-ui/build/static/dhall-Ct1L8sN1.js +0 -1
- package/web-ui/build/static/diff-CSTqCgwn.js +0 -1
- package/web-ui/build/static/diff-Da97B5vW.js +0 -1
- package/web-ui/build/static/django-DGit_lCg.js +0 -1
- package/web-ui/build/static/django-DPgqFB8k.js +0 -1
- package/web-ui/build/static/dns-DUyXuZ-a.js +0 -1
- package/web-ui/build/static/dns-zone-file-D79MDxVG.js +0 -1
- package/web-ui/build/static/docker-DTiy4o38.js +0 -1
- package/web-ui/build/static/dockerfile-CvwPP8wE.js +0 -1
- package/web-ui/build/static/dos-CaIUWxvb.js +0 -1
- package/web-ui/build/static/dot-D3504w6Y.js +0 -1
- package/web-ui/build/static/dsconfig-Smy1eeX_.js +0 -1
- package/web-ui/build/static/dts-DyTYSXZj.js +0 -1
- package/web-ui/build/static/dust-CrJyi6qA.js +0 -1
- package/web-ui/build/static/ebnf-C8nqfkBH.js +0 -1
- package/web-ui/build/static/ebnf-Cuh5Vh2-.js +0 -1
- package/web-ui/build/static/editorconfig-C7pTGl6n.js +0 -1
- package/web-ui/build/static/eiffel-C75MSJCA.js +0 -1
- package/web-ui/build/static/ejs-Dyo7DF5w.js +0 -1
- package/web-ui/build/static/elixir-D4yJefOc.js +0 -1
- package/web-ui/build/static/elixir-DKRow2SJ.js +0 -1
- package/web-ui/build/static/elm-CgbdDlkT.js +0 -1
- package/web-ui/build/static/elm-D3N-UgU0.js +0 -1
- package/web-ui/build/static/erb-BsITh8qW.js +0 -1
- package/web-ui/build/static/erb-lY_LyKyS.js +0 -1
- package/web-ui/build/static/erlang-BCnPiYmB.js +0 -1
- package/web-ui/build/static/erlang-JEghiPXc.js +0 -1
- package/web-ui/build/static/erlang-repl-DzU97ugC.js +0 -1
- package/web-ui/build/static/etlua-CsBo8cJa.js +0 -1
- package/web-ui/build/static/excel-formula-C2piiCYa.js +0 -1
- package/web-ui/build/static/excel-kqNypwQD.js +0 -1
- package/web-ui/build/static/factor-DZTOhkyU.js +0 -1
- package/web-ui/build/static/false-yLjhfaSw.js +0 -1
- package/web-ui/build/static/firestore-security-rules-oaQNoH8l.js +0 -1
- package/web-ui/build/static/fix-C9IfnTuS.js +0 -1
- package/web-ui/build/static/flix-EmJ_JhPo.js +0 -1
- package/web-ui/build/static/flow-DCUl7IAQ.js +0 -1
- package/web-ui/build/static/fortran-DvyxJmFN.js +0 -1
- package/web-ui/build/static/fortran-EEP9R3S5.js +0 -1
- package/web-ui/build/static/fsharp-D_98s3RX.js +0 -1
- package/web-ui/build/static/fsharp-Dt9jOO5G.js +0 -1
- package/web-ui/build/static/ftl-C8gMHWLo.js +0 -1
- package/web-ui/build/static/gams-BHxVPb4z.js +0 -1
- package/web-ui/build/static/gap-DFtyHk-q.js +0 -1
- package/web-ui/build/static/gauss-BwhJWUcg.js +0 -1
- package/web-ui/build/static/gcode-BvmXwp09.js +0 -1
- package/web-ui/build/static/gcode-gWcD6Vc7.js +0 -1
- package/web-ui/build/static/gdscript-btHoX8RE.js +0 -1
- package/web-ui/build/static/gedcom-MgPs9iqh.js +0 -1
- package/web-ui/build/static/gherkin-B9c_Q16A.js +0 -1
- package/web-ui/build/static/gherkin-BvOgkK6h.js +0 -1
- package/web-ui/build/static/git-D9XWOVcQ.js +0 -1
- package/web-ui/build/static/glsl-CshBHxHY.js +0 -1
- package/web-ui/build/static/glsl-fNRUMTDr.js +0 -1
- package/web-ui/build/static/gml-B78deHK8.js +0 -1
- package/web-ui/build/static/gml-Cj7d2u8O.js +0 -1
- package/web-ui/build/static/gn-CJLD-mF1.js +0 -1
- package/web-ui/build/static/go-CT93BEkL.js +0 -1
- package/web-ui/build/static/go-CTTlNuQO.js +0 -1
- package/web-ui/build/static/go-module-BgnXboUE.js +0 -1
- package/web-ui/build/static/golo-2S5tXS-l.js +0 -1
- package/web-ui/build/static/gradle-8W8DCcWJ.js +0 -1
- package/web-ui/build/static/graphql-DZfp6FNU.js +0 -1
- package/web-ui/build/static/groovy-BfsyMb3X.js +0 -1
- package/web-ui/build/static/groovy-Dxov7ENz.js +0 -1
- package/web-ui/build/static/haml-BlUFsdVV.js +0 -1
- package/web-ui/build/static/haml-CjVj6vvW.js +0 -1
- package/web-ui/build/static/handlebars-DxrQFkyA.js +0 -1
- package/web-ui/build/static/handlebars-FE6fotYl.js +0 -1
- package/web-ui/build/static/haskell-B6z0RCD_.js +0 -1
- package/web-ui/build/static/haskell-JBFmJTRy.js +0 -1
- package/web-ui/build/static/haxe-BtMZMi-_.js +0 -1
- package/web-ui/build/static/haxe-C1J8n-fH.js +0 -1
- package/web-ui/build/static/hcl-DJP-bFWE.js +0 -1
- package/web-ui/build/static/hlsl-DrGjhs1b.js +0 -1
- package/web-ui/build/static/hoon-Cg-ZhqIT.js +0 -1
- package/web-ui/build/static/hpkp-D07vgmoZ.js +0 -1
- package/web-ui/build/static/hsp-CsypPWoA.js +0 -1
- package/web-ui/build/static/hsts-B6DMRxvP.js +0 -1
- package/web-ui/build/static/htmlbars-BI7_Hw4e.js +0 -1
- package/web-ui/build/static/http-90ihEi4s.js +0 -1
- package/web-ui/build/static/http-Dp4QXj9E.js +0 -1
- package/web-ui/build/static/hy-BMgKvP4K.js +0 -1
- package/web-ui/build/static/ichigojam-D6wKvJDb.js +0 -1
- package/web-ui/build/static/icon-CrgkmCwl.js +0 -1
- package/web-ui/build/static/icu-message-format-Bi2JxCXs.js +0 -1
- package/web-ui/build/static/idris-DbUsyZt5.js +0 -1
- package/web-ui/build/static/iecst-CQZ9t8fW.js +0 -1
- package/web-ui/build/static/ignore-BaFgtNMs.js +0 -1
- package/web-ui/build/static/index-DEWSWosh.css +0 -1
- package/web-ui/build/static/index-Di1bjCFA.js +0 -13
- package/web-ui/build/static/index-otR_WSsL.js +0 -1
- package/web-ui/build/static/index-whZPU4as.js +0 -1183
- package/web-ui/build/static/inform7-ClyX1Gro.js +0 -1
- package/web-ui/build/static/inform7-tZHBS5XP.js +0 -1
- package/web-ui/build/static/ini-BrP5JNYL.js +0 -1
- package/web-ui/build/static/ini-CVkrAhwV.js +0 -1
- package/web-ui/build/static/io-BJ1Y6Bdc.js +0 -1
- package/web-ui/build/static/irpf90-fjjcKS_8.js +0 -1
- package/web-ui/build/static/isbl-ClpvfUIz.js +0 -1
- package/web-ui/build/static/j-CICW77xS.js +0 -1
- package/web-ui/build/static/java-B9DFK-0E.js +0 -1
- package/web-ui/build/static/java-BL_6rYko.js +0 -1
- package/web-ui/build/static/javadoc-Cc4HKpKK.js +0 -1
- package/web-ui/build/static/javadoclike-CgNkUDOm.js +0 -1
- package/web-ui/build/static/javascript-CM40ZECq.js +0 -1
- package/web-ui/build/static/javastacktrace-BHSqXfG5.js +0 -1
- package/web-ui/build/static/jboss-cli-Bv5NhVSZ.js +0 -1
- package/web-ui/build/static/jexl--Ohk_keA.js +0 -1
- package/web-ui/build/static/jolie-DMTN5Vdf.js +0 -1
- package/web-ui/build/static/jq-nXRLldXX.js +0 -1
- package/web-ui/build/static/js-extras-eLwv3frs.js +0 -1
- package/web-ui/build/static/js-templates-Ca0owlrg.js +0 -1
- package/web-ui/build/static/jsdoc-KERXp0da.js +0 -1
- package/web-ui/build/static/json-BTjLaRsy.js +0 -1
- package/web-ui/build/static/json-p7pU0qdW.js +0 -1
- package/web-ui/build/static/json5-Cxjy1udc.js +0 -1
- package/web-ui/build/static/jsonp-CO52H7Gy.js +0 -1
- package/web-ui/build/static/jsstacktrace-8YKfoyJP.js +0 -1
- package/web-ui/build/static/jsx-Ct_05KbM.js +0 -1
- package/web-ui/build/static/julia-23I1ubCE.js +0 -1
- package/web-ui/build/static/julia-d8rVGed_.js +0 -1
- package/web-ui/build/static/julia-repl-mwnHedW_.js +0 -1
- package/web-ui/build/static/keepalived-E85Rx_fF.js +0 -1
- package/web-ui/build/static/keyman-aWd3QUDq.js +0 -1
- package/web-ui/build/static/kotlin-Cu370hQq.js +0 -1
- package/web-ui/build/static/kotlin-DoJ2WnmZ.js +0 -1
- package/web-ui/build/static/kumir-oiOgqcQO.js +0 -1
- package/web-ui/build/static/kusto-Bp-B02K5.js +0 -1
- package/web-ui/build/static/lasso-BxoQVwOO.js +0 -1
- package/web-ui/build/static/latex-CANm5vsX.js +0 -1
- package/web-ui/build/static/latex-PMroeNch.js +0 -1
- package/web-ui/build/static/latte-2ErU_2XF.js +0 -1
- package/web-ui/build/static/ldif-ChPn_F7o.js +0 -1
- package/web-ui/build/static/leaf-UkCugDgG.js +0 -1
- package/web-ui/build/static/less-CCH5RA89.js +0 -1
- package/web-ui/build/static/less-CGZbVU1g.js +0 -1
- package/web-ui/build/static/lilypond-BoyM37sv.js +0 -1
- package/web-ui/build/static/liquid-DGJVpRBi.js +0 -1
- package/web-ui/build/static/lisp-93nne61u.js +0 -1
- package/web-ui/build/static/lisp-DYjIRsXz.js +0 -1
- package/web-ui/build/static/livecodeserver-CfNaxIE4.js +0 -1
- package/web-ui/build/static/livescript-C8kDlQkz.js +0 -1
- package/web-ui/build/static/livescript-CoarnRHq.js +0 -1
- package/web-ui/build/static/llvm-CBVyNmAh.js +0 -1
- package/web-ui/build/static/llvm-DGxq8a7u.js +0 -1
- package/web-ui/build/static/log-BivgwFql.js +0 -1
- package/web-ui/build/static/lolcode-l5sK2cZz.js +0 -1
- package/web-ui/build/static/lsl-Xm44xLRQ.js +0 -1
- package/web-ui/build/static/lua-CGvrzfKp.js +0 -1
- package/web-ui/build/static/lua-nHwXeY4c.js +0 -1
- package/web-ui/build/static/magma-DmNItmna.js +0 -1
- package/web-ui/build/static/makefile-CKJNNHGb.js +0 -1
- package/web-ui/build/static/makefile-DI6y5Qml.js +0 -1
- package/web-ui/build/static/markdown-BgpbxKd-.js +0 -1
- package/web-ui/build/static/markdown-CvcxA4yk.js +0 -1
- package/web-ui/build/static/markup-templating-DijqesiA.js +0 -1
- package/web-ui/build/static/mathematica-Cxll1Q10.js +0 -1
- package/web-ui/build/static/matlab-BJo2T1A-.js +0 -1
- package/web-ui/build/static/matlab-C6DlZX4l.js +0 -1
- package/web-ui/build/static/maxima-DJXO4sbL.js +0 -1
- package/web-ui/build/static/maxscript-DdLpUYBs.js +0 -1
- package/web-ui/build/static/mel-BIpfnSyZ.js +0 -1
- package/web-ui/build/static/mel-BYcTUZJW.js +0 -1
- package/web-ui/build/static/mercury-C_LSpbD8.js +0 -1
- package/web-ui/build/static/mermaid-D9yBWnrT.js +0 -1
- package/web-ui/build/static/mipsasm-nR_K2Ue-.js +0 -1
- package/web-ui/build/static/mizar-BeLUPncD.js +0 -1
- package/web-ui/build/static/mizar-BesIbZd9.js +0 -1
- package/web-ui/build/static/mojolicious-cBx3OWa-.js +0 -1
- package/web-ui/build/static/mongodb-DTWKy9ac.js +0 -1
- package/web-ui/build/static/monkey-B72bZC3c.js +0 -1
- package/web-ui/build/static/monkey-G9XELYPQ.js +0 -1
- package/web-ui/build/static/moonscript-BXYVQiqj.js +0 -1
- package/web-ui/build/static/moonscript-sDd-5knz.js +0 -1
- package/web-ui/build/static/n1ql-0vKSfFAO.js +0 -1
- package/web-ui/build/static/n1ql-C9_BSZfz.js +0 -1
- package/web-ui/build/static/n4js-B7Ct8dds.js +0 -1
- package/web-ui/build/static/nand2tetris-hdl-p9gpphTM.js +0 -1
- package/web-ui/build/static/naniscript-6ZVr8Aug.js +0 -1
- package/web-ui/build/static/nasm-Ca73yTUt.js +0 -1
- package/web-ui/build/static/neon-DNP49oyX.js +0 -1
- package/web-ui/build/static/nevod-Qhgt7Bce.js +0 -1
- package/web-ui/build/static/nginx-D5e7lu62.js +0 -1
- package/web-ui/build/static/nginx-DobnyESB.js +0 -1
- package/web-ui/build/static/nim-BPBivUOV.js +0 -1
- package/web-ui/build/static/nim-Baoug1Wa.js +0 -1
- package/web-ui/build/static/nix-CSPTQs5y.js +0 -1
- package/web-ui/build/static/nix-Dk4eNw49.js +0 -1
- package/web-ui/build/static/node-repl-NJNL8VFR.js +0 -1
- package/web-ui/build/static/nsis-BZ0oMzEw.js +0 -1
- package/web-ui/build/static/nsis-CKPCjtCU.js +0 -1
- package/web-ui/build/static/objectivec-BkfIRhhV.js +0 -1
- package/web-ui/build/static/objectivec-CnQgqhbJ.js +0 -1
- package/web-ui/build/static/ocaml-9rGNzRrK.js +0 -1
- package/web-ui/build/static/ocaml-CTolCqxL.js +0 -1
- package/web-ui/build/static/opencl-9Q3vRDxv.js +0 -1
- package/web-ui/build/static/openqasm-D2QiuFBp.js +0 -1
- package/web-ui/build/static/openscad-C3HyuzpB.js +0 -1
- package/web-ui/build/static/oxygene-4gi-VYy_.js +0 -1
- package/web-ui/build/static/oz-BGDEB-1A.js +0 -1
- package/web-ui/build/static/parigp-CfZzp1uE.js +0 -1
- package/web-ui/build/static/parser-UbGteTcy.js +0 -1
- package/web-ui/build/static/parser3-C-Jx-fy7.js +0 -1
- package/web-ui/build/static/pascal-D1_R0gW-.js +0 -1
- package/web-ui/build/static/pascaligo-B8C-98Np.js +0 -1
- package/web-ui/build/static/pcaxis-TGnlUKNs.js +0 -1
- package/web-ui/build/static/peoplecode-C5Vf1AH0.js +0 -1
- package/web-ui/build/static/perl-CBp1N62T.js +0 -1
- package/web-ui/build/static/perl-Z59j904t.js +0 -1
- package/web-ui/build/static/pf-Cq8B_xwQ.js +0 -1
- package/web-ui/build/static/pgsql-ofJbUHkL.js +0 -1
- package/web-ui/build/static/php-OlH7HLQJ.js +0 -1
- package/web-ui/build/static/php-extras-GqtrxLuk.js +0 -1
- package/web-ui/build/static/php-r09kMDOB.js +0 -1
- package/web-ui/build/static/php-template-18uT97Qo.js +0 -1
- package/web-ui/build/static/phpdoc-9tRFvup9.js +0 -1
- package/web-ui/build/static/plaintext-DsYT6Mu-.js +0 -1
- package/web-ui/build/static/plsql-RhWQNJVb.js +0 -1
- package/web-ui/build/static/pony-DD6JMLYI.js +0 -1
- package/web-ui/build/static/powerquery-CALow-bt.js +0 -1
- package/web-ui/build/static/powershell-C2QvIuKF.js +0 -1
- package/web-ui/build/static/powershell-yrbJEhCh.js +0 -1
- package/web-ui/build/static/processing-1T5w_Q03.js +0 -1
- package/web-ui/build/static/processing-DBim_dO-.js +0 -1
- package/web-ui/build/static/profile-Cdloh8mZ.js +0 -1
- package/web-ui/build/static/prolog-DRSsNnns.js +0 -1
- package/web-ui/build/static/prolog-D_ajweDr.js +0 -1
- package/web-ui/build/static/promql-BRuwn6Bn.js +0 -1
- package/web-ui/build/static/properties-D5Wyl4X4.js +0 -1
- package/web-ui/build/static/properties-kn4fl1bl.js +0 -1
- package/web-ui/build/static/protobuf-BMO76zWi.js +0 -1
- package/web-ui/build/static/protobuf-CTUCF-U-.js +0 -1
- package/web-ui/build/static/psl-CiqYdQbY.js +0 -1
- package/web-ui/build/static/pug-BLE2Qayj.js +0 -1
- package/web-ui/build/static/puppet-CFKLWXft.js +0 -1
- package/web-ui/build/static/puppet-DQci0Dl5.js +0 -1
- package/web-ui/build/static/pure-D2h_GynV.js +0 -1
- package/web-ui/build/static/purebasic-BF8MVw8V.js +0 -1
- package/web-ui/build/static/purebasic-BTtHiCkh.js +0 -1
- package/web-ui/build/static/purescript-D1ZSh-sH.js +0 -1
- package/web-ui/build/static/python-Cp9_Vdhb.js +0 -1
- package/web-ui/build/static/python-DdgNw8IW.js +0 -1
- package/web-ui/build/static/python-repl-DvK89VMC.js +0 -1
- package/web-ui/build/static/q-COaIgwhT.js +0 -1
- package/web-ui/build/static/q-Cm0dQkW8.js +0 -1
- package/web-ui/build/static/qml-BpsOqqJM.js +0 -1
- package/web-ui/build/static/qml-BziQXlU4.js +0 -1
- package/web-ui/build/static/qore-Cutz6g-2.js +0 -1
- package/web-ui/build/static/qsharp-B16619X1.js +0 -1
- package/web-ui/build/static/r-CFUIj5Hd.js +0 -1
- package/web-ui/build/static/r-CPrwCi5w.js +0 -1
- package/web-ui/build/static/racket-Bh08DFXF.js +0 -1
- package/web-ui/build/static/reason-BxjDq4e-.js +0 -1
- package/web-ui/build/static/reasonml-Ds5SsGP8.js +0 -1
- package/web-ui/build/static/regex-DhBIDIMI.js +0 -1
- package/web-ui/build/static/rego-DCwxZXcB.js +0 -1
- package/web-ui/build/static/renpy-C2fuQfqb.js +0 -1
- package/web-ui/build/static/rest-C52ZpxWQ.js +0 -1
- package/web-ui/build/static/rib-Cbl2Mzyj.js +0 -1
- package/web-ui/build/static/rip-BTOu5ZIE.js +0 -1
- package/web-ui/build/static/roboconf-3Oi2wuVk.js +0 -1
- package/web-ui/build/static/roboconf-ndLZLE39.js +0 -1
- package/web-ui/build/static/robotframework-BzHXiIj1.js +0 -1
- package/web-ui/build/static/routeros-CkpPoqx-.js +0 -1
- package/web-ui/build/static/rsl-C0bwOQ38.js +0 -1
- package/web-ui/build/static/ruby-C_hIhtuQ.js +0 -1
- package/web-ui/build/static/ruby-DvKfZPzj.js +0 -1
- package/web-ui/build/static/ruleslanguage-CbZJlddz.js +0 -1
- package/web-ui/build/static/rust-BFPIhB-X.js +0 -1
- package/web-ui/build/static/rust-sBpUq-qE.js +0 -1
- package/web-ui/build/static/sas-BCXvYN9x.js +0 -1
- package/web-ui/build/static/sas-D7GAsTY3.js +0 -1
- package/web-ui/build/static/sass-BdaErGMN.js +0 -1
- package/web-ui/build/static/scala-Cj81oCl9.js +0 -1
- package/web-ui/build/static/scala-CvbksfY6.js +0 -1
- package/web-ui/build/static/scheme-BM5ZqKnl.js +0 -1
- package/web-ui/build/static/scheme-BPvlu9Tk.js +0 -1
- package/web-ui/build/static/scilab-CJanLKQN.js +0 -1
- package/web-ui/build/static/scss-C53YF_7f.js +0 -1
- package/web-ui/build/static/scss-DPp8UZbr.js +0 -1
- package/web-ui/build/static/shell-CC9bQXMe.js +0 -1
- package/web-ui/build/static/shell-session-CuR3fbf-.js +0 -1
- package/web-ui/build/static/smali-CUgLls3D.js +0 -1
- package/web-ui/build/static/smali-YODSX8qt.js +0 -1
- package/web-ui/build/static/smalltalk-BMJQ4bbs.js +0 -1
- package/web-ui/build/static/smalltalk-BVGY3CTl.js +0 -1
- package/web-ui/build/static/smarty-C9aNt4-p.js +0 -1
- package/web-ui/build/static/sml-C3BIHhfq.js +0 -1
- package/web-ui/build/static/sml-DTipyRmY.js +0 -1
- package/web-ui/build/static/solidity-1yuPUqoC.js +0 -1
- package/web-ui/build/static/solution-file-BgzK4GOU.js +0 -1
- package/web-ui/build/static/soy-CFJXRvqc.js +0 -1
- package/web-ui/build/static/sparql-CAosYMpl.js +0 -1
- package/web-ui/build/static/splunk-spl-DkINtWr8.js +0 -1
- package/web-ui/build/static/sqf-DbrWIS2M.js +0 -1
- package/web-ui/build/static/sqf-nq8Q9J2W.js +0 -1
- package/web-ui/build/static/sql-9bwClhZQ.js +0 -1
- package/web-ui/build/static/sql-CqPkY-lX.js +0 -1
- package/web-ui/build/static/sql_more-CsY5ts77.js +0 -1
- package/web-ui/build/static/squirrel-BuqtzRBD.js +0 -1
- package/web-ui/build/static/stan-BNxBSglc.js +0 -1
- package/web-ui/build/static/stan-CZVMc34l.js +0 -1
- package/web-ui/build/static/stata-DKnVdHCd.js +0 -1
- package/web-ui/build/static/step21-Cu_TaBGF.js +0 -1
- package/web-ui/build/static/stylus-BS7-OJew.js +0 -1
- package/web-ui/build/static/stylus-DtFrp1Nk.js +0 -1
- package/web-ui/build/static/subunit-DDCoWkkc.js +0 -1
- package/web-ui/build/static/swift-BaguUZbl.js +0 -1
- package/web-ui/build/static/swift-mwBsb8Bx.js +0 -1
- package/web-ui/build/static/systemd-D6PpyDKk.js +0 -1
- package/web-ui/build/static/t4-cs-Cem8g4Ck.js +0 -1
- package/web-ui/build/static/t4-templating-BZo-HjmD.js +0 -1
- package/web-ui/build/static/t4-vb-B4oVnKa4.js +0 -1
- package/web-ui/build/static/taggerscript-DweAZ5pw.js +0 -1
- package/web-ui/build/static/tap-DpuvKHHF.js +0 -1
- package/web-ui/build/static/tap-hUKmJObZ.js +0 -1
- package/web-ui/build/static/tcl-BUvhAi7u.js +0 -1
- package/web-ui/build/static/tcl-Dsck63d8.js +0 -1
- package/web-ui/build/static/textile-CgKbqJ-j.js +0 -1
- package/web-ui/build/static/thrift-B5H6rApp.js +0 -1
- package/web-ui/build/static/toml-DggTpfOo.js +0 -1
- package/web-ui/build/static/tp-CazB2P2X.js +0 -1
- package/web-ui/build/static/tremor-B1jy7S5p.js +0 -1
- package/web-ui/build/static/tsx-BqF2lVDi.js +0 -1
- package/web-ui/build/static/tt2-BNoNXpEe.js +0 -1
- package/web-ui/build/static/turtle-B0evd5mn.js +0 -1
- package/web-ui/build/static/twig-B5A7nMdv.js +0 -1
- package/web-ui/build/static/twig-DZnLWvh8.js +0 -1
- package/web-ui/build/static/typescript-Bbe_P093.js +0 -1
- package/web-ui/build/static/typescript-BfhvmSSG.js +0 -1
- package/web-ui/build/static/typoscript-BjuZEIgw.js +0 -1
- package/web-ui/build/static/unrealscript-C3iUCFRi.js +0 -1
- package/web-ui/build/static/uorazor-CbZXwzIj.js +0 -1
- package/web-ui/build/static/uri-xMPSnp6m.js +0 -1
- package/web-ui/build/static/v-BKcGo5I6.js +0 -1
- package/web-ui/build/static/vala-BRoBE4am.js +0 -1
- package/web-ui/build/static/vala-B__Iyrma.js +0 -1
- package/web-ui/build/static/vbnet-DBxlMRvN.js +0 -1
- package/web-ui/build/static/vbnet-DjAXt5BE.js +0 -1
- package/web-ui/build/static/vbscript-BNA4oANi.js +0 -1
- package/web-ui/build/static/vbscript-html-o8ckLPKG.js +0 -1
- package/web-ui/build/static/velocity-D7sc5ggA.js +0 -1
- package/web-ui/build/static/verilog-BWJfMIng.js +0 -1
- package/web-ui/build/static/verilog-jW2GPC--.js +0 -1
- package/web-ui/build/static/vhdl-BIVlXRPa.js +0 -1
- package/web-ui/build/static/vhdl-BeqdhhxD.js +0 -1
- package/web-ui/build/static/vim-712lI4-g.js +0 -1
- package/web-ui/build/static/vim-DMROTzr0.js +0 -1
- package/web-ui/build/static/visual-basic-CQfbM-ta.js +0 -1
- package/web-ui/build/static/warpscript-DFAvCXFQ.js +0 -1
- package/web-ui/build/static/wasm-CiYoxBl0.js +0 -1
- package/web-ui/build/static/web-idl-DoCkPK8y.js +0 -1
- package/web-ui/build/static/wiki-bvz0AGzB.js +0 -1
- package/web-ui/build/static/wolfram-fBuyFEgU.js +0 -1
- package/web-ui/build/static/wren-DvATFxjF.js +0 -1
- package/web-ui/build/static/x86asm-r4bPbUR_.js +0 -1
- package/web-ui/build/static/xeora-B6iOnDJY.js +0 -1
- package/web-ui/build/static/xl-Ce6B5slc.js +0 -1
- package/web-ui/build/static/xml-DNjyPmhQ.js +0 -1
- package/web-ui/build/static/xml-doc-DydogmZD.js +0 -1
- package/web-ui/build/static/xojo-DCQLltvr.js +0 -1
- package/web-ui/build/static/xquery-C-fAnA0H.js +0 -1
- package/web-ui/build/static/xquery-CNeqzhLO.js +0 -1
- package/web-ui/build/static/yaml-BsVaGsk5.js +0 -1
- package/web-ui/build/static/yaml-kVZvwv_C.js +0 -1
- package/web-ui/build/static/yang-B_gq9JEq.js +0 -1
- package/web-ui/build/static/zephir-ECIXgXhX.js +0 -1
- package/web-ui/build/static/zig-DY325EKG.js +0 -1
|
@@ -0,0 +1,805 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Build the Loxia Autopilot "Deep-Understanding" onboarding Word document.
|
|
3
|
+
*
|
|
4
|
+
* Run: node scripts/build-onboarding-doc.js
|
|
5
|
+
* Out: docs/Loxia-Autopilot-Onboarding-Deep-Track.docx
|
|
6
|
+
*
|
|
7
|
+
* Uses docx-js (installed globally as `docx` v9.6.1). Generates a polished,
|
|
8
|
+
* multi-section document with cover page, headings, lists, code spans,
|
|
9
|
+
* call-out boxes, and tables. Intended to be handed straight to a new hire.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
'use strict';
|
|
13
|
+
|
|
14
|
+
const fs = require('fs');
|
|
15
|
+
const path = require('path');
|
|
16
|
+
|
|
17
|
+
const {
|
|
18
|
+
Document, Packer, Paragraph, TextRun,
|
|
19
|
+
AlignmentType, HeadingLevel, LevelFormat,
|
|
20
|
+
BorderStyle, Table, TableRow, TableCell, WidthType, ShadingType,
|
|
21
|
+
PageBreak,
|
|
22
|
+
} = require('docx');
|
|
23
|
+
|
|
24
|
+
/* ------------------------------------------------------------------ */
|
|
25
|
+
/* Style + helper primitives */
|
|
26
|
+
/* ------------------------------------------------------------------ */
|
|
27
|
+
|
|
28
|
+
const FONT = 'Calibri';
|
|
29
|
+
const HEADING_FONT = 'Calibri';
|
|
30
|
+
const MONO_FONT = 'Consolas';
|
|
31
|
+
|
|
32
|
+
const COLORS = {
|
|
33
|
+
navy: '1F3864',
|
|
34
|
+
blue: '2E75B6',
|
|
35
|
+
steel: '595959',
|
|
36
|
+
silver: '7F7F7F',
|
|
37
|
+
bandHeader: 'D9E2F3',
|
|
38
|
+
bandStripe: 'F2F6FC',
|
|
39
|
+
rule: 'CCCCCC',
|
|
40
|
+
codeBg: 'F4F4F4',
|
|
41
|
+
codeRule: 'D0D0D0',
|
|
42
|
+
warn: 'BF8F00',
|
|
43
|
+
danger: 'C00000',
|
|
44
|
+
tip: '2E7D32',
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
const text = (s, opts = {}) => new TextRun({ text: s, font: FONT, ...opts });
|
|
48
|
+
const bold = (s) => new TextRun({ text: s, bold: true, font: FONT });
|
|
49
|
+
const italic = (s) => new TextRun({ text: s, italics: true, font: FONT });
|
|
50
|
+
const code = (s) => new TextRun({ text: s, font: MONO_FONT, size: 20 });
|
|
51
|
+
|
|
52
|
+
/** Body paragraph. Accepts either a string or an array of TextRuns. */
|
|
53
|
+
const para = (input) => {
|
|
54
|
+
const children = typeof input === 'string'
|
|
55
|
+
? [new TextRun({ text: input, font: FONT })]
|
|
56
|
+
: input;
|
|
57
|
+
return new Paragraph({
|
|
58
|
+
children,
|
|
59
|
+
spacing: { after: 140, line: 312 }, // ~1.3 line height
|
|
60
|
+
});
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const h1 = (s) => new Paragraph({
|
|
64
|
+
heading: HeadingLevel.HEADING_1,
|
|
65
|
+
children: [new TextRun({ text: s, bold: true, font: HEADING_FONT })],
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
const h2 = (s) => new Paragraph({
|
|
69
|
+
heading: HeadingLevel.HEADING_2,
|
|
70
|
+
children: [new TextRun({ text: s, bold: true, font: HEADING_FONT })],
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
const h3 = (s) => new Paragraph({
|
|
74
|
+
heading: HeadingLevel.HEADING_3,
|
|
75
|
+
children: [new TextRun({ text: s, bold: true, font: HEADING_FONT })],
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
/** Bullet item. Accepts a string or an array of TextRuns. */
|
|
79
|
+
const bullet = (input, level = 0) => new Paragraph({
|
|
80
|
+
numbering: { reference: 'bullets', level },
|
|
81
|
+
children: typeof input === 'string'
|
|
82
|
+
? [new TextRun({ text: input, font: FONT })]
|
|
83
|
+
: input,
|
|
84
|
+
spacing: { after: 80 },
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
/** Numbered list item. */
|
|
88
|
+
const numbered = (input, level = 0) => new Paragraph({
|
|
89
|
+
numbering: { reference: 'numbers', level },
|
|
90
|
+
children: typeof input === 'string'
|
|
91
|
+
? [new TextRun({ text: input, font: FONT })]
|
|
92
|
+
: input,
|
|
93
|
+
spacing: { after: 80 },
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
/** Block-quote-style call-out with a coloured left bar. */
|
|
97
|
+
const callout = (label, content, color = COLORS.blue) => new Paragraph({
|
|
98
|
+
children: [
|
|
99
|
+
new TextRun({ text: label, bold: true, font: FONT, color }),
|
|
100
|
+
new TextRun({ text: ' — ', bold: true, font: FONT, color }),
|
|
101
|
+
typeof content === 'string'
|
|
102
|
+
? new TextRun({ text: content, font: FONT })
|
|
103
|
+
: content,
|
|
104
|
+
].flat(),
|
|
105
|
+
spacing: { before: 100, after: 160, line: 312 },
|
|
106
|
+
border: {
|
|
107
|
+
left: { style: BorderStyle.SINGLE, size: 24, color, space: 12 },
|
|
108
|
+
},
|
|
109
|
+
indent: { left: 240 },
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
const spacer = () => new Paragraph({ children: [new TextRun({ text: '' })], spacing: { after: 80 } });
|
|
113
|
+
const pageBreak = () => new Paragraph({ children: [new PageBreak()] });
|
|
114
|
+
|
|
115
|
+
/** Table cell with consistent borders + padding. */
|
|
116
|
+
const cell = (content, opts = {}) => {
|
|
117
|
+
const children = (Array.isArray(content) ? content : [content]).map(item => {
|
|
118
|
+
if (item instanceof Paragraph) return item;
|
|
119
|
+
return new Paragraph({
|
|
120
|
+
children: [new TextRun({
|
|
121
|
+
text: String(item),
|
|
122
|
+
font: FONT,
|
|
123
|
+
...(opts.bold ? { bold: true } : {}),
|
|
124
|
+
...(opts.color ? { color: opts.color } : {}),
|
|
125
|
+
})],
|
|
126
|
+
});
|
|
127
|
+
});
|
|
128
|
+
return new TableCell({
|
|
129
|
+
borders: {
|
|
130
|
+
top: { style: BorderStyle.SINGLE, size: 4, color: COLORS.rule },
|
|
131
|
+
bottom: { style: BorderStyle.SINGLE, size: 4, color: COLORS.rule },
|
|
132
|
+
left: { style: BorderStyle.SINGLE, size: 4, color: COLORS.rule },
|
|
133
|
+
right: { style: BorderStyle.SINGLE, size: 4, color: COLORS.rule },
|
|
134
|
+
},
|
|
135
|
+
margins: { top: 100, bottom: 100, left: 140, right: 140 },
|
|
136
|
+
width: opts.width ? { size: opts.width, type: WidthType.DXA } : undefined,
|
|
137
|
+
shading: opts.shading
|
|
138
|
+
? { fill: opts.shading, type: ShadingType.CLEAR, color: 'auto' }
|
|
139
|
+
: undefined,
|
|
140
|
+
children,
|
|
141
|
+
});
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
/* ------------------------------------------------------------------ */
|
|
145
|
+
/* Document content */
|
|
146
|
+
/* ------------------------------------------------------------------ */
|
|
147
|
+
|
|
148
|
+
const sections = [];
|
|
149
|
+
|
|
150
|
+
/* ---- Cover page ---- */
|
|
151
|
+
sections.push(
|
|
152
|
+
spacer(), spacer(), spacer(), spacer(),
|
|
153
|
+
new Paragraph({
|
|
154
|
+
alignment: AlignmentType.CENTER,
|
|
155
|
+
children: [new TextRun({
|
|
156
|
+
text: 'LOXIA AUTOPILOT',
|
|
157
|
+
size: 72, bold: true, color: COLORS.navy, font: HEADING_FONT,
|
|
158
|
+
characterSpacing: 80,
|
|
159
|
+
})],
|
|
160
|
+
spacing: { after: 220 },
|
|
161
|
+
}),
|
|
162
|
+
new Paragraph({
|
|
163
|
+
alignment: AlignmentType.CENTER,
|
|
164
|
+
children: [new TextRun({
|
|
165
|
+
text: 'Deep-Understanding Onboarding Track',
|
|
166
|
+
size: 36, color: COLORS.blue, font: HEADING_FONT,
|
|
167
|
+
})],
|
|
168
|
+
spacing: { after: 600 },
|
|
169
|
+
}),
|
|
170
|
+
new Paragraph({
|
|
171
|
+
alignment: AlignmentType.CENTER,
|
|
172
|
+
children: [new TextRun({
|
|
173
|
+
text: 'For new engineers joining the team',
|
|
174
|
+
size: 24, italics: true, color: COLORS.steel, font: FONT,
|
|
175
|
+
})],
|
|
176
|
+
spacing: { after: 1200 },
|
|
177
|
+
}),
|
|
178
|
+
new Paragraph({
|
|
179
|
+
alignment: AlignmentType.CENTER,
|
|
180
|
+
children: [new TextRun({
|
|
181
|
+
text: 'Loxia Engineering · Internal',
|
|
182
|
+
size: 20, color: COLORS.silver, font: FONT,
|
|
183
|
+
})],
|
|
184
|
+
}),
|
|
185
|
+
pageBreak(),
|
|
186
|
+
);
|
|
187
|
+
|
|
188
|
+
/* ---- 1. Welcome ---- */
|
|
189
|
+
sections.push(
|
|
190
|
+
h1('1. Welcome'),
|
|
191
|
+
para(
|
|
192
|
+
'You are about to spend two weeks getting your environment running, meeting ' +
|
|
193
|
+
'the team, and reading code. This document is your companion for the second ' +
|
|
194
|
+
'of those weeks — the one where you stop pattern-matching against files ' +
|
|
195
|
+
'and start understanding why the codebase looks the way it does.'
|
|
196
|
+
),
|
|
197
|
+
para(
|
|
198
|
+
'The codebase is small enough that you could read every file. That is not ' +
|
|
199
|
+
'what we want you to do. We want you to internalise four or five mental ' +
|
|
200
|
+
'models that make the rest of the architecture feel obvious. Once you have ' +
|
|
201
|
+
'those, new code reads itself.'
|
|
202
|
+
),
|
|
203
|
+
|
|
204
|
+
h2('How to read this document'),
|
|
205
|
+
bullet('Read it linearly the first time. Sections build on each other.'),
|
|
206
|
+
bullet('Each section ends with a checklist. Do those before turning the page.'),
|
|
207
|
+
bullet('Re-read it after your first two weeks. It will land differently.'),
|
|
208
|
+
bullet('If something here does not match what you see in the code, the document is wrong and we want to know. Tell your onboarding buddy.'),
|
|
209
|
+
|
|
210
|
+
h2('What you should know by the end'),
|
|
211
|
+
numbered('What Loxia Autopilot does, and who uses it.'),
|
|
212
|
+
numbered('How agents, the orchestrator, and tools relate to each other.'),
|
|
213
|
+
numbered('The plural-canonical envelope pattern and why we settled on it.'),
|
|
214
|
+
numbered('What the model catalog is and why we are removing hardcoded model names.'),
|
|
215
|
+
numbered('How code gets to production (it is not what you think).'),
|
|
216
|
+
numbered('Where to find the components you will most often modify.'),
|
|
217
|
+
numbered('The conventions our tests follow and how to run them.'),
|
|
218
|
+
pageBreak(),
|
|
219
|
+
);
|
|
220
|
+
|
|
221
|
+
/* ---- 2. What Loxia Autopilot Is ---- */
|
|
222
|
+
sections.push(
|
|
223
|
+
h1('2. What Loxia Autopilot Is'),
|
|
224
|
+
para(
|
|
225
|
+
'Loxia Autopilot is an autonomous-agent platform. A user describes a task. ' +
|
|
226
|
+
'The platform spawns one or more LLM-powered agents that execute that task ' +
|
|
227
|
+
'using tools — terminal, web search, file system, calendar, code ' +
|
|
228
|
+
'repositories, document creation, and third-party SaaS via Composio. ' +
|
|
229
|
+
'Agents run for minutes to hours. Users either watch them work in real ' +
|
|
230
|
+
'time or come back later to review what happened.'
|
|
231
|
+
),
|
|
232
|
+
para(
|
|
233
|
+
'The product surface is a web application called My Squadron, plus a CLI ' +
|
|
234
|
+
'for power users and CI environments. The backend is Node.js. The agent ' +
|
|
235
|
+
'runtime is built around a single orchestrator service. The UI is React.'
|
|
236
|
+
),
|
|
237
|
+
|
|
238
|
+
h2('Who uses it'),
|
|
239
|
+
para('Two primary user segments. Their needs shape every design decision:'),
|
|
240
|
+
bullet([
|
|
241
|
+
bold('Power users and automation engineers'),
|
|
242
|
+
text(' who run multiple agents in parallel, edit prompts and tool configurations, and care about reliability and observability above polish.'),
|
|
243
|
+
]),
|
|
244
|
+
bullet([
|
|
245
|
+
bold('Knowledge workers'),
|
|
246
|
+
text(' who launch a single agent for a specific task (“plan my Q3 OKRs”), watch it work, intervene when it gets stuck.'),
|
|
247
|
+
]),
|
|
248
|
+
para(
|
|
249
|
+
'When in doubt about a UX trade-off, the power user wins. The UI should ' +
|
|
250
|
+
'be beautiful, but it should never sacrifice information density for a ' +
|
|
251
|
+
'knowledge worker who is seeing it for the first time.'
|
|
252
|
+
),
|
|
253
|
+
|
|
254
|
+
h2('What it competes with'),
|
|
255
|
+
para(
|
|
256
|
+
'We are not a chatbot. We are not a single-shot code generator. The ' +
|
|
257
|
+
'reference point is a fleet of long-running agents, more like a CI/CD ' +
|
|
258
|
+
'system or a job queue than a chat interface. If a design choice feels ' +
|
|
259
|
+
'like it comes from chat-UX intuition, double-check that it still makes ' +
|
|
260
|
+
'sense for a process that runs for an hour and reports back later.'
|
|
261
|
+
),
|
|
262
|
+
pageBreak(),
|
|
263
|
+
);
|
|
264
|
+
|
|
265
|
+
/* ---- 3. The Five Mental Models ---- */
|
|
266
|
+
sections.push(
|
|
267
|
+
h1('3. The Five Mental Models'),
|
|
268
|
+
para(
|
|
269
|
+
'These are the abstractions that, once internalised, make the rest of ' +
|
|
270
|
+
'the codebase feel like a single coherent thing instead of a pile of files.'
|
|
271
|
+
),
|
|
272
|
+
|
|
273
|
+
/* 3.1 */
|
|
274
|
+
h2('3.1 Agents are stateful processes, not requests'),
|
|
275
|
+
para(
|
|
276
|
+
'An agent is a long-running stateful actor with a model, a toolset, a ' +
|
|
277
|
+
'scratchpad, and a status. You do not send a request to an agent — ' +
|
|
278
|
+
'you nudge it, pause it, change its model, kill it. The closest analogy ' +
|
|
279
|
+
'is a Unix process.'
|
|
280
|
+
),
|
|
281
|
+
para('Each agent has:'),
|
|
282
|
+
bullet([bold('A model'), text(' (Claude Sonnet 4.5, GPT-5, Kimi-K2.6, etc.) chosen at creation, mutable mid-run.')]),
|
|
283
|
+
bullet([bold('A toolset'), text(' (terminal, web search, office, composio, …) configurable per agent.')]),
|
|
284
|
+
bullet([bold('A scratchpad and context window'), text(' its working memory.')]),
|
|
285
|
+
bullet([bold('A status'), text(' running, paused, unloaded, archived.')]),
|
|
286
|
+
para([
|
|
287
|
+
text('Every backend endpoint either creates, mutates, or queries one of these long-lived actors. The orchestrator is the supervisor and owns the agent pool. Every action goes through '),
|
|
288
|
+
code('orchestrator.processRequest({ action, payload })'),
|
|
289
|
+
text('.'),
|
|
290
|
+
]),
|
|
291
|
+
callout(
|
|
292
|
+
'Rule of thumb',
|
|
293
|
+
'When you add a feature, ask "is this a new orchestrator action?" before you design an endpoint. Most of the time the answer is yes, and the REST route is a thin wrapper.',
|
|
294
|
+
),
|
|
295
|
+
|
|
296
|
+
/* 3.2 */
|
|
297
|
+
h2('3.2 Tools speak a plural-canonical envelope'),
|
|
298
|
+
para([
|
|
299
|
+
text('Every tool accepts an envelope of the form '),
|
|
300
|
+
code('{ actions: [ { type, ...payload } ] }'),
|
|
301
|
+
text(' — a list of actions. Even when the caller wants a single action, it is wrapped in a one-element array. We call this the plural-canonical envelope.'),
|
|
302
|
+
]),
|
|
303
|
+
para('Why plural?'),
|
|
304
|
+
bullet('Batches are common. Web search wants to do five queries; file ops want to read, edit, write in one call. Forcing a singular envelope means making every caller fan-out by hand.'),
|
|
305
|
+
bullet('Singular is a degenerate case of plural. Plural is not a degenerate case of singular. Plural is the more general shape.'),
|
|
306
|
+
bullet('It mirrors how SQL, GraphQL, and most batch APIs work. People recognise the shape.'),
|
|
307
|
+
para([
|
|
308
|
+
text('We also accept a legacy singular envelope '),
|
|
309
|
+
code('{ action, ...payload }'),
|
|
310
|
+
text(' as a fallback for backward compatibility. New tools should '),
|
|
311
|
+
italic('generate'),
|
|
312
|
+
text(' the plural envelope. Old singular-canonical tools should '),
|
|
313
|
+
italic('accept'),
|
|
314
|
+
text(' either shape on input — we call this the reverse-forgiveness pattern.'),
|
|
315
|
+
]),
|
|
316
|
+
para('When you add a new tool:'),
|
|
317
|
+
bullet([text('Put the discriminator on every item inside the '), code('actions'), text(' array.')]),
|
|
318
|
+
bullet([text('Accept both '), code('type'), text(' and '), code('action'), text(' as the discriminator key. We have been migrating between them and the next person to write a caller may use either.')]),
|
|
319
|
+
bullet('Write integration tests with both singular and plural envelopes on the input side.'),
|
|
320
|
+
|
|
321
|
+
/* 3.3 */
|
|
322
|
+
h2('3.3 Catalog-driven routing replaces hardcoded model names'),
|
|
323
|
+
para(
|
|
324
|
+
'The model catalog is a separate Azure service that owns the answer to ' +
|
|
325
|
+
'questions like "what models exist?", "what does this one cost per ' +
|
|
326
|
+
'million tokens?", and "can this one use vision?". Phases one through ' +
|
|
327
|
+
'three of the catalog refactor deleted every hardcoded model name from ' +
|
|
328
|
+
'the orchestrator. Phase four shipped the backend bits; the UI work is ' +
|
|
329
|
+
'still pending.'
|
|
330
|
+
),
|
|
331
|
+
para('When you add new model logic:'),
|
|
332
|
+
numbered('Search for the model name across the codebase. If you find it in any list or switch statement, the answer is almost always to move that knowledge into the catalog.'),
|
|
333
|
+
numbered([
|
|
334
|
+
text('The catalog is at a separate Azure URL. '),
|
|
335
|
+
code('publicNetworkAccess'),
|
|
336
|
+
text(' is set to '),
|
|
337
|
+
code('Disabled'),
|
|
338
|
+
text(', so you reach it through the VNet. See '),
|
|
339
|
+
code('project_deployment_quirks.md'),
|
|
340
|
+
text(' for the details.'),
|
|
341
|
+
]),
|
|
342
|
+
numbered([
|
|
343
|
+
text('There is a single client ('),
|
|
344
|
+
code('catalogClient'),
|
|
345
|
+
text(') that fetches and caches catalog responses. Use it. Do not write a second one.'),
|
|
346
|
+
]),
|
|
347
|
+
callout(
|
|
348
|
+
'Warning',
|
|
349
|
+
'Adding a model name to a string array in source code is the single most common way to create technical debt in this codebase. It compounds quickly. The catalog is annoying to update from the outside, but it is correct.',
|
|
350
|
+
COLORS.danger,
|
|
351
|
+
),
|
|
352
|
+
|
|
353
|
+
/* 3.4 */
|
|
354
|
+
h2('3.4 Deployment goes through Kudu VFS, not pipelines'),
|
|
355
|
+
para(
|
|
356
|
+
'The Azure App Services that host the backend are deployed via Kudu VFS ' +
|
|
357
|
+
'file pushes, not GitHub Actions and not App Service deployment slots. ' +
|
|
358
|
+
'A self-hosted DevOps agent does the actual file transfer. This is ' +
|
|
359
|
+
'unconventional but predictable:'
|
|
360
|
+
),
|
|
361
|
+
bullet([code('git push'), text(' does not deploy.')]),
|
|
362
|
+
bullet('Pipelines do not deploy. They build artefacts and hand them off.'),
|
|
363
|
+
bullet('Files get pushed via the Kudu API by the self-hosted agent.'),
|
|
364
|
+
para('Consequences:'),
|
|
365
|
+
bullet('If you see a stale binary in production, suspect that the Kudu push failed silently. The DevOps agent VM has the relevant logs.'),
|
|
366
|
+
bullet('Local builds need to match the deployment artefact. If you change build flags, you change deploy behaviour.'),
|
|
367
|
+
bullet('Rollback is also a Kudu push, not a slot swap. Plan accordingly.'),
|
|
368
|
+
|
|
369
|
+
/* 3.5 */
|
|
370
|
+
h2('3.5 The UI mirrors backend pluralism'),
|
|
371
|
+
para(
|
|
372
|
+
'The web UI has a My Squadron screen with multi-select. We recently added ' +
|
|
373
|
+
'a sticky BulkActionBar that lets you select N agents and pause, resume, ' +
|
|
374
|
+
'delete, change model, enable or disable tools across all of them at once. ' +
|
|
375
|
+
'The same component mounts on the agent import modal — it is reusable, ' +
|
|
376
|
+
'parameterised by an allowedActions set.'
|
|
377
|
+
),
|
|
378
|
+
para([
|
|
379
|
+
text('Behind it is '),
|
|
380
|
+
code('POST /api/agents/bulk'),
|
|
381
|
+
text(' with the same plural-canonical shape as the tool envelope. The endpoint runs sequentially (agent-pool state is not lock-free) and returns a partial-success summary so the UI can show "7 of 10 succeeded" instead of swallowing failures.'),
|
|
382
|
+
]),
|
|
383
|
+
callout(
|
|
384
|
+
'Pattern',
|
|
385
|
+
'Every batch operation in the system — tool envelope, bulk agent actions, future bulk anything — uses the same { items: […], summary: { total, ok, failed }, results: […] } shape on input and output. Reuse it.',
|
|
386
|
+
COLORS.tip,
|
|
387
|
+
),
|
|
388
|
+
pageBreak(),
|
|
389
|
+
);
|
|
390
|
+
|
|
391
|
+
/* ---- 4. Service Layout ---- */
|
|
392
|
+
sections.push(
|
|
393
|
+
h1('4. The Service Layout'),
|
|
394
|
+
para('Loxia Autopilot is split across a handful of services. Here is the shape of it:'),
|
|
395
|
+
|
|
396
|
+
new Table({
|
|
397
|
+
width: { size: 9360, type: WidthType.DXA },
|
|
398
|
+
columnWidths: [2400, 3200, 3760],
|
|
399
|
+
rows: [
|
|
400
|
+
new TableRow({
|
|
401
|
+
tableHeader: true,
|
|
402
|
+
children: [
|
|
403
|
+
cell('Service', { width: 2400, bold: true, shading: COLORS.bandHeader }),
|
|
404
|
+
cell('Role', { width: 3200, bold: true, shading: COLORS.bandHeader }),
|
|
405
|
+
cell('Notes for new joiners', { width: 3760, bold: true, shading: COLORS.bandHeader }),
|
|
406
|
+
],
|
|
407
|
+
}),
|
|
408
|
+
new TableRow({ children: [
|
|
409
|
+
cell('Autopilot CLI and backend', { width: 2400 }),
|
|
410
|
+
cell('Agent runtime. Express server, orchestrator, agent pool, tool registry.', { width: 3200 }),
|
|
411
|
+
cell('Most of your day-to-day work happens here. See src/.', { width: 3760 }),
|
|
412
|
+
]}),
|
|
413
|
+
new TableRow({ children: [
|
|
414
|
+
cell('Web UI', { width: 2400, shading: COLORS.bandStripe }),
|
|
415
|
+
cell('React app for My Squadron, agent imports, live monitoring, settings.', { width: 3200, shading: COLORS.bandStripe }),
|
|
416
|
+
cell('Single-page app. Vite + React + Tailwind. See web-ui/.', { width: 3760, shading: COLORS.bandStripe }),
|
|
417
|
+
]}),
|
|
418
|
+
new TableRow({ children: [
|
|
419
|
+
cell('Model Catalog', { width: 2400 }),
|
|
420
|
+
cell('Source of truth for models, costs, capabilities.', { width: 3200 }),
|
|
421
|
+
cell('Separate Azure App Service. publicNetworkAccess=Disabled. Reach via VNet only.', { width: 3760 }),
|
|
422
|
+
]}),
|
|
423
|
+
new TableRow({ children: [
|
|
424
|
+
cell('DevOps agent (self-hosted)', { width: 2400, shading: COLORS.bandStripe }),
|
|
425
|
+
cell('Pushes builds through Kudu VFS to App Services.', { width: 3200, shading: COLORS.bandStripe }),
|
|
426
|
+
cell('You probably will not edit it. You will read its logs when deploys go wrong.', { width: 3760, shading: COLORS.bandStripe }),
|
|
427
|
+
]}),
|
|
428
|
+
new TableRow({ children: [
|
|
429
|
+
cell('Composio (third-party)', { width: 2400 }),
|
|
430
|
+
cell('SaaS integration broker. Per-user OAuth, hosted Connect Link.', { width: 3200 }),
|
|
431
|
+
cell('Wrapped behind a single tool — composioTool.js. Rotate keys on schedule.', { width: 3760 }),
|
|
432
|
+
]}),
|
|
433
|
+
],
|
|
434
|
+
}),
|
|
435
|
+
spacer(),
|
|
436
|
+
para('Each service has its own deployment lifecycle, but they are versioned together. We do not run mixed-version pairs in production.'),
|
|
437
|
+
|
|
438
|
+
pageBreak(),
|
|
439
|
+
);
|
|
440
|
+
|
|
441
|
+
/* ---- 5. Code Tour ---- */
|
|
442
|
+
sections.push(
|
|
443
|
+
h1('5. Code Tour (in reading order)'),
|
|
444
|
+
para('Read these files in this order. Most of them are big — do not try to absorb every line. Just see the shape.'),
|
|
445
|
+
|
|
446
|
+
h3('5.1 src/orchestrator/'),
|
|
447
|
+
para([
|
|
448
|
+
text('Start with '),
|
|
449
|
+
code('processRequest'),
|
|
450
|
+
text('. Trace what happens when '),
|
|
451
|
+
code('action: "runAgent"'),
|
|
452
|
+
text(' arrives. Notice that everything funnels through one entry point, that side effects are written through '),
|
|
453
|
+
code('agentPool'),
|
|
454
|
+
text(' and not into module-level globals, and that the orchestrator is mostly a switch over action types.'),
|
|
455
|
+
]),
|
|
456
|
+
|
|
457
|
+
h3('5.2 src/tools/webSearchTool.js'),
|
|
458
|
+
para([
|
|
459
|
+
text('Read it cover to cover. This is the cleanest example of the plural-canonical envelope. Notice how the input handler accepts both singular and plural shapes, normalises to plural, then runs the '),
|
|
460
|
+
code('actions'),
|
|
461
|
+
text(' array sequentially. Internalise this pattern; you will reproduce it whenever you add a new tool.'),
|
|
462
|
+
]),
|
|
463
|
+
|
|
464
|
+
h3('5.3 src/tools/composioTool.js'),
|
|
465
|
+
para([
|
|
466
|
+
text('Read this after webSearchTool. It is the newest tool, scaffolded recently. Notice the dynamic '),
|
|
467
|
+
code('import("@composio/core")'),
|
|
468
|
+
text(' so the dependency is optional, the per-agent '),
|
|
469
|
+
code('userId'),
|
|
470
|
+
text(' mapping for OAuth isolation, and the five top-level action types ('),
|
|
471
|
+
code('list-toolkits'),
|
|
472
|
+
text(', '),
|
|
473
|
+
code('list-tools'),
|
|
474
|
+
text(', '),
|
|
475
|
+
code('connect'),
|
|
476
|
+
text(', '),
|
|
477
|
+
code('connection-status'),
|
|
478
|
+
text(', '),
|
|
479
|
+
code('execute'),
|
|
480
|
+
text('). The test file alongside it shows how we mock the SDK.'),
|
|
481
|
+
]),
|
|
482
|
+
|
|
483
|
+
h3('5.4 src/interfaces/webServer.js'),
|
|
484
|
+
para([
|
|
485
|
+
text('The Express app. Big file. Do not read it linearly. Skim for the routes you have heard about — '),
|
|
486
|
+
code('/api/agents'),
|
|
487
|
+
text(', '),
|
|
488
|
+
code('/api/agents/bulk'),
|
|
489
|
+
text(' (near line 4500), '),
|
|
490
|
+
code('/api/orchestrator'),
|
|
491
|
+
text(' — and trace one request through.'),
|
|
492
|
+
]),
|
|
493
|
+
|
|
494
|
+
h3('5.5 web-ui/src/components/AgentManager.jsx'),
|
|
495
|
+
para('The My Squadron screen. Over 1600 lines. Read it the same way you read webServer.js: skim, find the parts you care about, ignore the rest until you need them. Pay attention to how it composes smaller components (AgentImportModal, BulkActionBar, AgentQuickSwitcher).'),
|
|
496
|
+
|
|
497
|
+
h3('5.6 web-ui/src/components/BulkActionBar.jsx'),
|
|
498
|
+
para('Reusable sticky-bottom action bar with confirm modal. About 230 lines. Worth reading every line: it is small, well-commented, and shows the pattern of a parameterised reusable component that callers control entirely through an onAction callback.'),
|
|
499
|
+
|
|
500
|
+
h3('5.7 web-ui/src/components/AgentQuickSwitcher.jsx'),
|
|
501
|
+
para([
|
|
502
|
+
text('Ctrl+P quick-switcher modal with fuzzy search. About 200 lines. The interesting part is the '),
|
|
503
|
+
code('fuzzyScore'),
|
|
504
|
+
text(' function. Worth understanding even if you never touch it again — the ranking heuristic (prefix > substring > fuzzy-walk) shows up in many places.'),
|
|
505
|
+
]),
|
|
506
|
+
|
|
507
|
+
h3('5.8 src/interfaces/__tests__/bulkAgentRoute.test.js'),
|
|
508
|
+
para([
|
|
509
|
+
text('The canonical example of our route test pattern. No '),
|
|
510
|
+
code('supertest'),
|
|
511
|
+
text(' — we removed it. Instead, route tests spin up an '),
|
|
512
|
+
code('http.createServer'),
|
|
513
|
+
text(' instance and use '),
|
|
514
|
+
code('fetch'),
|
|
515
|
+
text(' against it. Copy-paste this file as the starting point for any new route test.'),
|
|
516
|
+
]),
|
|
517
|
+
pageBreak(),
|
|
518
|
+
);
|
|
519
|
+
|
|
520
|
+
/* ---- 6. Web UI Architecture ---- */
|
|
521
|
+
sections.push(
|
|
522
|
+
h1('6. Web UI Architecture'),
|
|
523
|
+
|
|
524
|
+
h2('Stack'),
|
|
525
|
+
bullet('Vite + React 18 + Tailwind CSS.'),
|
|
526
|
+
bullet('Heroicons for icons; we do not use other icon sets.'),
|
|
527
|
+
bullet('react-hot-toast for transient notifications.'),
|
|
528
|
+
bullet('No global state-management library. Hooks plus component-local state. Lift state up when two siblings need it.'),
|
|
529
|
+
bullet('Tests with Vitest + React Testing Library.'),
|
|
530
|
+
|
|
531
|
+
h2('Component conventions'),
|
|
532
|
+
bullet([text('Reusable components live in '), code('web-ui/src/components/'), text('. One per file. PascalCase filenames.')]),
|
|
533
|
+
bullet([text('Tool renderers live in '), code('web-ui/src/components/toolRenderers/'), text('. Each tool can register a custom renderer or fall back to null. The registry is the gatekeeper.')]),
|
|
534
|
+
bullet([text('Service modules live in '), code('web-ui/src/services/'), text('. The API client is here. Do not call '), code('fetch()'), text(' from components — always go through '), code('api.js'), text(' so we have a single seam for auth, retry, and logging.')]),
|
|
535
|
+
bullet([text('Constants live in '), code('web-ui/src/constants/'), text('. Tool IDs in particular — add new tool IDs to '), code('toolConstants.js'), text(' as well as registering them in '), code('registry.js'), text('.')]),
|
|
536
|
+
|
|
537
|
+
h2('The bulk-action pattern'),
|
|
538
|
+
para('When you build a screen that supports multi-select with bulk operations, the recipe is:'),
|
|
539
|
+
numbered([text('Hold a '), code('Set<string>'), text(' of selected IDs in component state.')]),
|
|
540
|
+
numbered('Render a checkbox on each row that toggles membership in the set.'),
|
|
541
|
+
numbered([text('Compute a '), code('selectedAgents'), text(' array (or whatever your entity is) by filtering the full list against the set.')]),
|
|
542
|
+
numbered([text('Mount '), code('<BulkActionBar />'), text(' with '), code('selectedAgents'), text(', '), code('onAction'), text(', and an '), code('allowedActions'), text(' set that filters the action menu to what makes sense for this screen.')]),
|
|
543
|
+
numbered([text('On '), code('onAction'), text(', call '), code('api.bulkAgentAction(…)'), text(' (or the equivalent for your entity), show a toast with the summary, refresh the list, and clear the selection.')]),
|
|
544
|
+
|
|
545
|
+
h2('Keyboard ergonomics'),
|
|
546
|
+
para([
|
|
547
|
+
text('We invest in keyboard ergonomics. The '),
|
|
548
|
+
code('AgentQuickSwitcher'),
|
|
549
|
+
text(' (Ctrl+P) is the model: instant open, type-to-filter, Enter to activate. Any new global action should consider a shortcut and a quick-switcher entry. Discoverability via the '),
|
|
550
|
+
code('?'),
|
|
551
|
+
text(' help overlay is non-negotiable.'),
|
|
552
|
+
]),
|
|
553
|
+
pageBreak(),
|
|
554
|
+
);
|
|
555
|
+
|
|
556
|
+
/* ---- 7. Tests + Conventions ---- */
|
|
557
|
+
sections.push(
|
|
558
|
+
h1('7. Testing Conventions'),
|
|
559
|
+
para('Tests are not optional. The codebase moves fast because tests are reliable. Adding a feature without tests is rejected at review.'),
|
|
560
|
+
|
|
561
|
+
h2('Test runners'),
|
|
562
|
+
bullet([code('mocha'), text(' for backend code under '), code('src/'), text('.')]),
|
|
563
|
+
bullet([code('vitest'), text(' for web-ui code under '), code('web-ui/'), text('.')]),
|
|
564
|
+
bullet([text('Test files live alongside the code they test, in a '), code('__tests__/'), text(' directory.')]),
|
|
565
|
+
|
|
566
|
+
h2('Route tests use http.createServer + fetch'),
|
|
567
|
+
para([
|
|
568
|
+
text('We do not depend on '),
|
|
569
|
+
code('supertest'),
|
|
570
|
+
text(' — we removed it. Instead, route tests spin up an '),
|
|
571
|
+
code('http.createServer'),
|
|
572
|
+
text(' instance with a small inline app, then use '),
|
|
573
|
+
code('fetch'),
|
|
574
|
+
text(' against it. See '),
|
|
575
|
+
code('src/interfaces/__tests__/bulkAgentRoute.test.js'),
|
|
576
|
+
text(' for the worked example. The pattern is small enough to copy-paste into a new test file.'),
|
|
577
|
+
]),
|
|
578
|
+
|
|
579
|
+
h2('Mock at the boundary'),
|
|
580
|
+
bullet('Mock the SDK or HTTP client, not your own functions. If you need to mock your own function, the seam is probably in the wrong place.'),
|
|
581
|
+
bullet([text('Use dependency injection over module-level mocks where possible. Most tools accept a '), code('deps'), text(' object precisely so tests can inject fakes.')]),
|
|
582
|
+
bullet('Prefer integration tests over unit tests when the cost is similar — they catch more.'),
|
|
583
|
+
|
|
584
|
+
h2('Commit and PR conventions'),
|
|
585
|
+
bullet([text('Conventional Commits prefixes ('), code('feat:'), text(', '), code('fix:'), text(', '), code('refactor:'), text(', '), code('test:'), text(', '), code('docs:'), text(', '), code('chore:'), text(').')]),
|
|
586
|
+
bullet('One logical change per PR. If you find an unrelated bug, file a separate PR or task.'),
|
|
587
|
+
bullet('Every PR should explain "Why" — not just "What". The code shows what changed.'),
|
|
588
|
+
pageBreak(),
|
|
589
|
+
);
|
|
590
|
+
|
|
591
|
+
/* ---- 8. Pitfalls ---- */
|
|
592
|
+
sections.push(
|
|
593
|
+
h1('8. Common Pitfalls'),
|
|
594
|
+
para('A non-exhaustive list of mistakes that have bitten us in the past. Reading these now will save you a debugging session later.'),
|
|
595
|
+
|
|
596
|
+
callout(
|
|
597
|
+
'Promise.all on agent operations',
|
|
598
|
+
'Agent-pool state mutates without locks. Sequential or carefully serialised only. Promise.all will look like it works locally and corrupt state in production.',
|
|
599
|
+
COLORS.danger,
|
|
600
|
+
),
|
|
601
|
+
callout(
|
|
602
|
+
'Bypassing the catalog',
|
|
603
|
+
'Even for "just a quick fix". Adding a model name to a string array creates debt that compounds. The catalog is annoying. Use it anyway.',
|
|
604
|
+
COLORS.danger,
|
|
605
|
+
),
|
|
606
|
+
callout(
|
|
607
|
+
'Skipping the singular fallback',
|
|
608
|
+
'When you write a new tool, keep accepting the legacy { action, … } shape for one release cycle. There may still be callers on the old format. Reject it cleanly with a deprecation warning, never with a 500.',
|
|
609
|
+
COLORS.warn,
|
|
610
|
+
),
|
|
611
|
+
callout(
|
|
612
|
+
'"git push assumed to deploy"',
|
|
613
|
+
'It does not. Verify via the Kudu API or the App Service log stream. We have had multiple incidents where the team thought a fix was live and it was not.',
|
|
614
|
+
COLORS.danger,
|
|
615
|
+
),
|
|
616
|
+
callout(
|
|
617
|
+
'Tools that share state',
|
|
618
|
+
'Tools should be pure and stateless from the orchestrator point of view. If a tool needs state, hide it behind a class that the orchestrator owns. Do not put state in module-level variables.',
|
|
619
|
+
COLORS.warn,
|
|
620
|
+
),
|
|
621
|
+
callout(
|
|
622
|
+
'Forgetting to register a new tool',
|
|
623
|
+
'A new tool needs three touch-points: (1) instantiation in src/index.js, (2) constant in web-ui/src/constants/toolConstants.js, (3) renderer entry (or null fallback) in web-ui/src/components/toolRenderers/registry.js. Miss any one and you get silent UI bugs.',
|
|
624
|
+
COLORS.warn,
|
|
625
|
+
),
|
|
626
|
+
callout(
|
|
627
|
+
'Forwarding sensitive env to agent processes',
|
|
628
|
+
'Agents run user-controlled tool calls. Treat their process env as untrusted output. Never forward Composio API keys, Azure credentials, or signing keys into an agent’s environment by default — secrets go through a vetted accessor, not process.env.',
|
|
629
|
+
COLORS.danger,
|
|
630
|
+
),
|
|
631
|
+
|
|
632
|
+
pageBreak(),
|
|
633
|
+
);
|
|
634
|
+
|
|
635
|
+
/* ---- 9. Glossary ---- */
|
|
636
|
+
sections.push(
|
|
637
|
+
h1('9. Glossary'),
|
|
638
|
+
|
|
639
|
+
new Table({
|
|
640
|
+
width: { size: 9360, type: WidthType.DXA },
|
|
641
|
+
columnWidths: [2400, 6960],
|
|
642
|
+
rows: [
|
|
643
|
+
new TableRow({
|
|
644
|
+
tableHeader: true,
|
|
645
|
+
children: [
|
|
646
|
+
cell('Term', { width: 2400, bold: true, shading: COLORS.bandHeader }),
|
|
647
|
+
cell('Meaning', { width: 6960, bold: true, shading: COLORS.bandHeader }),
|
|
648
|
+
],
|
|
649
|
+
}),
|
|
650
|
+
new TableRow({ children: [
|
|
651
|
+
cell('Agent', { width: 2400 }),
|
|
652
|
+
cell('A long-running LLM-powered actor with state, a toolset, and a status. Closest analogy: a Unix process.', { width: 6960 }),
|
|
653
|
+
]}),
|
|
654
|
+
new TableRow({ children: [
|
|
655
|
+
cell('Orchestrator', { width: 2400, shading: COLORS.bandStripe }),
|
|
656
|
+
cell('The supervisor that owns the agent pool and routes every action through processRequest({ action, payload }).', { width: 6960, shading: COLORS.bandStripe }),
|
|
657
|
+
]}),
|
|
658
|
+
new TableRow({ children: [
|
|
659
|
+
cell('Tool', { width: 2400 }),
|
|
660
|
+
cell('A capability exposed to agents (terminal, web search, office, composio, etc.). Speaks the plural-canonical envelope.', { width: 6960 }),
|
|
661
|
+
]}),
|
|
662
|
+
new TableRow({ children: [
|
|
663
|
+
cell('Catalog', { width: 2400, shading: COLORS.bandStripe }),
|
|
664
|
+
cell('The model registry. Separate Azure service. Source of truth for what models exist, what they cost, and what they can do.', { width: 6960, shading: COLORS.bandStripe }),
|
|
665
|
+
]}),
|
|
666
|
+
new TableRow({ children: [
|
|
667
|
+
cell('Squadron', { width: 2400 }),
|
|
668
|
+
cell('A user’s collection of agents. The main web UI screen is called My Squadron.', { width: 6960 }),
|
|
669
|
+
]}),
|
|
670
|
+
new TableRow({ children: [
|
|
671
|
+
cell('Envelope', { width: 2400, shading: COLORS.bandStripe }),
|
|
672
|
+
cell('The shape of a tool input: { actions: [ { type, …payload } ] }. Always plural, even for a single action.', { width: 6960, shading: COLORS.bandStripe }),
|
|
673
|
+
]}),
|
|
674
|
+
new TableRow({ children: [
|
|
675
|
+
cell('Composio', { width: 2400 }),
|
|
676
|
+
cell('Third-party SaaS integration broker. Wraps Gmail, Calendar, Slack, GitHub, etc. Behind a single tool in our codebase.', { width: 6960 }),
|
|
677
|
+
]}),
|
|
678
|
+
new TableRow({ children: [
|
|
679
|
+
cell('Kudu VFS', { width: 2400, shading: COLORS.bandStripe }),
|
|
680
|
+
cell('Azure App Service file API. We deploy through it because it is the most predictable channel given our constraints.', { width: 6960, shading: COLORS.bandStripe }),
|
|
681
|
+
]}),
|
|
682
|
+
new TableRow({ children: [
|
|
683
|
+
cell('DevOps Agent', { width: 2400 }),
|
|
684
|
+
cell('Self-hosted machine that runs deployment pushes. Logs here when deploys fail.', { width: 6960 }),
|
|
685
|
+
]}),
|
|
686
|
+
new TableRow({ children: [
|
|
687
|
+
cell('Reverse forgiveness', { width: 2400, shading: COLORS.bandStripe }),
|
|
688
|
+
cell('Pattern where a tool generates the new (plural) envelope on output but still accepts the legacy (singular) envelope on input.', { width: 6960, shading: COLORS.bandStripe }),
|
|
689
|
+
]}),
|
|
690
|
+
],
|
|
691
|
+
}),
|
|
692
|
+
pageBreak(),
|
|
693
|
+
);
|
|
694
|
+
|
|
695
|
+
/* ---- 10. First Two Weeks ---- */
|
|
696
|
+
sections.push(
|
|
697
|
+
h1('10. Your First Two Weeks'),
|
|
698
|
+
para('A concrete plan so you do not have to invent one. Your onboarding buddy will adapt this if needed.'),
|
|
699
|
+
|
|
700
|
+
h2('Days 1–2 · Setup and orientation'),
|
|
701
|
+
bullet('Get keys, accounts, VPN, repository access.'),
|
|
702
|
+
bullet('Clone the repo. Run the full test suite locally. Both backend and web UI should be green before you write any code.'),
|
|
703
|
+
bullet('Read this document end to end. Take notes on anything that surprises you.'),
|
|
704
|
+
bullet('Pair with your onboarding buddy for one hour to walk through the My Squadron screen.'),
|
|
705
|
+
|
|
706
|
+
h2('Days 3–5 · First read'),
|
|
707
|
+
bullet('Do the Code Tour in Section 5 in order. Do not skip ahead.'),
|
|
708
|
+
bullet([text('Write ~200 words on how a single request flows from '), code('POST /api/agents'), text(' to a running agent process. Keep this draft — you will compare it to reality at the end of week one.')]),
|
|
709
|
+
bullet('Shadow a senior engineer on a real change. Ask why, not what.'),
|
|
710
|
+
|
|
711
|
+
h2('Days 6–7 · First contribution'),
|
|
712
|
+
bullet('Pick a starter task from the bench. Ask your team lead — there is always one waiting.'),
|
|
713
|
+
bullet('Open a draft PR within two days, even if the change is not finished. Get feedback early.'),
|
|
714
|
+
bullet('Ship it. Watch it through deploy. Stay on call for an hour after it goes live.'),
|
|
715
|
+
|
|
716
|
+
h2('Week 2 · Stretch and integrate'),
|
|
717
|
+
bullet('Take on a second task, ideally one that touches a second area (e.g. backend plus web UI).'),
|
|
718
|
+
bullet('Re-read this document. The parts that did not land the first time should land now.'),
|
|
719
|
+
bullet('Write a "what surprised me" doc. Share it with the team. We use these to improve onboarding.'),
|
|
720
|
+
|
|
721
|
+
spacer(),
|
|
722
|
+
h2('Final note'),
|
|
723
|
+
para(
|
|
724
|
+
'The team is small, the codebase is small, and most of what feels ' +
|
|
725
|
+
'mysterious right now is the result of a few specific decisions we made ' +
|
|
726
|
+
'for specific reasons. If something in the code makes no sense, the first ' +
|
|
727
|
+
'hypothesis should be “there is context I do not have yet” — ' +
|
|
728
|
+
'but the second hypothesis should be “this is wrong and I should fix ' +
|
|
729
|
+
'it.” Both are valid. Both are common. Welcome aboard.'
|
|
730
|
+
),
|
|
731
|
+
spacer(),
|
|
732
|
+
new Paragraph({
|
|
733
|
+
alignment: AlignmentType.RIGHT,
|
|
734
|
+
children: [new TextRun({
|
|
735
|
+
text: '— The Loxia Autopilot team',
|
|
736
|
+
italics: true, font: FONT, color: COLORS.steel,
|
|
737
|
+
})],
|
|
738
|
+
}),
|
|
739
|
+
);
|
|
740
|
+
|
|
741
|
+
/* ------------------------------------------------------------------ */
|
|
742
|
+
/* Document assembly */
|
|
743
|
+
/* ------------------------------------------------------------------ */
|
|
744
|
+
|
|
745
|
+
const doc = new Document({
|
|
746
|
+
creator: 'Loxia Autopilot Engineering',
|
|
747
|
+
title: 'Loxia Autopilot — Deep-Understanding Onboarding Track',
|
|
748
|
+
description: 'Onboarding document for new programmers joining the Loxia Autopilot team',
|
|
749
|
+
styles: {
|
|
750
|
+
default: {
|
|
751
|
+
document: { run: { font: FONT, size: 22 } }, // 11pt
|
|
752
|
+
},
|
|
753
|
+
paragraphStyles: [
|
|
754
|
+
{ id: 'Heading1', name: 'Heading 1', basedOn: 'Normal', next: 'Normal', quickFormat: true,
|
|
755
|
+
run: { size: 36, bold: true, font: HEADING_FONT, color: COLORS.navy },
|
|
756
|
+
paragraph: { spacing: { before: 320, after: 200 }, outlineLevel: 0 } },
|
|
757
|
+
{ id: 'Heading2', name: 'Heading 2', basedOn: 'Normal', next: 'Normal', quickFormat: true,
|
|
758
|
+
run: { size: 28, bold: true, font: HEADING_FONT, color: COLORS.blue },
|
|
759
|
+
paragraph: { spacing: { before: 280, after: 120 }, outlineLevel: 1 } },
|
|
760
|
+
{ id: 'Heading3', name: 'Heading 3', basedOn: 'Normal', next: 'Normal', quickFormat: true,
|
|
761
|
+
run: { size: 24, bold: true, font: HEADING_FONT, color: '404040' },
|
|
762
|
+
paragraph: { spacing: { before: 200, after: 100 }, outlineLevel: 2 } },
|
|
763
|
+
],
|
|
764
|
+
},
|
|
765
|
+
numbering: {
|
|
766
|
+
config: [
|
|
767
|
+
{ reference: 'bullets',
|
|
768
|
+
levels: [
|
|
769
|
+
{ level: 0, format: LevelFormat.BULLET, text: '•', alignment: AlignmentType.LEFT,
|
|
770
|
+
style: { paragraph: { indent: { left: 720, hanging: 360 } } } },
|
|
771
|
+
{ level: 1, format: LevelFormat.BULLET, text: '◦', alignment: AlignmentType.LEFT,
|
|
772
|
+
style: { paragraph: { indent: { left: 1440, hanging: 360 } } } },
|
|
773
|
+
],
|
|
774
|
+
},
|
|
775
|
+
{ reference: 'numbers',
|
|
776
|
+
levels: [
|
|
777
|
+
{ level: 0, format: LevelFormat.DECIMAL, text: '%1.', alignment: AlignmentType.LEFT,
|
|
778
|
+
style: { paragraph: { indent: { left: 720, hanging: 360 } } } },
|
|
779
|
+
],
|
|
780
|
+
},
|
|
781
|
+
],
|
|
782
|
+
},
|
|
783
|
+
sections: [{
|
|
784
|
+
properties: {
|
|
785
|
+
page: {
|
|
786
|
+
size: { width: 12240, height: 15840 }, // US Letter
|
|
787
|
+
margin: { top: 1440, right: 1440, bottom: 1440, left: 1440 }, // 1"
|
|
788
|
+
},
|
|
789
|
+
},
|
|
790
|
+
children: sections,
|
|
791
|
+
}],
|
|
792
|
+
});
|
|
793
|
+
|
|
794
|
+
const outDir = path.join(__dirname, '..', 'docs');
|
|
795
|
+
const outPath = path.join(outDir, 'Loxia-Autopilot-Onboarding-Deep-Track.docx');
|
|
796
|
+
|
|
797
|
+
Packer.toBuffer(doc)
|
|
798
|
+
.then(buf => {
|
|
799
|
+
fs.writeFileSync(outPath, buf);
|
|
800
|
+
console.log('Wrote', outPath, '(' + buf.length + ' bytes)');
|
|
801
|
+
})
|
|
802
|
+
.catch(err => {
|
|
803
|
+
console.error('Failed:', err);
|
|
804
|
+
process.exit(1);
|
|
805
|
+
});
|