apex-ray 0.1.0__tar.gz
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.
- apex_ray-0.1.0/.gitignore +34 -0
- apex_ray-0.1.0/CHANGELOG.md +47 -0
- apex_ray-0.1.0/CONTRIBUTING.md +79 -0
- apex_ray-0.1.0/LICENSE +178 -0
- apex_ray-0.1.0/PKG-INFO +296 -0
- apex_ray-0.1.0/README.md +270 -0
- apex_ray-0.1.0/analyzers/typescript/dist/analyze.d.ts +1 -0
- apex_ray-0.1.0/analyzers/typescript/dist/analyze.js +2 -0
- apex_ray-0.1.0/analyzers/typescript/dist/analyzer.d.ts +3 -0
- apex_ray-0.1.0/analyzers/typescript/dist/analyzer.js +92 -0
- apex_ray-0.1.0/analyzers/typescript/dist/ast-utils.d.ts +17 -0
- apex_ray-0.1.0/analyzers/typescript/dist/ast-utils.js +103 -0
- apex_ray-0.1.0/analyzers/typescript/dist/checker-utils.d.ts +2 -0
- apex_ray-0.1.0/analyzers/typescript/dist/checker-utils.js +14 -0
- apex_ray-0.1.0/analyzers/typescript/dist/cli.d.ts +5 -0
- apex_ray-0.1.0/analyzers/typescript/dist/cli.js +88 -0
- apex_ray-0.1.0/analyzers/typescript/dist/constants.d.ts +13 -0
- apex_ray-0.1.0/analyzers/typescript/dist/constants.js +53 -0
- apex_ray-0.1.0/analyzers/typescript/dist/contracts/analysis.d.ts +4 -0
- apex_ray-0.1.0/analyzers/typescript/dist/contracts/analysis.js +195 -0
- apex_ray-0.1.0/analyzers/typescript/dist/contracts/dependencies.d.ts +6 -0
- apex_ray-0.1.0/analyzers/typescript/dist/contracts/dependencies.js +207 -0
- apex_ray-0.1.0/analyzers/typescript/dist/contracts/metadata.d.ts +6 -0
- apex_ray-0.1.0/analyzers/typescript/dist/contracts/metadata.js +176 -0
- apex_ray-0.1.0/analyzers/typescript/dist/contracts/targets.d.ts +7 -0
- apex_ray-0.1.0/analyzers/typescript/dist/contracts/targets.js +107 -0
- apex_ray-0.1.0/analyzers/typescript/dist/declaration-utils.d.ts +7 -0
- apex_ray-0.1.0/analyzers/typescript/dist/declaration-utils.js +52 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/di.d.ts +4 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/di.js +174 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/import-export.d.ts +5 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/import-export.js +157 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/imports.d.ts +3 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/imports.js +238 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/repo-cache.d.ts +4 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/repo-cache.js +158 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/repo.d.ts +3 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/repo.js +68 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/semantic-file.d.ts +6 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/semantic-file.js +209 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/source-file.d.ts +12 -0
- apex_ray-0.1.0/analyzers/typescript/dist/indexes/source-file.js +28 -0
- apex_ray-0.1.0/analyzers/typescript/dist/module-resolution.d.ts +4 -0
- apex_ray-0.1.0/analyzers/typescript/dist/module-resolution.js +227 -0
- apex_ray-0.1.0/analyzers/typescript/dist/package-info.d.ts +2 -0
- apex_ray-0.1.0/analyzers/typescript/dist/package-info.js +20 -0
- apex_ray-0.1.0/analyzers/typescript/dist/program.d.ts +4 -0
- apex_ray-0.1.0/analyzers/typescript/dist/program.js +160 -0
- apex_ray-0.1.0/analyzers/typescript/dist/references/analysis.d.ts +9 -0
- apex_ray-0.1.0/analyzers/typescript/dist/references/analysis.js +231 -0
- apex_ray-0.1.0/analyzers/typescript/dist/references/merge.d.ts +3 -0
- apex_ray-0.1.0/analyzers/typescript/dist/references/merge.js +45 -0
- apex_ray-0.1.0/analyzers/typescript/dist/references/target-match.d.ts +4 -0
- apex_ray-0.1.0/analyzers/typescript/dist/references/target-match.js +67 -0
- apex_ray-0.1.0/analyzers/typescript/dist/references/utils.d.ts +7 -0
- apex_ray-0.1.0/analyzers/typescript/dist/references/utils.js +109 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/collection.d.ts +5 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/collection.js +162 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/export-info.d.ts +5 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/export-info.js +66 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/implemented-members.d.ts +4 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/implemented-members.js +43 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/synthetic-array-entries.d.ts +5 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/synthetic-array-entries.js +174 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/synthetic.d.ts +7 -0
- apex_ray-0.1.0/analyzers/typescript/dist/symbols/synthetic.js +198 -0
- apex_ray-0.1.0/analyzers/typescript/dist/test-discovery.d.ts +3 -0
- apex_ray-0.1.0/analyzers/typescript/dist/test-discovery.js +251 -0
- apex_ray-0.1.0/analyzers/typescript/dist/types.d.ts +219 -0
- apex_ray-0.1.0/analyzers/typescript/dist/types.js +1 -0
- apex_ray-0.1.0/analyzers/typescript/dist/utils.d.ts +14 -0
- apex_ray-0.1.0/analyzers/typescript/dist/utils.js +74 -0
- apex_ray-0.1.0/analyzers/typescript/dist/workspace/export-names.d.ts +2 -0
- apex_ray-0.1.0/analyzers/typescript/dist/workspace/export-names.js +68 -0
- apex_ray-0.1.0/analyzers/typescript/dist/workspace/import-bindings.d.ts +4 -0
- apex_ray-0.1.0/analyzers/typescript/dist/workspace/import-bindings.js +83 -0
- apex_ray-0.1.0/analyzers/typescript/dist/workspace/member-receivers.d.ts +5 -0
- apex_ray-0.1.0/analyzers/typescript/dist/workspace/member-receivers.js +152 -0
- apex_ray-0.1.0/analyzers/typescript/dist/workspace/references.d.ts +6 -0
- apex_ray-0.1.0/analyzers/typescript/dist/workspace/references.js +248 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/LICENSE.txt +55 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/README.md +50 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/SECURITY.md +39 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/bin/tsc +2 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/bin/tsserver +2 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/_tsc.js +134465 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/_tsserver.js +659 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/_typingsInstaller.js +222 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2129 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2125 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2129 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2129 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2125 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2129 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2129 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.d.ts +20 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.decorators.d.ts +382 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.decorators.legacy.d.ts +20 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +18 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.dom.d.ts +45125 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.dom.iterable.d.ts +18 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.collection.d.ts +150 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.core.d.ts +595 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.d.ts +26 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.generator.d.ts +75 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.iterable.d.ts +603 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.promise.d.ts +79 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.proxy.d.ts +126 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.reflect.d.ts +142 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.symbol.d.ts +44 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +324 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2016.array.include.d.ts +114 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2016.d.ts +19 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2016.full.d.ts +21 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2016.intl.d.ts +29 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +19 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2017.d.ts +24 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2017.date.d.ts +29 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2017.full.d.ts +21 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2017.intl.d.ts +42 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2017.object.d.ts +47 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +133 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2017.string.d.ts +43 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +51 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +75 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +51 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2018.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2018.full.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2018.intl.d.ts +81 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2018.promise.d.ts +28 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2018.regexp.d.ts +35 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2019.array.d.ts +77 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2019.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2019.full.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2019.intl.d.ts +21 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2019.object.d.ts +31 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2019.string.d.ts +35 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2019.symbol.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.bigint.d.ts +763 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.d.ts +25 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.date.d.ts +40 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.full.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.intl.d.ts +472 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.number.d.ts +26 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.promise.d.ts +45 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +39 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2021.d.ts +21 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2021.full.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2021.intl.d.ts +164 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2021.promise.d.ts +46 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2021.string.d.ts +31 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2022.array.d.ts +119 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2022.d.ts +23 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2022.full.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2022.intl.d.ts +143 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2022.object.d.ts +24 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2022.regexp.d.ts +37 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2022.string.d.ts +23 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2023.array.d.ts +922 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2023.collection.d.ts +19 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2023.d.ts +20 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2023.full.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2023.intl.d.ts +62 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +63 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2024.collection.d.ts +27 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2024.d.ts +24 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2024.full.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2024.object.d.ts +27 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2024.promise.d.ts +33 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2024.regexp.d.ts +23 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +66 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2024.string.d.ts +27 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2025.collection.d.ts +94 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2025.d.ts +23 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2025.float16.d.ts +443 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2025.full.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2025.intl.d.ts +200 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2025.iterator.d.ts +146 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2025.promise.d.ts +32 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es2025.regexp.d.ts +30 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es5.d.ts +4599 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.es6.d.ts +21 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.array.d.ts +33 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.collection.d.ts +47 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.d.ts +27 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.date.d.ts +21 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.decorators.d.ts +26 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.disposable.d.ts +191 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.error.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.full.d.ts +22 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.intl.d.ts +107 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +23 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.temporal.d.ts +485 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.esnext.typedarrays.d.ts +90 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.scripthost.d.ts +320 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +18 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.webworker.d.ts +15606 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +21 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/lib.webworker.iterable.d.ts +18 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2129 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2129 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2125 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2129 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/tsc.js +8 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/tsserver.js +8 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/typesMap.json +497 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/typescript.d.ts +11448 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/typescript.js +201039 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/typingsInstaller.js +8 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/watchGuard.js +53 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2129 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2125 -0
- apex_ray-0.1.0/analyzers/typescript/node_modules/typescript/package.json +118 -0
- apex_ray-0.1.0/analyzers/typescript/package-lock.json +48 -0
- apex_ray-0.1.0/analyzers/typescript/package.json +23 -0
- apex_ray-0.1.0/analyzers/typescript/src/analyze.ts +3 -0
- apex_ray-0.1.0/analyzers/typescript/src/analyzer.ts +151 -0
- apex_ray-0.1.0/analyzers/typescript/src/ast-utils.ts +110 -0
- apex_ray-0.1.0/analyzers/typescript/src/checker-utils.ts +13 -0
- apex_ray-0.1.0/analyzers/typescript/src/cli.ts +87 -0
- apex_ray-0.1.0/analyzers/typescript/src/constants.ts +53 -0
- apex_ray-0.1.0/analyzers/typescript/src/contracts/analysis.ts +242 -0
- apex_ray-0.1.0/analyzers/typescript/src/contracts/dependencies.ts +289 -0
- apex_ray-0.1.0/analyzers/typescript/src/contracts/metadata.ts +195 -0
- apex_ray-0.1.0/analyzers/typescript/src/contracts/targets.ts +117 -0
- apex_ray-0.1.0/analyzers/typescript/src/declaration-utils.ts +58 -0
- apex_ray-0.1.0/analyzers/typescript/src/indexes/di.ts +196 -0
- apex_ray-0.1.0/analyzers/typescript/src/indexes/import-export.ts +165 -0
- apex_ray-0.1.0/analyzers/typescript/src/indexes/imports.ts +260 -0
- apex_ray-0.1.0/analyzers/typescript/src/indexes/repo-cache.ts +204 -0
- apex_ray-0.1.0/analyzers/typescript/src/indexes/repo.ts +78 -0
- apex_ray-0.1.0/analyzers/typescript/src/indexes/semantic-file.ts +230 -0
- apex_ray-0.1.0/analyzers/typescript/src/indexes/source-file.ts +47 -0
- apex_ray-0.1.0/analyzers/typescript/src/module-resolution.ts +258 -0
- apex_ray-0.1.0/analyzers/typescript/src/package-info.ts +28 -0
- apex_ray-0.1.0/analyzers/typescript/src/program.ts +195 -0
- apex_ray-0.1.0/analyzers/typescript/src/references/analysis.ts +271 -0
- apex_ray-0.1.0/analyzers/typescript/src/references/merge.ts +41 -0
- apex_ray-0.1.0/analyzers/typescript/src/references/target-match.ts +83 -0
- apex_ray-0.1.0/analyzers/typescript/src/references/utils.ts +124 -0
- apex_ray-0.1.0/analyzers/typescript/src/symbols/collection.ts +178 -0
- apex_ray-0.1.0/analyzers/typescript/src/symbols/export-info.ts +73 -0
- apex_ray-0.1.0/analyzers/typescript/src/symbols/implemented-members.ts +40 -0
- apex_ray-0.1.0/analyzers/typescript/src/symbols/synthetic-array-entries.ts +212 -0
- apex_ray-0.1.0/analyzers/typescript/src/symbols/synthetic.ts +231 -0
- apex_ray-0.1.0/analyzers/typescript/src/test-discovery.ts +311 -0
- apex_ray-0.1.0/analyzers/typescript/src/types.ts +264 -0
- apex_ray-0.1.0/analyzers/typescript/src/utils.ts +82 -0
- apex_ray-0.1.0/analyzers/typescript/src/workspace/export-names.ts +87 -0
- apex_ray-0.1.0/analyzers/typescript/src/workspace/import-bindings.ts +126 -0
- apex_ray-0.1.0/analyzers/typescript/src/workspace/member-receivers.ts +184 -0
- apex_ray-0.1.0/analyzers/typescript/src/workspace/references.ts +275 -0
- apex_ray-0.1.0/analyzers/typescript/test/analyzer.test.ts +152 -0
- apex_ray-0.1.0/analyzers/typescript/test/cli.test.ts +39 -0
- apex_ray-0.1.0/analyzers/typescript/test/contract-analysis.test.ts +104 -0
- apex_ray-0.1.0/analyzers/typescript/test/contract-dependencies.test.ts +115 -0
- apex_ray-0.1.0/analyzers/typescript/test/contract-metadata.test.ts +88 -0
- apex_ray-0.1.0/analyzers/typescript/test/contract-targets.test.ts +105 -0
- apex_ray-0.1.0/analyzers/typescript/test/di-index.test.ts +52 -0
- apex_ray-0.1.0/analyzers/typescript/test/helpers.ts +18 -0
- apex_ray-0.1.0/analyzers/typescript/test/import-export-index.test.ts +55 -0
- apex_ray-0.1.0/analyzers/typescript/test/import-index.test.ts +28 -0
- apex_ray-0.1.0/analyzers/typescript/test/module-resolution.test.ts +148 -0
- apex_ray-0.1.0/analyzers/typescript/test/program.test.ts +49 -0
- apex_ray-0.1.0/analyzers/typescript/test/reference-analysis.test.ts +121 -0
- apex_ray-0.1.0/analyzers/typescript/test/reference-merge.test.ts +34 -0
- apex_ray-0.1.0/analyzers/typescript/test/reference-target-match.test.ts +73 -0
- apex_ray-0.1.0/analyzers/typescript/test/repo-index-cache.test.ts +49 -0
- apex_ray-0.1.0/analyzers/typescript/test/repo-index.test.ts +61 -0
- apex_ray-0.1.0/analyzers/typescript/test/semantic-file-index.test.ts +57 -0
- apex_ray-0.1.0/analyzers/typescript/test/source-file-index.test.ts +79 -0
- apex_ray-0.1.0/analyzers/typescript/test/symbol-collection.test.ts +86 -0
- apex_ray-0.1.0/analyzers/typescript/test/symbol-export-info.test.ts +43 -0
- apex_ray-0.1.0/analyzers/typescript/test/synthetic-array-entries.test.ts +47 -0
- apex_ray-0.1.0/analyzers/typescript/test/synthetic-symbols.test.ts +182 -0
- apex_ray-0.1.0/analyzers/typescript/test/test-discovery.test.ts +57 -0
- apex_ray-0.1.0/analyzers/typescript/test/workspace-export-names.test.ts +126 -0
- apex_ray-0.1.0/analyzers/typescript/test/workspace-import-bindings.test.ts +142 -0
- apex_ray-0.1.0/analyzers/typescript/test/workspace-member-receivers.test.ts +213 -0
- apex_ray-0.1.0/analyzers/typescript/test/workspace-references.test.ts +105 -0
- apex_ray-0.1.0/analyzers/typescript/tsconfig.json +15 -0
- apex_ray-0.1.0/analyzers/typescript/tsconfig.test.json +10 -0
- apex_ray-0.1.0/docs/architecture.md +283 -0
- apex_ray-0.1.0/docs/assets/apex-ray-logo-animated.svg +237 -0
- apex_ray-0.1.0/docs/assets/apex-ray-logo.svg +147 -0
- apex_ray-0.1.0/docs/configuration.md +106 -0
- apex_ray-0.1.0/docs/development.md +91 -0
- apex_ray-0.1.0/docs/memory.md +41 -0
- apex_ray-0.1.0/docs/pr-eval.md +138 -0
- apex_ray-0.1.0/docs/providers.md +54 -0
- apex_ray-0.1.0/docs/telemetry.md +39 -0
- apex_ray-0.1.0/pyproject.toml +113 -0
- apex_ray-0.1.0/src/apex_ray/__init__.py +8 -0
- apex_ray-0.1.0/src/apex_ray/analyzers.py +367 -0
- apex_ray-0.1.0/src/apex_ray/benchmark/__init__.py +51 -0
- apex_ray-0.1.0/src/apex_ray/benchmark/capture.py +260 -0
- apex_ray-0.1.0/src/apex_ray/benchmark/errors.py +2 -0
- apex_ray-0.1.0/src/apex_ray/benchmark/matching.py +202 -0
- apex_ray-0.1.0/src/apex_ray/benchmark/models.py +210 -0
- apex_ray-0.1.0/src/apex_ray/benchmark/reporting.py +452 -0
- apex_ray-0.1.0/src/apex_ray/benchmark/runner.py +219 -0
- apex_ray-0.1.0/src/apex_ray/classify.py +261 -0
- apex_ray-0.1.0/src/apex_ray/cli/__init__.py +17 -0
- apex_ray-0.1.0/src/apex_ray/cli/benchmark.py +198 -0
- apex_ray-0.1.0/src/apex_ray/cli/common.py +16 -0
- apex_ray-0.1.0/src/apex_ray/cli/eval.py +249 -0
- apex_ray-0.1.0/src/apex_ray/cli/gate.py +169 -0
- apex_ray-0.1.0/src/apex_ray/cli/main.py +443 -0
- apex_ray-0.1.0/src/apex_ray/cli/memory.py +62 -0
- apex_ray-0.1.0/src/apex_ray/config.py +658 -0
- apex_ray-0.1.0/src/apex_ray/context/__init__.py +11 -0
- apex_ray-0.1.0/src/apex_ray/context/budget.py +266 -0
- apex_ray-0.1.0/src/apex_ray/context/packs.py +711 -0
- apex_ray-0.1.0/src/apex_ray/context/snippets.py +366 -0
- apex_ray-0.1.0/src/apex_ray/diff.py +150 -0
- apex_ray-0.1.0/src/apex_ray/discovery.py +168 -0
- apex_ray-0.1.0/src/apex_ray/gates.py +200 -0
- apex_ray-0.1.0/src/apex_ray/git.py +85 -0
- apex_ray-0.1.0/src/apex_ray/invocation.py +74 -0
- apex_ray-0.1.0/src/apex_ray/line_ranges.py +43 -0
- apex_ray-0.1.0/src/apex_ray/llm/__init__.py +59 -0
- apex_ray-0.1.0/src/apex_ray/llm/cache.py +181 -0
- apex_ray-0.1.0/src/apex_ray/llm/cli.py +98 -0
- apex_ray-0.1.0/src/apex_ray/llm/errors.py +11 -0
- apex_ray-0.1.0/src/apex_ray/llm/findings.py +75 -0
- apex_ray-0.1.0/src/apex_ray/llm/prompts.py +95 -0
- apex_ray-0.1.0/src/apex_ray/llm/providers.py +252 -0
- apex_ray-0.1.0/src/apex_ray/llm/responses.py +174 -0
- apex_ray-0.1.0/src/apex_ray/llm/review.py +304 -0
- apex_ray-0.1.0/src/apex_ray/llm/routing.py +222 -0
- apex_ray-0.1.0/src/apex_ray/llm/usage.py +26 -0
- apex_ray-0.1.0/src/apex_ray/memory.py +452 -0
- apex_ray-0.1.0/src/apex_ray/models.py +734 -0
- apex_ray-0.1.0/src/apex_ray/pipeline/__init__.py +17 -0
- apex_ray-0.1.0/src/apex_ray/pipeline/findings.py +131 -0
- apex_ray-0.1.0/src/apex_ray/pipeline/runner.py +276 -0
- apex_ray-0.1.0/src/apex_ray/pipeline/selection.py +427 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/__init__.py +61 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/github.py +296 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/greptile.py +200 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/matching.py +174 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/models.py +293 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/report.py +285 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/runner.py +949 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/state.py +209 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/store.py +222 -0
- apex_ray-0.1.0/src/apex_ray/pr_eval/text.py +5 -0
- apex_ray-0.1.0/src/apex_ray/report/__init__.py +9 -0
- apex_ray-0.1.0/src/apex_ray/report/core.py +433 -0
- apex_ray-0.1.0/src/apex_ray/report/coverage.py +502 -0
- apex_ray-0.1.0/src/apex_ray/report/coverage_breakdown.py +218 -0
- apex_ray-0.1.0/src/apex_ray/report/formatting.py +25 -0
- apex_ray-0.1.0/src/apex_ray/report/html.py +178 -0
- apex_ray-0.1.0/src/apex_ray/rules.py +195 -0
- apex_ray-0.1.0/src/apex_ray/telemetry.py +168 -0
- apex_ray-0.1.0/tests/benchmarks/cart_bug_fake.yml +25 -0
- apex_ray-0.1.0/tests/benchmarks/codex/audit_actor_default_codex.yml +22 -0
- apex_ray-0.1.0/tests/benchmarks/codex/auth_admin_refactor_codex.yml +7 -0
- apex_ray-0.1.0/tests/benchmarks/codex/auth_admin_removed_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/cart_bug_codex.yml +11 -0
- apex_ray-0.1.0/tests/benchmarks/codex/cart_refactor_codex.yml +7 -0
- apex_ray-0.1.0/tests/benchmarks/codex/checkout_refactor_codex.yml +7 -0
- apex_ray-0.1.0/tests/benchmarks/codex/routes_cors_codex.yml +9 -0
- apex_ray-0.1.0/tests/benchmarks/codex/tenant_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/tenant_cache_refactor_codex.yml +7 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_active_step_reversibility_codex.yml +23 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_alias_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_barrel_alias_cache_leak_codex.yml +16 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_class_level_permission_inheritance_codex.yml +23 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_class_method_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_commonjs_export_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_const_array_route_entry_codex.yml +17 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_const_object_member_permission_codex.yml +15 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_constructor_injection_codex.yml +20 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_default_anonymous_tsx_cache_leak_codex.yml +15 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_default_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_dynamic_import_cache_leak_codex.yml +20 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_exports_audit_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_factory_call_transition_entry_codex.yml +15 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_flow_handler_metadata_mismatch_codex.yml +20 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_flow_handler_provider_omission_codex.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_frozen_array_event_entry_codex.yml +17 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_handler_version_invariant_exact_codex.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_handler_version_numeric_compare_codex.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_identity_routing_multianchor_codex.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_import_equals_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_injected_service_method_codex.yml +16 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_internal_transfer_reverse_sender_contract_codex.yml +23 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_log_metadata_shadow_canonical_codex.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_map_tuple_fanout_entry_codex.yml +17 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_missing_method_permission_codex.yml +21 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_namespace_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_namespace_reexport_cache_leak_codex.yml +16 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_nest_di_executor_routing_codex.yml +22 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_package_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_paths_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_permission_override_downgrade_codex.yml +21 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_pick_env_schema_property_contract_codex.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_probe_reverse_noop_contract_codex.yml +23 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_quote_reconcile_limit_one_codex.yml +20 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_require_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_schema_argument_contract_codex.yml +15 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_schema_composition_step_type_codex.yml +20 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_set_business_event_entry_codex.yml +17 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_settlement_step_direct_reverse_bypass_codex.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_star_reexport_cache_leak_codex.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_step_executor_duplicate_overwrite_codex.yml +16 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_transfer_step_screen_gate_codex.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/codex/workspace_tsx_component_cache_leak_codex.yml +14 -0
- apex_ray-0.1.0/tests/benchmarks/routes_context_static.yml +5 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_active_step_reversibility_context.yml +22 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_callee_contract_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_class_heritage_contract_context.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_class_level_permission_inheritance_context.yml +20 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_const_array_route_entry_context.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_const_object_member_context.yml +11 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_constructor_injection_context.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_decorator_argument_contract_context.yml +24 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_decorator_factory_contract_context.yml +17 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_decorator_metadata_key_consumer_context.yml +23 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_dto_property_metadata_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_enum_member_permission_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_factory_call_transition_entry_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_flow_handler_metadata_mismatch_context.yml +28 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_flow_handler_provider_omission_context.yml +21 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_frozen_array_event_entry_context.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_frozen_object_member_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_fsm_transition_table_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_handler_version_invariant_exact_context.yml +22 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_handler_version_numeric_compare_context.yml +15 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_identity_routing_multianchor_context.yml +27 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_injected_service_method_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_internal_transfer_reverse_sender_contract_context.yml +26 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_log_metadata_shadow_canonical_context.yml +15 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_map_tuple_fanout_entry_context.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_missing_method_permission_context.yml +23 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_nest_controller_metadata_context.yml +28 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_nest_imported_provider_spread_context.yml +22 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_nest_module_provider_context.yml +23 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_nest_provider_spread_context.yml +17 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_nest_request_surface_context.yml +24 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_permission_override_downgrade_context.yml +23 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_pick_env_schema_property_contract_context.yml +22 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_probe_reverse_noop_contract_context.yml +22 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_quote_reconcile_limit_one_context.yml +22 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_related_test_ranking_context.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_related_test_snippet_anchor_context.yml +11 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_removed_enum_member_permission_context.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_removed_map_tuple_entry_context.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_repository_port_contract_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_return_type_contract_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_satisfies_map_contract_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_schema_argument_contract_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_schema_composition_contract_context.yml +30 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_schema_contract_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_schema_factory_contract_context.yml +12 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_set_business_event_entry_context.yml +13 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_settlement_step_direct_reverse_bypass_context.yml +16 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_step_executor_duplicate_overwrite_context.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_transaction_post_commit_context.yml +18 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_transfer_step_screen_gate_context.yml +16 -0
- apex_ray-0.1.0/tests/benchmarks/workspace_type_query_schema_contract_context.yml +12 -0
- apex_ray-0.1.0/tests/conftest.py +64 -0
- apex_ray-0.1.0/tests/fixtures/sample.diff +33 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/cart.diff +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/cart_bug.diff +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/cart_refactor.diff +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/checkout_shape_refactor.diff +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/routes.diff +21 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/src/cart.ts +8 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/src/checkout.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/src/routes.ts +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/tests/cart.test.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_project/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/change.diff +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/repo/apps/api/src/common/audit/record-audit.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/repo/apps/operations-gateway/src/observability/gateway-audit.service.ts +50 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/repo/packages/audit-core/package.json +18 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/repo/packages/audit-core/src/audit-event.test.ts +57 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/repo/packages/audit-core/src/audit-event.ts +134 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/repo/packages/audit-core/src/idempotency.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/repo/packages/audit-core/src/index.ts +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/audit_actor_default/repo/packages/audit-core/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/auth_admin_refactor/change.diff +18 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/auth_admin_refactor/repo/src/auth.ts +21 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/auth_admin_refactor/repo/src/projects.ts +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/auth_admin_refactor/repo/tsconfig.json +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/auth_admin_removed/change.diff +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/auth_admin_removed/repo/src/auth.ts +20 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/auth_admin_removed/repo/src/projects.ts +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/auth_admin_removed/repo/tsconfig.json +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/tenant_cache_leak/change.diff +18 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/tenant_cache_leak/repo/src/dashboard.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/tenant_cache_leak/repo/src/settings.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/tenant_cache_leak/repo/tsconfig.json +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/tenant_cache_refactor/change.diff +18 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/tenant_cache_refactor/repo/src/dashboard.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/tenant_cache_refactor/repo/src/settings.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/tenant_cache_refactor/repo/tsconfig.json +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_active_step_reversibility/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_active_step_reversibility/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_active_step_reversibility/repo/src/plan-invariants.ts +50 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_active_step_reversibility/repo/src/step-type.test.ts +32 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_active_step_reversibility/repo/src/step-type.ts +52 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_active_step_reversibility/repo/src/types.ts +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_active_step_reversibility/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_alias_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_alias_cache_leak/repo/apps/api/src/dashboard.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_alias_cache_leak/repo/apps/api/src/settings.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_alias_cache_leak/repo/apps/api/tsconfig.json +17 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_alias_cache_leak/repo/package.json +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/repo/apps/api/src/relative-settings-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/repo/apps/api/src/settings-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/repo/packages/settings/src/index.ts +2 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/repo/packages/settings/src/internal.ts +28 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/repo/packages/settings/src/public.ts +2 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_barrel_alias_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_callee_contract/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_callee_contract/repo/src/controller.ts +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_callee_contract/repo/src/signature.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_callee_contract/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_heritage_contract_context/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_heritage_contract_context/repo/src/admin-webhook-ops.errors.ts +8 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_heritage_contract_context/repo/src/errors.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_heritage_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_level_permission_inheritance/change.diff +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_level_permission_inheritance/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_level_permission_inheritance/repo/src/admin-quote-reconcile.controller.test.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_level_permission_inheritance/repo/src/admin-quote-reconcile.controller.ts +34 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_level_permission_inheritance/repo/src/permission.guard.ts +30 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_level_permission_inheritance/repo/src/permissions.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_level_permission_inheritance/repo/src/require-permission.decorator.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_level_permission_inheritance/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_method_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_method_cache_leak/repo/apps/api/src/settings-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_method_cache_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_method_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_method_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_method_cache_leak/repo/packages/settings/src/index.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_class_method_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_commonjs_export_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_commonjs_export_cache_leak/repo/apps/api/jsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_commonjs_export_cache_leak/repo/apps/api/src/settings-service.js +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_commonjs_export_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_commonjs_export_cache_leak/repo/packages/settings/jsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_commonjs_export_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_commonjs_export_cache_leak/repo/packages/settings/src/index.js +21 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_array_route_entry/change.diff +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_array_route_entry/repo/src/bank-routes.test.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_array_route_entry/repo/src/bank-routes.ts +24 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_array_route_entry/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_object_member_permission/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_object_member_permission/repo/apps/api/src/admin-webhook.controller.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_object_member_permission/repo/apps/api/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_object_member_permission/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_object_member_permission/repo/packages/types/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_object_member_permission/repo/packages/types/src/index.ts +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_object_member_permission/repo/packages/types/src/permission.ts +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_const_object_member_permission/repo/packages/types/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_constructor_injection_context/change.diff +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_constructor_injection_context/repo/src/operator-management.service.ts +23 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_constructor_injection_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_argument_contract_context/change.diff +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_argument_contract_context/repo/src/admin-webhook.controller.ts +23 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_argument_contract_context/repo/src/guards.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_argument_contract_context/repo/src/permissions.ts +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_argument_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_factory_contract_context/change.diff +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_factory_contract_context/repo/src/admin-webhook.controller.ts +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_factory_contract_context/repo/src/permissions.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_factory_contract_context/repo/src/require-permission.decorator.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_factory_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_metadata_key_consumer_context/change.diff +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_metadata_key_consumer_context/repo/src/admin-webhook.controller.ts +19 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_metadata_key_consumer_context/repo/src/permission.guard.ts +25 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_metadata_key_consumer_context/repo/src/permissions.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_metadata_key_consumer_context/repo/src/require-permission.decorator.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_decorator_metadata_key_consumer_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_anonymous_tsx_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_anonymous_tsx_cache_leak/repo/apps/web/src/dashboard.tsx +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_anonymous_tsx_cache_leak/repo/apps/web/tsconfig.json +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_anonymous_tsx_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_anonymous_tsx_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_anonymous_tsx_cache_leak/repo/packages/settings/src/index.tsx +23 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_anonymous_tsx_cache_leak/repo/packages/settings/tsconfig.json +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_cache_leak/repo/apps/api/src/settings-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_cache_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_cache_leak/repo/packages/settings/src/index.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_default_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dto_property_metadata_context/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dto_property_metadata_context/repo/src/dto.ts +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dto_property_metadata_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dynamic_import_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dynamic_import_cache_leak/repo/apps/api/src/settings-namespace-service.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dynamic_import_cache_leak/repo/apps/api/src/settings-service.ts +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dynamic_import_cache_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dynamic_import_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dynamic_import_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dynamic_import_cache_leak/repo/packages/settings/src/index.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_dynamic_import_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_enum_member_permission/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_enum_member_permission/repo/apps/api/src/admin-webhook.controller.test.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_enum_member_permission/repo/apps/api/src/admin-webhook.controller.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_enum_member_permission/repo/apps/api/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_enum_member_permission/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_enum_member_permission/repo/packages/types/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_enum_member_permission/repo/packages/types/src/index.ts +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_enum_member_permission/repo/packages/types/src/permission.ts +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_enum_member_permission/repo/packages/types/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_exports_audit_leak/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_exports_audit_leak/repo/apps/api/src/delete-project.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_exports_audit_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_exports_audit_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_exports_audit_leak/repo/packages/audit/package.json +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_exports_audit_leak/repo/packages/audit/src/events/audit-event.ts +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_exports_audit_leak/repo/packages/audit/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_factory_call_transition_entry_context/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_factory_call_transition_entry_context/repo/src/order-status.ts +24 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_factory_call_transition_entry_context/repo/src/reconcile.service.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_factory_call_transition_entry_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/repo/src/domain.ts +18 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/repo/src/flow-handler.port.ts +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/repo/src/flow-handler.providers.ts +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/repo/src/flow-handler.registry.ts +34 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/repo/src/handlers/va-to-fiat-agent.handler.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/repo/src/handlers/va-to-va-agent.handler.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/repo/src/quote.module.ts +15 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_metadata_mismatch/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/change.diff +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/src/domain.ts +18 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/src/flow-handler.port.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/src/flow-handler.providers.ts +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/src/flow-handler.registry.test.ts +19 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/src/flow-handler.registry.ts +22 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/src/handlers/va-to-fiat-agent.handler.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/src/handlers/va-to-va-agent.handler.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/src/quote.module.ts +15 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_flow_handler_provider_omission/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_frozen_array_event_entry/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_frozen_array_event_entry/repo/src/webhook-routing.test.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_frozen_array_event_entry/repo/src/webhook-routing.ts +15 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_frozen_array_event_entry/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_frozen_object_member_context/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_frozen_object_member_context/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_frozen_object_member_context/repo/src/webhook-routing.service.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_frozen_object_member_context/repo/src/webhook-routing.ts +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_frozen_object_member_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_fsm_transition_table_context/change.diff +15 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_fsm_transition_table_context/repo/src/order-status.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_fsm_transition_table_context/repo/src/reconcile.service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_fsm_transition_table_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_invariant_exact/change.diff +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_invariant_exact/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_invariant_exact/repo/src/domain.ts +17 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_invariant_exact/repo/src/flow-handler.port.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_invariant_exact/repo/src/flow-handler.registry.ts +25 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_invariant_exact/repo/src/handler-version-invariant.service.test.ts +28 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_invariant_exact/repo/src/handler-version-invariant.service.ts +17 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_invariant_exact/repo/src/settlement-plan-repository.port.ts +18 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_invariant_exact/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_numeric_compare/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_numeric_compare/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_numeric_compare/repo/src/domain.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_numeric_compare/repo/src/flow-handler.port.ts +8 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_numeric_compare/repo/src/flow-handler.registry.test.ts +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_numeric_compare/repo/src/flow-handler.registry.ts +17 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_numeric_compare/repo/src/handler-version.ts +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_handler_version_numeric_compare/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_identity_routing_multianchor/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_identity_routing_multianchor/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_identity_routing_multianchor/repo/src/admin-webhook-ops.service.ts +15 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_identity_routing_multianchor/repo/src/proxy-delivery-status.calculator.ts +17 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_identity_routing_multianchor/repo/src/webhook-routing.service.test.ts +22 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_identity_routing_multianchor/repo/src/webhook-routing.service.ts +41 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_identity_routing_multianchor/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_import_equals_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_import_equals_cache_leak/repo/apps/api/src/settings-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_import_equals_cache_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_import_equals_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_import_equals_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_import_equals_cache_leak/repo/packages/settings/src/index.ts +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_import_equals_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/repo/apps/api/src/admin-webhook.controller.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/repo/apps/api/src/tokens.ts +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/repo/apps/api/src/webhook.module.ts +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/repo/apps/api/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/repo/packages/webhooks/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/repo/packages/webhooks/src/index.test.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/repo/packages/webhooks/src/index.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_injected_service_method_call/repo/packages/webhooks/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_internal_transfer_reverse_sender_contract/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_internal_transfer_reverse_sender_contract/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_internal_transfer_reverse_sender_contract/repo/src/internal-transfer-shared.test.ts +30 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_internal_transfer_reverse_sender_contract/repo/src/internal-transfer-shared.ts +36 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_internal_transfer_reverse_sender_contract/repo/src/provider.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_internal_transfer_reverse_sender_contract/repo/src/public-quote.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_internal_transfer_reverse_sender_contract/repo/src/step-payloads.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_internal_transfer_reverse_sender_contract/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_log_metadata_shadow_canonical/change.diff +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_log_metadata_shadow_canonical/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_log_metadata_shadow_canonical/repo/src/http-client.test.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_log_metadata_shadow_canonical/repo/src/http-client.ts +38 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_log_metadata_shadow_canonical/repo/src/http-events.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_log_metadata_shadow_canonical/repo/src/logger.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_log_metadata_shadow_canonical/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_map_tuple_fanout_entry/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_map_tuple_fanout_entry/repo/src/webhook-routing.test.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_map_tuple_fanout_entry/repo/src/webhook-routing.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_map_tuple_fanout_entry/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_missing_method_permission/change.diff +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_missing_method_permission/repo/src/admin-finance.controller.ts +30 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_missing_method_permission/repo/src/permission.guard.ts +31 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_missing_method_permission/repo/src/permissions.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_missing_method_permission/repo/src/require-permission.decorator.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_missing_method_permission/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_cache_leak/repo/apps/api/src/settings-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_cache_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_cache_leak/repo/packages/settings/src/index.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_reexport_cache_leak/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_reexport_cache_leak/repo/apps/api/src/settings-namespace-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_reexport_cache_leak/repo/apps/api/src/settings-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_reexport_cache_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_reexport_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_reexport_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_reexport_cache_leak/repo/packages/settings/src/index.ts +2 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_reexport_cache_leak/repo/packages/settings/src/internal.ts +28 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_namespace_reexport_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_controller_metadata/change.diff +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_controller_metadata/repo/src/admin-webhook.controller.ts +27 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_controller_metadata/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/change.diff +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/repo/apps/api/src/settlement.module.ts +19 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/repo/apps/api/src/step-executor.port.ts +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/repo/apps/api/src/step-executor.registry.test.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/repo/apps/api/src/step-executor.registry.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/repo/apps/api/tsconfig.json +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/repo/packages/settlement/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/repo/packages/settlement/src/index.ts +36 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_di_executor_routing/repo/packages/settlement/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_imported_provider_spread_context/change.diff +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_imported_provider_spread_context/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_imported_provider_spread_context/repo/src/flow-handler.port.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_imported_provider_spread_context/repo/src/flow-handler.providers.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_imported_provider_spread_context/repo/src/flow-handler.registry.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_imported_provider_spread_context/repo/src/handlers/va-to-va-agent.handler.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_imported_provider_spread_context/repo/src/quote.module.ts +15 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_imported_provider_spread_context/repo/src/tokens.ts +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_imported_provider_spread_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_module_provider_context/change.diff +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_module_provider_context/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_module_provider_context/repo/src/flow-handler.port.ts +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_module_provider_context/repo/src/flow-handler.registry.ts +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_module_provider_context/repo/src/handlers/va-to-va-agent.handler.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_module_provider_context/repo/src/quote.module.ts +21 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_module_provider_context/repo/src/tokens.ts +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_module_provider_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_provider_spread_context/change.diff +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_provider_spread_context/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_provider_spread_context/repo/src/flow-handler.port.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_provider_spread_context/repo/src/flow-handler.registry.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_provider_spread_context/repo/src/handlers/va-to-va-agent.handler.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_provider_spread_context/repo/src/quote.module.ts +24 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_provider_spread_context/repo/src/tokens.ts +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_provider_spread_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_request_surface_context/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_request_surface_context/repo/src/admin-webhook.controller.ts +24 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_request_surface_context/repo/src/dto.ts +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_nest_request_surface_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_package_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_package_cache_leak/repo/apps/api/src/settings-service.ts +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_package_cache_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_package_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_package_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_package_cache_leak/repo/packages/settings/src/index.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_package_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_paths_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_paths_cache_leak/repo/apps/api/src/settings-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_paths_cache_leak/repo/apps/api/tsconfig.json +17 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_paths_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_paths_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_paths_cache_leak/repo/packages/settings/src/cache.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_paths_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_permission_override_downgrade/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_permission_override_downgrade/repo/src/permission.guard.ts +30 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_permission_override_downgrade/repo/src/permissions.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_permission_override_downgrade/repo/src/quote-broker.controller.ts +48 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_permission_override_downgrade/repo/src/require-permission.decorator.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_permission_override_downgrade/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_pick_env_schema_property_contract/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_pick_env_schema_property_contract/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_pick_env_schema_property_contract/repo/src/client-options.test.ts +17 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_pick_env_schema_property_contract/repo/src/client-options.ts +62 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_pick_env_schema_property_contract/repo/src/env.ts +23 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_pick_env_schema_property_contract/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_probe_reverse_noop_contract/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_probe_reverse_noop_contract/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_probe_reverse_noop_contract/repo/src/domain.ts +16 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_probe_reverse_noop_contract/repo/src/layer-2-screening.executor.test.ts +25 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_probe_reverse_noop_contract/repo/src/layer-2-screening.executor.ts +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_probe_reverse_noop_contract/repo/src/plan-driven-settlement-orchestrator.ts +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_probe_reverse_noop_contract/repo/src/step-executor.port.ts +26 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_probe_reverse_noop_contract/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_quote_reconcile_limit_one/change.diff +17 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_quote_reconcile_limit_one/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_quote_reconcile_limit_one/repo/src/audit-repository.port.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_quote_reconcile_limit_one/repo/src/quote-reconcile.service.test.ts +73 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_quote_reconcile_limit_one/repo/src/quote-reconcile.service.ts +73 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_quote_reconcile_limit_one/repo/src/settlement-step-repository.port.ts +20 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_quote_reconcile_limit_one/repo/src/status.ts +18 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_quote_reconcile_limit_one/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_ranking/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_ranking/repo/apps/api/src/modules/webhook-ingestion/application/admin-webhook-ops.service.test.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_ranking/repo/apps/api/src/modules/webhook-ingestion/internal-webhook.controller.test.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_ranking/repo/apps/api/src/modules/webhook-ingestion/webhook-routing.service.test.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_ranking/repo/apps/api/src/modules/webhook-ingestion/webhook-routing.service.ts +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_ranking/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_snippet_anchor/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_snippet_anchor/repo/src/webhook-routing.test.ts +36 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_snippet_anchor/repo/src/webhook-routing.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_related_test_snippet_anchor/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_enum_member_permission/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_enum_member_permission/repo/apps/api/src/admin-webhook.controller.test.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_enum_member_permission/repo/apps/api/src/admin-webhook.controller.ts +3 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_enum_member_permission/repo/apps/api/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_enum_member_permission/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_enum_member_permission/repo/packages/types/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_enum_member_permission/repo/packages/types/src/index.ts +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_enum_member_permission/repo/packages/types/src/permission.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_enum_member_permission/repo/packages/types/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_map_tuple_entry/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_map_tuple_entry/repo/src/webhook-routing.test.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_map_tuple_entry/repo/src/webhook-routing.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_removed_map_tuple_entry/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_repository_port_contract_context/change.diff +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_repository_port_contract_context/repo/src/reconcile.service.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_repository_port_contract_context/repo/src/settlement-step-repository.port.ts +20 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_repository_port_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_require_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_require_cache_leak/repo/apps/api/jsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_require_cache_leak/repo/apps/api/src/settings-service.js +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_require_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_require_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_require_cache_leak/repo/packages/settings/src/index.ts +29 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_require_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_return_type_contract_context/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_return_type_contract_context/repo/src/controller.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_return_type_contract_context/repo/src/response.ts +8 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_return_type_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_satisfies_map_contract_context/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_satisfies_map_contract_context/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_satisfies_map_contract_context/repo/src/env.ts +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_satisfies_map_contract_context/repo/src/webhook-routing.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_satisfies_map_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_argument_contract_context/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_argument_contract_context/repo/src/client.ts +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_argument_contract_context/repo/src/schemas.ts +8 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_argument_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_composition_contract_context/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_composition_contract_context/repo/src/mapper.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_composition_contract_context/repo/src/step-payloads.ts +19 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_composition_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_composition_step_type_regression/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_composition_step_type_regression/repo/src/mapper.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_composition_step_type_regression/repo/src/step-payloads.ts +19 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_composition_step_type_regression/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_contract_context/change.diff +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_contract_context/repo/src/quote-controller.ts +5 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_contract_context/repo/src/quote-schemas.ts +19 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_schema_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_set_business_event_entry/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_set_business_event_entry/repo/src/webhook-routing.test.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_set_business_event_entry/repo/src/webhook-routing.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_set_business_event_entry/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_settlement_step_direct_reverse_bypass/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_settlement_step_direct_reverse_bypass/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_settlement_step_direct_reverse_bypass/repo/src/plan-driven-settlement-orchestrator.ts +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_settlement_step_direct_reverse_bypass/repo/src/settlement-step-status.test.ts +24 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_settlement_step_direct_reverse_bypass/repo/src/settlement-step-status.ts +38 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_settlement_step_direct_reverse_bypass/repo/src/state-machine.ts +15 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_settlement_step_direct_reverse_bypass/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_star_reexport_cache_leak/change.diff +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_star_reexport_cache_leak/repo/apps/api/src/settings-service.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_star_reexport_cache_leak/repo/apps/api/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_star_reexport_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_star_reexport_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_star_reexport_cache_leak/repo/packages/settings/src/index.ts +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_star_reexport_cache_leak/repo/packages/settings/src/internal.ts +28 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_star_reexport_cache_leak/repo/packages/settings/tsconfig.json +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/change.diff +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/repo/src/settlement.module.ts +19 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/repo/src/step-executor.port.ts +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/repo/src/step-executor.registry.test.ts +26 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/repo/src/step-executor.registry.ts +24 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/repo/src/step-executors.ts +26 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/repo/src/step-type.ts +6 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/repo/src/testing-nest.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_step_executor_duplicate_overwrite/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transaction_post_commit_context/change.diff +14 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transaction_post_commit_context/repo/src/queue.port.ts +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transaction_post_commit_context/repo/src/reconcile.service.ts +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transaction_post_commit_context/repo/src/unit-of-work.port.ts +12 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transaction_post_commit_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transfer_step_screen_gate/change.diff +8 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transfer_step_screen_gate/repo/package.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transfer_step_screen_gate/repo/src/plan-invariants.test.ts +31 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transfer_step_screen_gate/repo/src/plan-invariants.ts +35 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transfer_step_screen_gate/repo/src/step-type.ts +24 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transfer_step_screen_gate/repo/src/types.ts +11 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_transfer_step_screen_gate/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_tsx_component_cache_leak/change.diff +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_tsx_component_cache_leak/repo/apps/web/src/dashboard.tsx +10 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_tsx_component_cache_leak/repo/apps/web/tsconfig.json +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_tsx_component_cache_leak/repo/package.json +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_tsx_component_cache_leak/repo/packages/settings/package.json +4 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_tsx_component_cache_leak/repo/packages/settings/src/index.tsx +23 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_tsx_component_cache_leak/repo/packages/settings/tsconfig.json +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_type_query_schema_contract_context/change.diff +13 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_type_query_schema_contract_context/repo/src/mapper.ts +7 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_type_query_schema_contract_context/repo/src/schemas.ts +9 -0
- apex_ray-0.1.0/tests/fixtures/ts_quality/workspace_type_query_schema_contract_context/repo/tsconfig.json +1 -0
- apex_ray-0.1.0/tests/test_analyzers.py +428 -0
- apex_ray-0.1.0/tests/test_benchmark.py +739 -0
- apex_ray-0.1.0/tests/test_classify.py +52 -0
- apex_ray-0.1.0/tests/test_cli.py +591 -0
- apex_ray-0.1.0/tests/test_config.py +564 -0
- apex_ray-0.1.0/tests/test_context.py +6296 -0
- apex_ray-0.1.0/tests/test_diff.py +83 -0
- apex_ray-0.1.0/tests/test_discovery.py +43 -0
- apex_ray-0.1.0/tests/test_git.py +38 -0
- apex_ray-0.1.0/tests/test_invocation.py +116 -0
- apex_ray-0.1.0/tests/test_llm.py +1482 -0
- apex_ray-0.1.0/tests/test_memory.py +197 -0
- apex_ray-0.1.0/tests/test_pipeline.py +595 -0
- apex_ray-0.1.0/tests/test_pr_eval.py +840 -0
- apex_ray-0.1.0/tests/test_report.py +563 -0
- apex_ray-0.1.0/tests/test_rules.py +31 -0
- apex_ray-0.1.0/tests/test_telemetry.py +74 -0
- apex_ray-0.1.0/tests/test_version.py +19 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
.venv/
|
|
2
|
+
.ci-smoke-venv/
|
|
3
|
+
.pytest_cache/
|
|
4
|
+
__pycache__/
|
|
5
|
+
*.py[cod]
|
|
6
|
+
.coverage
|
|
7
|
+
.mypy_cache/
|
|
8
|
+
.ruff_cache/
|
|
9
|
+
build/
|
|
10
|
+
dist/
|
|
11
|
+
*.egg-info/
|
|
12
|
+
.codegraph/
|
|
13
|
+
.code-review-graph/
|
|
14
|
+
.claude/settings.local.json
|
|
15
|
+
.codex/config.local.toml
|
|
16
|
+
.apex-ray/config.local.yml
|
|
17
|
+
.apex-ray/cache/
|
|
18
|
+
**/.apex-ray/cache/
|
|
19
|
+
.apex-ray/telemetry/
|
|
20
|
+
**/.apex-ray/telemetry/
|
|
21
|
+
.apex-ray/eval/telemetry/
|
|
22
|
+
**/.apex-ray/eval/telemetry/
|
|
23
|
+
.apex-ray/eval/runs/
|
|
24
|
+
**/.apex-ray/eval/runs/
|
|
25
|
+
.apex-ray/evals/runs/
|
|
26
|
+
**/.apex-ray/evals/runs/
|
|
27
|
+
/review*.md
|
|
28
|
+
/review*.json
|
|
29
|
+
/review*.html
|
|
30
|
+
/benchmark*.md
|
|
31
|
+
/benchmark*.json
|
|
32
|
+
analyzers/typescript/node_modules/
|
|
33
|
+
analyzers/typescript/dist/
|
|
34
|
+
analyzers/typescript/dist-test/
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.0 (2026-05-31)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* prepare Apex Ray for production readiness ([#10](https://github.com/dobrotacreator/apex-ray/issues/10))
|
|
9
|
+
* reset the pre-release public history to a sanitized production baseline before wider use.
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* release Apex Ray local review engine ([1105a4f](https://github.com/dobrotacreator/apex-ray/commit/1105a4f444c0399058af723fb911993f43d6b34a))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Refactoring
|
|
17
|
+
|
|
18
|
+
* prepare Apex Ray for production readiness ([#10](https://github.com/dobrotacreator/apex-ray/issues/10)) ([6c7cde6](https://github.com/dobrotacreator/apex-ray/commit/6c7cde6b85b6a2e3b8ad699dc2f5e35dadb84e99))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Documentation
|
|
22
|
+
|
|
23
|
+
* add animated project logo ([2911320](https://github.com/dobrotacreator/apex-ray/commit/291132084b849851589429d7bc5da881b0034581))
|
|
24
|
+
* refresh logo assets ([#9](https://github.com/dobrotacreator/apex-ray/issues/9)) ([98932a5](https://github.com/dobrotacreator/apex-ray/commit/98932a5b25d24a99a7ac02328b67ba5e79123a78))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Infrastructure
|
|
28
|
+
|
|
29
|
+
* **release:** add Release Please automation ([#11](https://github.com/dobrotacreator/apex-ray/issues/11)) ([8361715](https://github.com/dobrotacreator/apex-ray/commit/8361715de97654b446d7e693ec0954167fc036ee))
|
|
30
|
+
|
|
31
|
+
## Changelog
|
|
32
|
+
|
|
33
|
+
All notable changes to Apex Ray will be documented here.
|
|
34
|
+
|
|
35
|
+
The format follows Keep a Changelog style categories and uses Conventional Commits for commit history.
|
|
36
|
+
|
|
37
|
+
## Unreleased
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
|
|
41
|
+
- Local TS/JS code-review reports with optional LLM review and verifier passes.
|
|
42
|
+
- Context-pack coverage summaries, continuation flows, and local review telemetry.
|
|
43
|
+
- Historical PR replay evaluation utilities for comparing Apex Ray against prior review comments.
|
|
44
|
+
|
|
45
|
+
### Changed
|
|
46
|
+
|
|
47
|
+
- Pre-1.0 report schemas may change while the tool is prepared for production use.
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
Thanks for improving Apex Ray. This project is still pre-1.0, so breaking changes are allowed when they materially improve review quality, local usability, or release safety.
|
|
4
|
+
|
|
5
|
+
## Development Setup
|
|
6
|
+
|
|
7
|
+
Prerequisites:
|
|
8
|
+
|
|
9
|
+
- Python 3.14+
|
|
10
|
+
- Node.js 24+
|
|
11
|
+
- npm
|
|
12
|
+
- uv
|
|
13
|
+
- git
|
|
14
|
+
|
|
15
|
+
Install dependencies and build the TypeScript analyzer:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
uv sync --all-groups
|
|
19
|
+
npm --prefix analyzers/typescript ci
|
|
20
|
+
npm --prefix analyzers/typescript run build
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Run the main checks from the repository root:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
uv run ruff format --check .
|
|
27
|
+
uv run ruff check .
|
|
28
|
+
uv run pyright
|
|
29
|
+
uv run coverage run -m pytest -q
|
|
30
|
+
uv run coverage report -m
|
|
31
|
+
npm --prefix analyzers/typescript run typecheck
|
|
32
|
+
npm --prefix analyzers/typescript test
|
|
33
|
+
npm --prefix analyzers/typescript run coverage
|
|
34
|
+
uv build --sdist --wheel
|
|
35
|
+
uv run twine check dist/*
|
|
36
|
+
git diff --check
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Git Flow
|
|
40
|
+
|
|
41
|
+
- Work on feature branches.
|
|
42
|
+
- Keep `main` releasable.
|
|
43
|
+
- Merge through pull requests after CI passes.
|
|
44
|
+
- Do not publish or tag from a dirty worktree.
|
|
45
|
+
- Do not commit generated review reports, local telemetry, caches, or `.apex-ray/config.local.yml`.
|
|
46
|
+
- Keep shared `.apex-ray/config.yml` focused on team policy; use `.apex-ray/config.local.yml` for personal provider/model/cost settings.
|
|
47
|
+
|
|
48
|
+
## Commit Messages
|
|
49
|
+
|
|
50
|
+
Use Conventional Commits:
|
|
51
|
+
|
|
52
|
+
```text
|
|
53
|
+
feat(llm): add Claude Code CLI provider
|
|
54
|
+
fix(report): preserve failed pack status in coverage
|
|
55
|
+
docs: rewrite quickstart
|
|
56
|
+
chore(ci): add wheel install smoke
|
|
57
|
+
feat!: change review report schema
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Allowed commit types are `feat`, `fix`, `refactor`, `test`, `docs`, `infra`, `adr`, `migration`, and `chore`.
|
|
61
|
+
|
|
62
|
+
Use `!` and a `BREAKING CHANGE:` footer for behavior or schema changes that can affect users, automation, or stored reports.
|
|
63
|
+
|
|
64
|
+
## Pull Requests
|
|
65
|
+
|
|
66
|
+
Good pull requests include:
|
|
67
|
+
|
|
68
|
+
- A clear summary of user-visible behavior.
|
|
69
|
+
- Focused tests for the changed behavior.
|
|
70
|
+
- Fresh verification commands and results.
|
|
71
|
+
- Notes for breaking changes, migration steps, or follow-up work.
|
|
72
|
+
|
|
73
|
+
For review-quality changes, prefer executable fixtures or historical PR replay evidence over anecdotal prompt tuning.
|
|
74
|
+
|
|
75
|
+
## Release Notes
|
|
76
|
+
|
|
77
|
+
Do not manually bump `pyproject.toml` or edit release sections in `CHANGELOG.md` for normal releases. Release Please reads Conventional Commits on `main`, opens a release PR, updates `pyproject.toml`, updates `CHANGELOG.md`, and creates the release tag after that PR is merged.
|
|
78
|
+
|
|
79
|
+
Use clear commit types and scopes so generated release notes are useful. See [docs/development.md](docs/development.md#release-hygiene) for maintainer release flow details.
|
apex_ray-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
https://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but not
|
|
32
|
+
limited to compiled object code, generated documentation, and
|
|
33
|
+
conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work.
|
|
38
|
+
|
|
39
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
40
|
+
form, that is based on (or derived from) the Work and for which the
|
|
41
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
42
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
43
|
+
of this License, Derivative Works shall not include works that remain
|
|
44
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
45
|
+
the Work and Derivative Works thereof.
|
|
46
|
+
|
|
47
|
+
"Contribution" shall mean any work of authorship, including the
|
|
48
|
+
original version of the Work and any modifications or additions to
|
|
49
|
+
that Work or Derivative Works thereof, that is intentionally submitted
|
|
50
|
+
to Licensor for inclusion in the Work by the copyright owner or by an
|
|
51
|
+
individual or Legal Entity authorized to submit on behalf of the
|
|
52
|
+
copyright owner. For the purposes of this definition, "submitted"
|
|
53
|
+
means any form of electronic, verbal, or written communication sent
|
|
54
|
+
to the Licensor or its representatives, including but not limited to
|
|
55
|
+
communication on electronic mailing lists, source code control systems,
|
|
56
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
57
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
58
|
+
excluding communication that is conspicuously marked or otherwise
|
|
59
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
60
|
+
|
|
61
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
62
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
63
|
+
subsequently incorporated within the Work.
|
|
64
|
+
|
|
65
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
66
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
67
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
68
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
69
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
70
|
+
Work and such Derivative Works in Source or Object form.
|
|
71
|
+
|
|
72
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
73
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
74
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
75
|
+
(except as stated in this section) patent license to make, have made,
|
|
76
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
77
|
+
where such license applies only to those patent claims licensable
|
|
78
|
+
by such Contributor that are necessarily infringed by their
|
|
79
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
80
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
81
|
+
institute patent litigation against any entity (including a
|
|
82
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
83
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
84
|
+
or contributory patent infringement, then any patent licenses
|
|
85
|
+
granted to You under this License for that Work shall terminate
|
|
86
|
+
as of the date such litigation is filed.
|
|
87
|
+
|
|
88
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
89
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
90
|
+
modifications, and in Source or Object form, provided that You
|
|
91
|
+
meet the following conditions:
|
|
92
|
+
|
|
93
|
+
(a) You must give any other recipients of the Work or Derivative
|
|
94
|
+
Works a copy of this License; and
|
|
95
|
+
|
|
96
|
+
(b) You must cause any modified files to carry prominent notices
|
|
97
|
+
stating that You changed the files; and
|
|
98
|
+
|
|
99
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
100
|
+
that You distribute, all copyright, patent, trademark, and
|
|
101
|
+
attribution notices from the Source form of the Work, excluding
|
|
102
|
+
those notices that do not pertain to any part of the Derivative
|
|
103
|
+
Works; and
|
|
104
|
+
|
|
105
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
106
|
+
distribution, then any Derivative Works that You distribute must
|
|
107
|
+
include a readable copy of the attribution notices contained
|
|
108
|
+
within such NOTICE file, excluding those notices that do not
|
|
109
|
+
pertain to any part of the Derivative Works, in at least one
|
|
110
|
+
of the following places: within a NOTICE text file distributed
|
|
111
|
+
as part of the Derivative Works; within the Source form or
|
|
112
|
+
documentation, if provided along with the Derivative Works; or,
|
|
113
|
+
within a display generated by the Derivative Works, if and
|
|
114
|
+
wherever such third-party notices normally appear. The contents
|
|
115
|
+
of the NOTICE file are for informational purposes only and do
|
|
116
|
+
not modify the License. You may add Your own attribution notices
|
|
117
|
+
within Derivative Works that You distribute, alongside or as an
|
|
118
|
+
addendum to the NOTICE text from the Work, provided that such
|
|
119
|
+
additional attribution notices cannot be construed as modifying
|
|
120
|
+
the License.
|
|
121
|
+
|
|
122
|
+
You may add Your own copyright statement to Your modifications and
|
|
123
|
+
may provide additional or different license terms and conditions
|
|
124
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
125
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
126
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
127
|
+
the conditions stated in this License.
|
|
128
|
+
|
|
129
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
130
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
131
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
132
|
+
this License, without any additional terms or conditions.
|
|
133
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
134
|
+
the terms of any separate license agreement you may have executed
|
|
135
|
+
with Licensor regarding such Contributions.
|
|
136
|
+
|
|
137
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
138
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
139
|
+
except as required for reasonable and customary use in describing the
|
|
140
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
141
|
+
|
|
142
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
143
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
144
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
145
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
146
|
+
implied, including, without limitation, any warranties or conditions
|
|
147
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
148
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
149
|
+
appropriateness of using or redistributing the Work and assume any
|
|
150
|
+
risks associated with Your exercise of permissions under this
|
|
151
|
+
License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer, and
|
|
167
|
+
charge a fee for, acceptance of support, warranty, indemnity, or
|
|
168
|
+
other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2026 Apex Ray contributors
|
apex_ray-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: apex-ray
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Local CLI-first AI code review for TypeScript and JavaScript projects.
|
|
5
|
+
Project-URL: Homepage, https://github.com/dobrotacreator/apex-ray
|
|
6
|
+
Project-URL: Repository, https://github.com/dobrotacreator/apex-ray
|
|
7
|
+
Project-URL: Issues, https://github.com/dobrotacreator/apex-ray/issues
|
|
8
|
+
Project-URL: Changelog, https://github.com/dobrotacreator/apex-ray/blob/main/CHANGELOG.md
|
|
9
|
+
Author: Apex Ray contributors
|
|
10
|
+
License-Expression: Apache-2.0
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: ai,cli,code-review,javascript,llm,typescript
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Environment :: Console
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
20
|
+
Classifier: Topic :: Software Development :: Testing
|
|
21
|
+
Requires-Python: >=3.14
|
|
22
|
+
Requires-Dist: pydantic>=2.12
|
|
23
|
+
Requires-Dist: pyyaml>=6.0
|
|
24
|
+
Requires-Dist: typer>=0.26.2
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
|
|
27
|
+
<p align="center">
|
|
28
|
+
<img src="docs/assets/apex-ray-logo-animated.svg" alt="Apex Ray logo animation" width="240">
|
|
29
|
+
</p>
|
|
30
|
+
|
|
31
|
+
# Apex Ray
|
|
32
|
+
|
|
33
|
+
[](https://github.com/dobrotacreator/apex-ray/actions/workflows/ci.yml)
|
|
34
|
+
[](https://pypi.org/project/apex-ray/)
|
|
35
|
+
[](https://github.com/dobrotacreator/apex-ray/blob/main/pyproject.toml)
|
|
36
|
+
[](LICENSE)
|
|
37
|
+
|
|
38
|
+
Local CLI-first AI code review for TypeScript and JavaScript projects.
|
|
39
|
+
|
|
40
|
+
Apex Ray reads a git diff, builds compact context packs around changed code, runs optional LLM review through a local CLI provider, verifies findings, and writes Markdown/JSON/HTML reports. It is designed for teams that want review intelligence locally, without depending on a hosted PR-review product.
|
|
41
|
+
|
|
42
|
+
> Apex Ray is pre-1.0. Report schemas and configuration can change while the project is prepared for production use.
|
|
43
|
+
|
|
44
|
+
## What It Does
|
|
45
|
+
|
|
46
|
+
- Builds TS/JS context packs from changed files, symbols, callers, callees, contracts, metadata, and related tests.
|
|
47
|
+
- Supports project-specific rules and repo-committed review memory.
|
|
48
|
+
- Runs without LLM calls, or with Codex CLI / Claude Code CLI when configured.
|
|
49
|
+
- Routes cheap and strong models through profiles.
|
|
50
|
+
- Tracks LLM coverage, skipped packs, partial severity, provider failures, cache usage, and continuation commands.
|
|
51
|
+
- Replays historical GitHub PR review comments for local evals.
|
|
52
|
+
- Writes local telemetry so teams can tune cost, latency, and coverage over time.
|
|
53
|
+
|
|
54
|
+
## What It Does Not Do
|
|
55
|
+
|
|
56
|
+
Apex Ray does not replace CI, tests, linters, typecheck, dependency scanners, SAST, or human review. It focuses on diff-aware behavioral review.
|
|
57
|
+
|
|
58
|
+
## Requirements
|
|
59
|
+
|
|
60
|
+
- Python 3.14+
|
|
61
|
+
- Node.js 24+
|
|
62
|
+
- npm
|
|
63
|
+
- git
|
|
64
|
+
- uv for development
|
|
65
|
+
- Codex CLI or Claude Code CLI for LLM review
|
|
66
|
+
- GitHub CLI only for historical PR capture/eval commands
|
|
67
|
+
|
|
68
|
+
## Install
|
|
69
|
+
|
|
70
|
+
For published releases:
|
|
71
|
+
|
|
72
|
+
One-off run without a persistent install:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
uvx apex-ray --help
|
|
76
|
+
uvx apex-ray doctor
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
User-level CLI install:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
uv tool install apex-ray
|
|
83
|
+
apex-ray --version
|
|
84
|
+
apex-ray doctor
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
`pipx install apex-ray` is also supported if you use pipx for isolated Python CLI tools.
|
|
88
|
+
|
|
89
|
+
For local development from source:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
git clone git@github.com:dobrotacreator/apex-ray.git
|
|
93
|
+
cd apex-ray
|
|
94
|
+
uv sync --all-groups
|
|
95
|
+
npm --prefix analyzers/typescript ci
|
|
96
|
+
npm --prefix analyzers/typescript run build
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Run from the repository root:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
uv run apex-ray --version
|
|
103
|
+
uv run apex-ray doctor
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
The shorter `apex-ray ...` commands below assume the console script is installed on your `PATH`. When working from a source checkout, either prefix commands with `uv run` or install the local checkout as an editable user tool:
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
uv tool install --editable .
|
|
110
|
+
apex-ray doctor
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
## Quickstart
|
|
114
|
+
|
|
115
|
+
In a project you want to review:
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
apex-ray init
|
|
119
|
+
apex-ray doctor
|
|
120
|
+
git status --short
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
Inspect and commit the setup files before using the first worktree review for application changes.
|
|
124
|
+
|
|
125
|
+
`apex-ray init` creates `.apex-ray/config.yml`, rules/memory/report directories, gitignore entries, brief agent instruction pointers, project-local Apex Ray skills (`$apex-ray` and `$apex-ray-improve`), and a Lefthook pre-push gate command that follows shared and local config. Use `--hooks none`, `--agent-files none`, or `--no-agent-skill` for exceptional repositories.
|
|
126
|
+
|
|
127
|
+
After the setup commit, run a deterministic local review:
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
apex-ray review --worktree --no-llm --output .apex-ray/reports/review.md --json .apex-ray/reports/review.json
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
Run the configured LLM review explicitly:
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
apex-ray review --worktree --llm --output .apex-ray/reports/review.md --json .apex-ray/reports/review.json --html .apex-ray/reports/review.html
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
Review a branch against the configured base:
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
apex-ray review --base main --llm
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
Continue only unreviewed packs from a partial report:
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
apex-ray review --continue-from .apex-ray/reports/review.json --residual-priority p0 --llm
|
|
149
|
+
apex-ray review --continue-from .apex-ray/reports/review.json --only-pack 'apps/api/src/payments.ts#capture:1' --llm
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
Run the same gate that `apex-ray init` wires into pre-push:
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
apex-ray gate pre-push
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
The gate reviews `review.base...HEAD`, writes `.apex-ray/reports/pre-push.md` and `.apex-ray/reports/pre-push.json`, prints an agent-friendly blocking summary, and exits non-zero when the configured policy fails.
|
|
159
|
+
|
|
160
|
+
## Configuration
|
|
161
|
+
|
|
162
|
+
Project configuration lives in `.apex-ray/config.yml`:
|
|
163
|
+
|
|
164
|
+
```yaml
|
|
165
|
+
review:
|
|
166
|
+
base: main
|
|
167
|
+
ignore:
|
|
168
|
+
- "**/*.lock"
|
|
169
|
+
- "**/generated/**"
|
|
170
|
+
rule_paths:
|
|
171
|
+
- .apex-ray/rules
|
|
172
|
+
memory:
|
|
173
|
+
enabled: true
|
|
174
|
+
paths:
|
|
175
|
+
- .apex-ray/memory
|
|
176
|
+
llm:
|
|
177
|
+
enabled: true
|
|
178
|
+
provider: codex_cli
|
|
179
|
+
coverage_mode: balanced
|
|
180
|
+
max_packs: 64
|
|
181
|
+
max_deep_packs: 48
|
|
182
|
+
max_input_tokens: 300000
|
|
183
|
+
verify: true
|
|
184
|
+
telemetry:
|
|
185
|
+
enabled: false
|
|
186
|
+
path: .apex-ray/telemetry/review-runs.jsonl
|
|
187
|
+
gates:
|
|
188
|
+
pre_push:
|
|
189
|
+
enabled: true
|
|
190
|
+
min_finding_severity: high
|
|
191
|
+
require_verified_findings: true
|
|
192
|
+
fail_on_quality_gate: true
|
|
193
|
+
fail_on_partial_severity: critical
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
Machine-specific overrides can live in `.apex-ray/config.local.yml`. Apex Ray merges built-in defaults, shared config, local config, and CLI flags in that order. Local config is gitignored by default and is intended for provider/model/cost differences between contributors.
|
|
197
|
+
|
|
198
|
+
See [docs/configuration.md](docs/configuration.md) for configuration details.
|
|
199
|
+
|
|
200
|
+
## Rules And Memory
|
|
201
|
+
|
|
202
|
+
Rules are Markdown files with YAML frontmatter under `.apex-ray/rules/`. They are matched to context packs and injected only when relevant.
|
|
203
|
+
|
|
204
|
+
Memory cards are Markdown files under `.apex-ray/memory/`. They keep concise team learning, false-positive calibration, and domain review hints close to the codebase.
|
|
205
|
+
|
|
206
|
+
See [docs/memory.md](docs/memory.md) for memory-card details.
|
|
207
|
+
|
|
208
|
+
## LLM Providers
|
|
209
|
+
|
|
210
|
+
Apex Ray supports Codex CLI and Claude Code CLI. Profiles let a project combine cheaper broad review with stronger verification/escalation, including mixed providers:
|
|
211
|
+
|
|
212
|
+
```yaml
|
|
213
|
+
review:
|
|
214
|
+
llm:
|
|
215
|
+
profiles:
|
|
216
|
+
cheap:
|
|
217
|
+
provider: codex_cli
|
|
218
|
+
model: "<cheap-codex-model>"
|
|
219
|
+
strong:
|
|
220
|
+
provider: claude_code_cli
|
|
221
|
+
model: "<strong-claude-model-or-alias>"
|
|
222
|
+
routing:
|
|
223
|
+
review_profile: cheap
|
|
224
|
+
verify_profile: strong
|
|
225
|
+
escalated_review_profile: strong
|
|
226
|
+
escalate_review_when:
|
|
227
|
+
risk: [auth, external_io, persistence]
|
|
228
|
+
rule_severity: [high, critical]
|
|
229
|
+
strict_rule: true
|
|
230
|
+
pack_truncated: true
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
Avoid near-sunset model IDs in shared defaults. Team members can use `.apex-ray/config.local.yml` for personal provider/model/path/cost overrides.
|
|
234
|
+
|
|
235
|
+
See [docs/providers.md](docs/providers.md).
|
|
236
|
+
|
|
237
|
+
## Architecture
|
|
238
|
+
|
|
239
|
+
For a high-level implementation map, review flow, init artifacts, telemetry/eval flow, and test fixture explanation, see [docs/architecture.md](docs/architecture.md).
|
|
240
|
+
|
|
241
|
+
## Coverage And Continuation
|
|
242
|
+
|
|
243
|
+
LLM coverage modes:
|
|
244
|
+
|
|
245
|
+
- `fast`: capped deep review.
|
|
246
|
+
- `balanced`: deep review for high-value packs plus shallow breadth under token budget.
|
|
247
|
+
- `exhaustive`: review every reviewable pack when budget allows.
|
|
248
|
+
|
|
249
|
+
Reports include reviewed/unreviewed pack IDs, partial severity, residual P0/P1 packs, skipped reasons, provider failures, cache metrics, and suggested continuation commands.
|
|
250
|
+
|
|
251
|
+
## Telemetry
|
|
252
|
+
|
|
253
|
+
Local review telemetry is append-only JSONL. It is intended for tuning cost, latency, model routing, and coverage:
|
|
254
|
+
|
|
255
|
+
```bash
|
|
256
|
+
apex-ray review --worktree --llm --telemetry
|
|
257
|
+
apex-ray telemetry-summary --telemetry-path .apex-ray/telemetry/review-runs.jsonl
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
Telemetry is measurement-only and is not injected into review prompts automatically. See [docs/telemetry.md](docs/telemetry.md).
|
|
261
|
+
|
|
262
|
+
## Historical PR Evals
|
|
263
|
+
|
|
264
|
+
Apex Ray can capture prior GitHub PR comments and replay local review on historical diffs:
|
|
265
|
+
|
|
266
|
+
```bash
|
|
267
|
+
apex-ray eval capture-prs --repo /path/to/project --output /path/to/project/.apex-ray/evals/cases --limit 10
|
|
268
|
+
apex-ray eval run-prs --repo /path/to/project --cases /path/to/project/.apex-ray/evals/cases --output /path/to/project/.apex-ray/evals/runs/latest --llm
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
See [docs/pr-eval.md](docs/pr-eval.md).
|
|
272
|
+
|
|
273
|
+
## Privacy
|
|
274
|
+
|
|
275
|
+
When LLM review is enabled, Apex Ray sends selected diff and context-pack content to the configured local CLI provider. Review that provider's privacy and retention policy before using Apex Ray on private code.
|
|
276
|
+
|
|
277
|
+
Caches and telemetry are local files. They may include repository paths, model names, finding counts, coverage metadata, and token estimates. Keep them ignored unless a team intentionally curates a shared artifact.
|
|
278
|
+
|
|
279
|
+
## Development
|
|
280
|
+
|
|
281
|
+
```bash
|
|
282
|
+
uv run coverage run -m pytest -q
|
|
283
|
+
uv run coverage report -m
|
|
284
|
+
npm --prefix analyzers/typescript run typecheck
|
|
285
|
+
npm --prefix analyzers/typescript test
|
|
286
|
+
npm --prefix analyzers/typescript run coverage
|
|
287
|
+
git diff --check
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
See [docs/development.md](docs/development.md) and [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
291
|
+
|
|
292
|
+
Maintainers: release automation is documented in [docs/development.md](docs/development.md#release-hygiene).
|
|
293
|
+
|
|
294
|
+
## License
|
|
295
|
+
|
|
296
|
+
Apache-2.0. See [LICENSE](LICENSE).
|