agent-enderun 0.9.0 → 0.9.2
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/.enderun/BRAIN_DASHBOARD.md +2 -2
- package/.enderun/PROJECT_MEMORY.md +28 -4
- package/.enderun/STATUS.md +24 -28
- package/.enderun/agents/backend.md +37 -8
- package/.enderun/agents/database.md +55 -0
- package/.enderun/agents/devops.md +28 -14
- package/.enderun/agents/explorer.md +1 -1
- package/.enderun/agents/frontend.md +21 -7
- package/.enderun/agents/git.md +1 -1
- package/.enderun/agents/manager.md +41 -20
- package/.enderun/agents/mobile.md +1 -1
- package/.enderun/agents/native.md +1 -1
- package/.enderun/agents/quality.md +122 -0
- package/.enderun/cli-commands.json +3 -3
- package/.enderun/config.json +7 -1
- package/.enderun/knowledge/context_boundary_rules.md +57 -0
- package/.enderun/knowledge/corporate-governance/high-risk-action-approval-flow.md +29 -0
- package/.enderun/knowledge/documentation_ownership.md +53 -0
- package/.enderun/knowledge/frontend_professionalization_guidelines.md +7 -7
- package/.enderun/knowledge/hermes_live_test_guidelines.md +5 -5
- package/.enderun/knowledge/lessons-learned.md +14 -0
- package/.enderun/knowledge/manager_authority_audit_enforcement.md +8 -8
- package/.enderun/knowledge/project_scaffold_guidelines.md +4 -4
- package/.enderun/knowledge/reference_application_guidelines.md +6 -6
- package/.enderun/memory-graph/agent-contexts/quality.json +1 -0
- package/.enderun/queue/README.md +13 -13
- package/README.md +204 -102
- package/bin/cli.js +1 -1
- package/bin/init-check.js +69 -0
- package/bin/update-contract.js +24 -2
- package/docs/README.md +21 -32
- package/docs/architecture/README.md +9 -0
- package/docs/architecture/standards/data-fetching-patterns.md +13 -0
- package/docs/architecture/standards/design-system.md +31 -0
- package/docs/architecture/standards/logging.md +7 -0
- package/docs/architecture/standards/tech-stack.md +9 -0
- package/docs/getting-started.md +9 -259
- package/docs/user/README.md +35 -0
- package/docs/user/action-plan-2026.md +9 -0
- package/docs/user/getting-started.md +13 -0
- package/docs/user/roadmap.md +13 -0
- package/eslint.config.js +1 -1
- package/framework-mcp/dist/index.js +7 -13
- package/framework-mcp/node_modules/@types/node/LICENSE +21 -0
- package/framework-mcp/node_modules/@types/node/README.md +15 -0
- package/framework-mcp/node_modules/@types/node/assert/strict.d.ts +111 -0
- package/framework-mcp/node_modules/@types/node/assert.d.ts +1078 -0
- package/framework-mcp/node_modules/@types/node/async_hooks.d.ts +603 -0
- package/framework-mcp/node_modules/@types/node/buffer.buffer.d.ts +472 -0
- package/framework-mcp/node_modules/@types/node/buffer.d.ts +1934 -0
- package/framework-mcp/node_modules/@types/node/child_process.d.ts +1476 -0
- package/framework-mcp/node_modules/@types/node/cluster.d.ts +578 -0
- package/framework-mcp/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
- package/framework-mcp/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/framework-mcp/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/framework-mcp/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
- package/framework-mcp/node_modules/@types/node/console.d.ts +452 -0
- package/framework-mcp/node_modules/@types/node/constants.d.ts +21 -0
- package/framework-mcp/node_modules/@types/node/crypto.d.ts +4545 -0
- package/framework-mcp/node_modules/@types/node/dgram.d.ts +600 -0
- package/framework-mcp/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/framework-mcp/node_modules/@types/node/dns/promises.d.ts +503 -0
- package/framework-mcp/node_modules/@types/node/dns.d.ts +923 -0
- package/framework-mcp/node_modules/@types/node/domain.d.ts +170 -0
- package/framework-mcp/node_modules/@types/node/events.d.ts +976 -0
- package/framework-mcp/node_modules/@types/node/fs/promises.d.ts +1295 -0
- package/framework-mcp/node_modules/@types/node/fs.d.ts +4461 -0
- package/framework-mcp/node_modules/@types/node/globals.d.ts +172 -0
- package/framework-mcp/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/framework-mcp/node_modules/@types/node/http.d.ts +2089 -0
- package/framework-mcp/node_modules/@types/node/http2.d.ts +2721 -0
- package/framework-mcp/node_modules/@types/node/https.d.ts +579 -0
- package/framework-mcp/node_modules/@types/node/index.d.ts +97 -0
- package/framework-mcp/node_modules/@types/node/inspector.d.ts +253 -0
- package/framework-mcp/node_modules/@types/node/inspector.generated.d.ts +4052 -0
- package/framework-mcp/node_modules/@types/node/module.d.ts +891 -0
- package/framework-mcp/node_modules/@types/node/net.d.ts +1076 -0
- package/framework-mcp/node_modules/@types/node/os.d.ts +506 -0
- package/framework-mcp/node_modules/@types/node/package.json +145 -0
- package/framework-mcp/node_modules/@types/node/path.d.ts +200 -0
- package/framework-mcp/node_modules/@types/node/perf_hooks.d.ts +968 -0
- package/framework-mcp/node_modules/@types/node/process.d.ts +2084 -0
- package/framework-mcp/node_modules/@types/node/punycode.d.ts +117 -0
- package/framework-mcp/node_modules/@types/node/querystring.d.ts +152 -0
- package/framework-mcp/node_modules/@types/node/readline/promises.d.ts +161 -0
- package/framework-mcp/node_modules/@types/node/readline.d.ts +594 -0
- package/framework-mcp/node_modules/@types/node/repl.d.ts +428 -0
- package/framework-mcp/node_modules/@types/node/sea.d.ts +153 -0
- package/framework-mcp/node_modules/@types/node/sqlite.d.ts +721 -0
- package/framework-mcp/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/framework-mcp/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/framework-mcp/node_modules/@types/node/stream/web.d.ts +622 -0
- package/framework-mcp/node_modules/@types/node/stream.d.ts +1687 -0
- package/framework-mcp/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/framework-mcp/node_modules/@types/node/test.d.ts +2163 -0
- package/framework-mcp/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/framework-mcp/node_modules/@types/node/timers.d.ts +287 -0
- package/framework-mcp/node_modules/@types/node/tls.d.ts +1319 -0
- package/framework-mcp/node_modules/@types/node/trace_events.d.ts +197 -0
- package/framework-mcp/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/framework-mcp/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/framework-mcp/node_modules/@types/node/ts5.6/index.d.ts +97 -0
- package/framework-mcp/node_modules/@types/node/tty.d.ts +208 -0
- package/framework-mcp/node_modules/@types/node/url.d.ts +984 -0
- package/framework-mcp/node_modules/@types/node/util.d.ts +2606 -0
- package/framework-mcp/node_modules/@types/node/v8.d.ts +920 -0
- package/framework-mcp/node_modules/@types/node/vm.d.ts +1000 -0
- package/framework-mcp/node_modules/@types/node/wasi.d.ts +181 -0
- package/framework-mcp/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/framework-mcp/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/framework-mcp/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/framework-mcp/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- package/framework-mcp/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
- package/framework-mcp/node_modules/@types/node/web-globals/storage.d.ts +24 -0
- package/framework-mcp/node_modules/@types/node/worker_threads.d.ts +784 -0
- package/framework-mcp/node_modules/@types/node/zlib.d.ts +747 -0
- package/framework-mcp/node_modules/typescript/LICENSE.txt +55 -0
- package/framework-mcp/node_modules/typescript/README.md +50 -0
- package/framework-mcp/node_modules/typescript/SECURITY.md +41 -0
- package/framework-mcp/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/framework-mcp/node_modules/typescript/bin/tsc +2 -0
- package/framework-mcp/node_modules/typescript/bin/tsserver +2 -0
- package/framework-mcp/node_modules/typescript/lib/_tsc.js +133818 -0
- package/framework-mcp/node_modules/typescript/lib/_tsserver.js +659 -0
- package/framework-mcp/node_modules/typescript/lib/_typingsInstaller.js +222 -0
- package/framework-mcp/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/lib.d.ts +22 -0
- package/framework-mcp/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
- package/framework-mcp/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
- package/framework-mcp/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
- package/framework-mcp/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
- package/framework-mcp/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
- package/framework-mcp/node_modules/typescript/lib/lib.es6.d.ts +23 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
- package/framework-mcp/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
- package/framework-mcp/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
- package/framework-mcp/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
- package/framework-mcp/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
- package/framework-mcp/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
- package/framework-mcp/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
- package/framework-mcp/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/tsc.js +8 -0
- package/framework-mcp/node_modules/typescript/lib/tsserver.js +8 -0
- package/framework-mcp/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- package/framework-mcp/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- package/framework-mcp/node_modules/typescript/lib/typesMap.json +497 -0
- package/framework-mcp/node_modules/typescript/lib/typescript.d.ts +11437 -0
- package/framework-mcp/node_modules/typescript/lib/typescript.js +200276 -0
- package/framework-mcp/node_modules/typescript/lib/typingsInstaller.js +8 -0
- package/framework-mcp/node_modules/typescript/lib/watchGuard.js +53 -0
- package/framework-mcp/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
- package/framework-mcp/node_modules/typescript/package.json +120 -0
- package/framework-mcp/node_modules/undici-types/LICENSE +21 -0
- package/framework-mcp/node_modules/undici-types/README.md +6 -0
- package/framework-mcp/node_modules/undici-types/agent.d.ts +31 -0
- package/framework-mcp/node_modules/undici-types/api.d.ts +43 -0
- package/framework-mcp/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/framework-mcp/node_modules/undici-types/cache.d.ts +36 -0
- package/framework-mcp/node_modules/undici-types/client.d.ts +108 -0
- package/framework-mcp/node_modules/undici-types/connector.d.ts +34 -0
- package/framework-mcp/node_modules/undici-types/content-type.d.ts +21 -0
- package/framework-mcp/node_modules/undici-types/cookies.d.ts +28 -0
- package/framework-mcp/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/framework-mcp/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/framework-mcp/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/framework-mcp/node_modules/undici-types/errors.d.ts +149 -0
- package/framework-mcp/node_modules/undici-types/eventsource.d.ts +61 -0
- package/framework-mcp/node_modules/undici-types/fetch.d.ts +209 -0
- package/framework-mcp/node_modules/undici-types/file.d.ts +39 -0
- package/framework-mcp/node_modules/undici-types/filereader.d.ts +54 -0
- package/framework-mcp/node_modules/undici-types/formdata.d.ts +108 -0
- package/framework-mcp/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/framework-mcp/node_modules/undici-types/global-origin.d.ts +7 -0
- package/framework-mcp/node_modules/undici-types/handlers.d.ts +15 -0
- package/framework-mcp/node_modules/undici-types/header.d.ts +4 -0
- package/framework-mcp/node_modules/undici-types/index.d.ts +71 -0
- package/framework-mcp/node_modules/undici-types/interceptors.d.ts +17 -0
- package/framework-mcp/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/framework-mcp/node_modules/undici-types/mock-client.d.ts +25 -0
- package/framework-mcp/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/framework-mcp/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/framework-mcp/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/framework-mcp/node_modules/undici-types/package.json +55 -0
- package/framework-mcp/node_modules/undici-types/patch.d.ts +33 -0
- package/framework-mcp/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/framework-mcp/node_modules/undici-types/pool.d.ts +39 -0
- package/framework-mcp/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/framework-mcp/node_modules/undici-types/readable.d.ts +65 -0
- package/framework-mcp/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/framework-mcp/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/framework-mcp/node_modules/undici-types/util.d.ts +18 -0
- package/framework-mcp/node_modules/undici-types/webidl.d.ts +228 -0
- package/framework-mcp/node_modules/undici-types/websocket.d.ts +150 -0
- package/framework-mcp/src/declarations.d.ts +3 -0
- package/framework-mcp/src/index.ts +228 -0
- package/package.json +4 -3
- package/src/cli/adapters.ts +208 -0
- package/src/cli/commands/app.ts +38 -0
- package/src/cli/commands/check.ts +87 -0
- package/src/cli/commands/compliance.ts +55 -0
- package/src/cli/commands/contract.ts +45 -0
- package/src/cli/commands/explorer.ts +45 -0
- package/src/cli/commands/git.ts +39 -0
- package/src/cli/commands/init.ts +272 -0
- package/src/cli/commands/knowledge.ts +44 -0
- package/src/cli/commands/lint.ts +25 -0
- package/src/cli/commands/log.ts +37 -0
- package/src/cli/commands/memory.ts +78 -0
- package/src/cli/commands/orchestrate.ts +111 -0
- package/src/cli/commands/script.ts +20 -0
- package/src/cli/commands/security.ts +38 -0
- package/src/cli/commands/status.ts +59 -0
- package/src/cli/commands/trace.ts +46 -0
- package/src/cli/index.ts +107 -0
- package/src/cli/utils/app.ts +764 -0
- package/src/cli/utils/claude.ts +56 -0
- package/src/cli/utils/fs.ts +139 -0
- package/src/cli/utils/memory.ts +141 -0
- package/src/cli/utils/pkg.ts +215 -0
- package/src/cli/utils/string.ts +48 -0
- package/src/cli/utils/time.ts +27 -0
- package/.enderun/agents/analyst.md +0 -236
- package/.enderun/agents/orchestrator.md +0 -172
- package/.enderun/agents/qa.md +0 -121
- package/.enderun/agents/security.md +0 -202
- package/.enderun/knowledge/api_design_rules.md +0 -6
- package/.enderun/knowledge/branded_types_pattern.md +0 -8
- package/.enderun/knowledge/code_review_checklist.md +0 -7
- package/.enderun/knowledge/contract_versioning.md +0 -7
- package/.enderun/knowledge/database_migration.md +0 -6
- package/.enderun/knowledge/deployment_checklist.md +0 -7
- package/.enderun/knowledge/git_commit_strategy.md +0 -10
- package/.enderun/knowledge/monitoring_setup.md +0 -5
- package/.enderun/knowledge/performance_guidelines.md +0 -11
- package/.enderun/knowledge/repository_patterns.md +0 -9
- package/.enderun/knowledge/security_scanning.md +0 -6
- package/.enderun/knowledge/testing_standards.md +0 -7
- package/.enderun/knowledge/troubleshooting_guide.md +0 -5
- package/.enderun/memory-graph/agent-contexts/analyst.json +0 -1
- package/.enderun/memory-graph/agent-contexts/orchestrator.json +0 -1
- package/.enderun/memory-graph/agent-contexts/qa.json +0 -1
- package/.enderun/memory-graph/agent-contexts/security.json +0 -1
- package/docs/action-plan-2026.md +0 -119
- package/docs/roadmap.md +0 -142
- package/docs/tech-stack.md +0 -30
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
/*! *****************************************************************************
|
|
2
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
4
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
5
|
+
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
8
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
9
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
10
|
+
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
11
|
+
|
|
12
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
13
|
+
and limitations under the License.
|
|
14
|
+
***************************************************************************** */
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/// <reference no-default-lib="true"/>
|
|
18
|
+
|
|
19
|
+
interface Map<K, V> {
|
|
20
|
+
clear(): void;
|
|
21
|
+
/**
|
|
22
|
+
* @returns true if an element in the Map existed and has been removed, or false if the element does not exist.
|
|
23
|
+
*/
|
|
24
|
+
delete(key: K): boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Executes a provided function once per each key/value pair in the Map, in insertion order.
|
|
27
|
+
*/
|
|
28
|
+
forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void;
|
|
29
|
+
/**
|
|
30
|
+
* Returns a specified element from the Map object. If the value that is associated to the provided key is an object, then you will get a reference to that object and any change made to that object will effectively modify it inside the Map.
|
|
31
|
+
* @returns Returns the element associated with the specified key. If no element is associated with the specified key, undefined is returned.
|
|
32
|
+
*/
|
|
33
|
+
get(key: K): V | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* @returns boolean indicating whether an element with the specified key exists or not.
|
|
36
|
+
*/
|
|
37
|
+
has(key: K): boolean;
|
|
38
|
+
/**
|
|
39
|
+
* Adds a new element with a specified key and value to the Map. If an element with the same key already exists, the element will be updated.
|
|
40
|
+
*/
|
|
41
|
+
set(key: K, value: V): this;
|
|
42
|
+
/**
|
|
43
|
+
* @returns the number of elements in the Map.
|
|
44
|
+
*/
|
|
45
|
+
readonly size: number;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
interface MapConstructor {
|
|
49
|
+
new (): Map<any, any>;
|
|
50
|
+
new <K, V>(entries?: readonly (readonly [K, V])[] | null): Map<K, V>;
|
|
51
|
+
readonly prototype: Map<any, any>;
|
|
52
|
+
}
|
|
53
|
+
declare var Map: MapConstructor;
|
|
54
|
+
|
|
55
|
+
interface ReadonlyMap<K, V> {
|
|
56
|
+
forEach(callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void, thisArg?: any): void;
|
|
57
|
+
get(key: K): V | undefined;
|
|
58
|
+
has(key: K): boolean;
|
|
59
|
+
readonly size: number;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
interface WeakMap<K extends WeakKey, V> {
|
|
63
|
+
/**
|
|
64
|
+
* Removes the specified element from the WeakMap.
|
|
65
|
+
* @returns true if the element was successfully removed, or false if it was not present.
|
|
66
|
+
*/
|
|
67
|
+
delete(key: K): boolean;
|
|
68
|
+
/**
|
|
69
|
+
* @returns a specified element.
|
|
70
|
+
*/
|
|
71
|
+
get(key: K): V | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* @returns a boolean indicating whether an element with the specified key exists or not.
|
|
74
|
+
*/
|
|
75
|
+
has(key: K): boolean;
|
|
76
|
+
/**
|
|
77
|
+
* Adds a new element with a specified key and value.
|
|
78
|
+
* @param key Must be an object or symbol.
|
|
79
|
+
*/
|
|
80
|
+
set(key: K, value: V): this;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
interface WeakMapConstructor {
|
|
84
|
+
new <K extends WeakKey = WeakKey, V = any>(entries?: readonly (readonly [K, V])[] | null): WeakMap<K, V>;
|
|
85
|
+
readonly prototype: WeakMap<WeakKey, any>;
|
|
86
|
+
}
|
|
87
|
+
declare var WeakMap: WeakMapConstructor;
|
|
88
|
+
|
|
89
|
+
interface Set<T> {
|
|
90
|
+
/**
|
|
91
|
+
* Appends a new element with a specified value to the end of the Set.
|
|
92
|
+
*/
|
|
93
|
+
add(value: T): this;
|
|
94
|
+
|
|
95
|
+
clear(): void;
|
|
96
|
+
/**
|
|
97
|
+
* Removes a specified value from the Set.
|
|
98
|
+
* @returns Returns true if an element in the Set existed and has been removed, or false if the element does not exist.
|
|
99
|
+
*/
|
|
100
|
+
delete(value: T): boolean;
|
|
101
|
+
/**
|
|
102
|
+
* Executes a provided function once per each value in the Set object, in insertion order.
|
|
103
|
+
*/
|
|
104
|
+
forEach(callbackfn: (value: T, value2: T, set: Set<T>) => void, thisArg?: any): void;
|
|
105
|
+
/**
|
|
106
|
+
* @returns a boolean indicating whether an element with the specified value exists in the Set or not.
|
|
107
|
+
*/
|
|
108
|
+
has(value: T): boolean;
|
|
109
|
+
/**
|
|
110
|
+
* @returns the number of (unique) elements in Set.
|
|
111
|
+
*/
|
|
112
|
+
readonly size: number;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
interface SetConstructor {
|
|
116
|
+
new <T = any>(values?: readonly T[] | null): Set<T>;
|
|
117
|
+
readonly prototype: Set<any>;
|
|
118
|
+
}
|
|
119
|
+
declare var Set: SetConstructor;
|
|
120
|
+
|
|
121
|
+
interface ReadonlySet<T> {
|
|
122
|
+
forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any): void;
|
|
123
|
+
has(value: T): boolean;
|
|
124
|
+
readonly size: number;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
interface WeakSet<T extends WeakKey> {
|
|
128
|
+
/**
|
|
129
|
+
* Appends a new value to the end of the WeakSet.
|
|
130
|
+
*/
|
|
131
|
+
add(value: T): this;
|
|
132
|
+
/**
|
|
133
|
+
* Removes the specified element from the WeakSet.
|
|
134
|
+
* @returns Returns true if the element existed and has been removed, or false if the element does not exist.
|
|
135
|
+
*/
|
|
136
|
+
delete(value: T): boolean;
|
|
137
|
+
/**
|
|
138
|
+
* @returns a boolean indicating whether a value exists in the WeakSet or not.
|
|
139
|
+
*/
|
|
140
|
+
has(value: T): boolean;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
interface WeakSetConstructor {
|
|
144
|
+
new <T extends WeakKey = WeakKey>(values?: readonly T[] | null): WeakSet<T>;
|
|
145
|
+
readonly prototype: WeakSet<WeakKey>;
|
|
146
|
+
}
|
|
147
|
+
declare var WeakSet: WeakSetConstructor;
|