axiom-graph 1.0.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.
- axiom_graph-1.0.0/PKG-INFO +143 -0
- axiom_graph-1.0.0/README.md +103 -0
- axiom_graph-1.0.0/cortex/__init__.py +3 -0
- axiom_graph-1.0.0/cortex/cli.py +1000 -0
- axiom_graph-1.0.0/cortex/config.py +195 -0
- axiom_graph-1.0.0/cortex/diff.py +415 -0
- axiom_graph-1.0.0/cortex/index/__init__.py +1 -0
- axiom_graph-1.0.0/cortex/index/builder.py +979 -0
- axiom_graph-1.0.0/cortex/index/db.py +2498 -0
- axiom_graph-1.0.0/cortex/index/embeddings.py +178 -0
- axiom_graph-1.0.0/cortex/index/git_utils.py +27 -0
- axiom_graph-1.0.0/cortex/index/link_maintenance.py +132 -0
- axiom_graph-1.0.0/cortex/index/mark_clean.py +168 -0
- axiom_graph-1.0.0/cortex/index/staleness.py +753 -0
- axiom_graph-1.0.0/cortex/index/status.py +32 -0
- axiom_graph-1.0.0/cortex/mcp/__init__.py +9 -0
- axiom_graph-1.0.0/cortex/mcp/_helpers.py +677 -0
- axiom_graph-1.0.0/cortex/mcp/dflow.py +269 -0
- axiom_graph-1.0.0/cortex/mcp/doc.py +803 -0
- axiom_graph-1.0.0/cortex/mcp/lifecycle.py +1000 -0
- axiom_graph-1.0.0/cortex/mcp/query.py +628 -0
- axiom_graph-1.0.0/cortex/mcp_server.py +962 -0
- axiom_graph-1.0.0/cortex/models.py +56 -0
- axiom_graph-1.0.0/cortex/ontology.py +80 -0
- axiom_graph-1.0.0/cortex/renderers/__init__.py +1 -0
- axiom_graph-1.0.0/cortex/renderers/agent.py +184 -0
- axiom_graph-1.0.0/cortex/renderers/consumer.py +310 -0
- axiom_graph-1.0.0/cortex/scanners/__init__.py +1 -0
- axiom_graph-1.0.0/cortex/scanners/config_scanner.py +146 -0
- axiom_graph-1.0.0/cortex/scanners/doc_scanner.py +272 -0
- axiom_graph-1.0.0/cortex/scanners/js_scanner.py +639 -0
- axiom_graph-1.0.0/cortex/scanners/json_doc_scanner.py +367 -0
- axiom_graph-1.0.0/cortex/scanners/module_scanner.py +908 -0
- axiom_graph-1.0.0/cortex/viz/__init__.py +8 -0
- axiom_graph-1.0.0/cortex/viz/server.py +2745 -0
- axiom_graph-1.0.0/cortex/viz/static/css/style.css +4600 -0
- axiom_graph-1.0.0/cortex/viz/static/index.html +334 -0
- axiom_graph-1.0.0/cortex/viz/static/js/app.js +1359 -0
- axiom_graph-1.0.0/cortex/viz/static/js/detail.js +673 -0
- axiom_graph-1.0.0/cortex/viz/static/js/doc-api.js +191 -0
- axiom_graph-1.0.0/cortex/viz/static/js/doc-diagrams.js +214 -0
- axiom_graph-1.0.0/cortex/viz/static/js/doc-editor.js +1980 -0
- axiom_graph-1.0.0/cortex/viz/static/js/doc-tree.js +350 -0
- axiom_graph-1.0.0/cortex/viz/static/js/graph.js +339 -0
- axiom_graph-1.0.0/cortex/viz/static/js/list-source-panel.js +802 -0
- axiom_graph-1.0.0/cortex/viz/static/js/list.js +661 -0
- axiom_graph-1.0.0/cortex/viz/static/js/monaco-facade.js +77 -0
- axiom_graph-1.0.0/cortex/viz/static/js/since-modal.js +380 -0
- axiom_graph-1.0.0/cortex/viz/static/js/tests.js +755 -0
- axiom_graph-1.0.0/cortex/viz/static/js/types.js +15 -0
- axiom_graph-1.0.0/cortex/viz/static/js/view-utils.js +94 -0
- axiom_graph-1.0.0/cortex/viz/static/js/workflow.js +645 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/.gitignore +1 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/app.ts +1291 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/detail.ts +823 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/doc-api.ts +212 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/doc-diagrams.ts +246 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/doc-editor.ts +1964 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/doc-tree.ts +416 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/graph.ts +383 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/list-source-panel.ts +706 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/list.ts +650 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/monaco-facade.ts +107 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/.bin/tsc +16 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/.bin/tsc.cmd +17 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/.bin/tsc.ps1 +28 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/.bin/tsserver +16 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/.bin/tsserver.cmd +17 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/.bin/tsserver.ps1 +28 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/.package-lock.json +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/LICENSE.txt +55 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/README.md +50 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/SECURITY.md +39 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/bin/tsc +2 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/bin/tsserver +2 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/_tsc.js +134463 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/_tsserver.js +659 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/_typingsInstaller.js +222 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2129 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2125 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2129 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2129 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2125 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2129 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2129 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.d.ts +20 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.decorators.d.ts +382 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.decorators.legacy.d.ts +20 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +18 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.dom.d.ts +45125 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.dom.iterable.d.ts +18 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.collection.d.ts +150 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.core.d.ts +595 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.d.ts +26 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.generator.d.ts +75 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.iterable.d.ts +603 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.promise.d.ts +79 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.proxy.d.ts +126 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.reflect.d.ts +142 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.symbol.d.ts +44 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +324 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2016.array.include.d.ts +114 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2016.d.ts +19 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2016.full.d.ts +21 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2016.intl.d.ts +29 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +19 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2017.d.ts +24 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2017.date.d.ts +29 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2017.full.d.ts +21 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2017.intl.d.ts +42 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2017.object.d.ts +47 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +133 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2017.string.d.ts +43 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +51 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +75 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +51 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2018.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2018.full.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2018.intl.d.ts +81 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2018.promise.d.ts +28 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2018.regexp.d.ts +35 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2019.array.d.ts +77 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2019.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2019.full.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2019.intl.d.ts +21 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2019.object.d.ts +31 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2019.string.d.ts +35 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2019.symbol.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.bigint.d.ts +763 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.d.ts +25 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.date.d.ts +40 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.full.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.intl.d.ts +472 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.number.d.ts +26 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.promise.d.ts +45 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +39 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2021.d.ts +21 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2021.full.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2021.intl.d.ts +164 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2021.promise.d.ts +46 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2021.string.d.ts +31 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2022.array.d.ts +119 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2022.d.ts +23 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2022.full.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2022.intl.d.ts +143 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2022.object.d.ts +24 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2022.regexp.d.ts +37 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2022.string.d.ts +23 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2023.array.d.ts +922 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2023.collection.d.ts +19 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2023.d.ts +20 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2023.full.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2023.intl.d.ts +62 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +63 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2024.collection.d.ts +27 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2024.d.ts +24 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2024.full.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2024.object.d.ts +27 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2024.promise.d.ts +33 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2024.regexp.d.ts +23 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +66 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2024.string.d.ts +27 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2025.collection.d.ts +94 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2025.d.ts +23 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2025.float16.d.ts +443 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2025.full.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2025.intl.d.ts +200 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2025.iterator.d.ts +146 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2025.promise.d.ts +32 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es2025.regexp.d.ts +30 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es5.d.ts +4599 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.es6.d.ts +21 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.array.d.ts +33 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.collection.d.ts +47 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.d.ts +27 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.date.d.ts +21 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.decorators.d.ts +26 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.disposable.d.ts +191 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.error.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.full.d.ts +22 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.intl.d.ts +107 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +23 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.temporal.d.ts +485 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.esnext.typedarrays.d.ts +90 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.scripthost.d.ts +320 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +18 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.webworker.d.ts +15606 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +21 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/lib.webworker.iterable.d.ts +18 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2129 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2129 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2125 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2129 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/tsc.js +8 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/tsserver.js +8 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/typesMap.json +497 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/typescript.d.ts +11448 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/typescript.js +201020 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/typingsInstaller.js +8 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/watchGuard.js +53 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2129 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2125 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/node_modules/typescript/package.json +118 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/package-lock.json +30 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/package.json +17 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/since-modal.ts +442 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/tests.ts +713 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/tsconfig.json +20 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/types.ts +259 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/view-utils.ts +111 -0
- axiom_graph-1.0.0/cortex/viz/static/ts/workflow.ts +620 -0
- axiom_graph-1.0.0/pyproject.toml +77 -0
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: axiom-graph
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Project knowledge indexer for AI agents — scans code, tracks documentation staleness, and serves a knowledge graph to AI agents via MCP
|
|
5
|
+
License: MIT
|
|
6
|
+
Keywords: indexer,documentation,staleness,knowledge-graph,mcp,ai-agents
|
|
7
|
+
Author: ddpoe
|
|
8
|
+
Author-email: dap182@pitt.edu
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
18
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
19
|
+
Provides-Extra: js
|
|
20
|
+
Provides-Extra: semantic
|
|
21
|
+
Provides-Extra: semantic-torch
|
|
22
|
+
Provides-Extra: viz
|
|
23
|
+
Requires-Dist: click (>=8.0)
|
|
24
|
+
Requires-Dist: docstring-parser (>=0.15)
|
|
25
|
+
Requires-Dist: fastapi (>=0.100) ; extra == "viz"
|
|
26
|
+
Requires-Dist: fastembed (>=0.3) ; (python_version >= "3.10" and python_version < "3.13") and (extra == "semantic")
|
|
27
|
+
Requires-Dist: markdown-it-py (>=3.0)
|
|
28
|
+
Requires-Dist: mcp[cli] (>=1.0)
|
|
29
|
+
Requires-Dist: onnxruntime (>=1.17,<1.20) ; (python_version >= "3.10" and python_version < "3.13") and (extra == "semantic")
|
|
30
|
+
Requires-Dist: pyyaml (>=6.0)
|
|
31
|
+
Requires-Dist: sentence-transformers (>=2.0) ; extra == "semantic-torch"
|
|
32
|
+
Requires-Dist: sqlite-vec (>=0.1.1) ; extra == "semantic" or extra == "semantic-torch"
|
|
33
|
+
Requires-Dist: tomli (>=2.0) ; python_version < "3.11"
|
|
34
|
+
Requires-Dist: tree-sitter (>=0.25.2,<0.26.0) ; extra == "js"
|
|
35
|
+
Requires-Dist: tree-sitter-javascript (>=0.25.0,<0.26.0) ; extra == "js"
|
|
36
|
+
Requires-Dist: tree-sitter-typescript (>=0.23.2,<0.24.0) ; extra == "js"
|
|
37
|
+
Requires-Dist: uvicorn (>=0.20) ; extra == "viz"
|
|
38
|
+
Description-Content-Type: text/markdown
|
|
39
|
+
|
|
40
|
+
# Cortex
|
|
41
|
+
|
|
42
|
+
A project knowledge indexer that scans your codebase, builds a structured graph of modules, functions, classes, and documentation, and tracks when docs drift from the code they describe. Designed for AI-assisted development -- cortex gives agents structured access to your project through the Model Context Protocol (MCP).
|
|
43
|
+
|
|
44
|
+
## Quick Start
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pip install cortex[viz]
|
|
48
|
+
|
|
49
|
+
cortex init /path/to/your/project # scan and build the index
|
|
50
|
+
cortex check /path/to/your/project # see what's stale
|
|
51
|
+
cortex viz /path/to/your/project # launch the dashboard
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Features
|
|
55
|
+
|
|
56
|
+
- **Knowledge graph** -- indexes Python (and JS/TS via tree-sitter) into nodes and edges: functions, modules, classes, docs, tests, and their relationships
|
|
57
|
+
- **Staleness detection** -- two-dimensional tracking (own content changes + linked dependency changes) with transitive propagation through doc chains
|
|
58
|
+
- **MCP server** -- 29 tools for AI agents to search, read, navigate, and modify the index over the Model Context Protocol
|
|
59
|
+
- **Viz dashboard** -- interactive browser UI with graph view, list view, doc manager, workflow explorer, and detail panels
|
|
60
|
+
- **DocJSON** -- structured documentation format that links sections to code nodes, enabling automated drift detection
|
|
61
|
+
- **dFlow integration** -- optional workflow/task decorators with step markers, indexed alongside code
|
|
62
|
+
- **CI gate** -- `cortex check --fail-on any` in GitHub Actions prevents stale docs from merging
|
|
63
|
+
|
|
64
|
+
## MCP Server Setup
|
|
65
|
+
|
|
66
|
+
The MCP server is how AI agents interact with cortex. It uses stdio transport.
|
|
67
|
+
|
|
68
|
+
### Claude Code
|
|
69
|
+
|
|
70
|
+
Create `.mcp.json` in your project root:
|
|
71
|
+
|
|
72
|
+
```json
|
|
73
|
+
{
|
|
74
|
+
"mcpServers": {
|
|
75
|
+
"cortex": {
|
|
76
|
+
"type": "stdio",
|
|
77
|
+
"command": "/path/to/your/venv/bin/python",
|
|
78
|
+
"args": ["-m", "cortex.mcp_server"],
|
|
79
|
+
"env": {
|
|
80
|
+
"CORTEX_LOG_LEVEL": "INFO"
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### VS Code (Copilot / Continue)
|
|
88
|
+
|
|
89
|
+
Add to `.vscode/settings.json`:
|
|
90
|
+
|
|
91
|
+
```json
|
|
92
|
+
{
|
|
93
|
+
"mcp.servers": {
|
|
94
|
+
"cortex": {
|
|
95
|
+
"command": "/path/to/your/venv/bin/python",
|
|
96
|
+
"args": ["-m", "cortex.mcp_server"],
|
|
97
|
+
"env": {
|
|
98
|
+
"CORTEX_LOG_LEVEL": "INFO"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
### Any MCP client
|
|
106
|
+
|
|
107
|
+
The entry point is `cortex-mcp` (installed as a console script) or `python -m cortex.mcp_server`. Both use stdio transport -- JSON-RPC on stdin/stdout, logs on stderr.
|
|
108
|
+
|
|
109
|
+
### Logging
|
|
110
|
+
|
|
111
|
+
| Variable | Default | Description |
|
|
112
|
+
|----------|---------|-------------|
|
|
113
|
+
| `CORTEX_LOG_LEVEL` | `INFO` | `DEBUG`, `INFO`, `WARNING`, `ERROR` |
|
|
114
|
+
| `CORTEX_LOG_FILE` | *(none)* | Path to a rotating log file (5 MB max, 2 backups) |
|
|
115
|
+
|
|
116
|
+
Set `CORTEX_LOG_LEVEL=DEBUG` to see tool entry/exit timing, SQL queries, and build details. Logs always go to stderr; `CORTEX_LOG_FILE` adds a file copy.
|
|
117
|
+
|
|
118
|
+
## Documentation
|
|
119
|
+
|
|
120
|
+
Full documentation is available as a consumer docs site:
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
pip install cortex[viz] # includes mkdocs-material
|
|
124
|
+
cortex render-site /path/to/project # generates site/ directory
|
|
125
|
+
cortex render-site /path/to/project --serve # live preview at localhost:8000
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
Or read the DocJSON source files directly in `docs/consumer/`:
|
|
129
|
+
|
|
130
|
+
- [Getting Started](docs/consumer/getting-started.json)
|
|
131
|
+
- [Core Concepts](docs/consumer/core-concepts.json)
|
|
132
|
+
- [Staleness Engine](docs/consumer/staleness.json)
|
|
133
|
+
- [Documentation System](docs/consumer/docs-system.json)
|
|
134
|
+
- [dFlow Integration](docs/consumer/dflow.json)
|
|
135
|
+
- [MCP Server](docs/consumer/mcp-server.json)
|
|
136
|
+
- [MCP Setup & Observability](docs/consumer/mcp-setup.json)
|
|
137
|
+
- [Viz Dashboard](docs/consumer/viz.json)
|
|
138
|
+
- [Configuration](docs/consumer/configuration.json)
|
|
139
|
+
|
|
140
|
+
## License
|
|
141
|
+
|
|
142
|
+
MIT
|
|
143
|
+
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# Cortex
|
|
2
|
+
|
|
3
|
+
A project knowledge indexer that scans your codebase, builds a structured graph of modules, functions, classes, and documentation, and tracks when docs drift from the code they describe. Designed for AI-assisted development -- cortex gives agents structured access to your project through the Model Context Protocol (MCP).
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install cortex[viz]
|
|
9
|
+
|
|
10
|
+
cortex init /path/to/your/project # scan and build the index
|
|
11
|
+
cortex check /path/to/your/project # see what's stale
|
|
12
|
+
cortex viz /path/to/your/project # launch the dashboard
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Features
|
|
16
|
+
|
|
17
|
+
- **Knowledge graph** -- indexes Python (and JS/TS via tree-sitter) into nodes and edges: functions, modules, classes, docs, tests, and their relationships
|
|
18
|
+
- **Staleness detection** -- two-dimensional tracking (own content changes + linked dependency changes) with transitive propagation through doc chains
|
|
19
|
+
- **MCP server** -- 29 tools for AI agents to search, read, navigate, and modify the index over the Model Context Protocol
|
|
20
|
+
- **Viz dashboard** -- interactive browser UI with graph view, list view, doc manager, workflow explorer, and detail panels
|
|
21
|
+
- **DocJSON** -- structured documentation format that links sections to code nodes, enabling automated drift detection
|
|
22
|
+
- **dFlow integration** -- optional workflow/task decorators with step markers, indexed alongside code
|
|
23
|
+
- **CI gate** -- `cortex check --fail-on any` in GitHub Actions prevents stale docs from merging
|
|
24
|
+
|
|
25
|
+
## MCP Server Setup
|
|
26
|
+
|
|
27
|
+
The MCP server is how AI agents interact with cortex. It uses stdio transport.
|
|
28
|
+
|
|
29
|
+
### Claude Code
|
|
30
|
+
|
|
31
|
+
Create `.mcp.json` in your project root:
|
|
32
|
+
|
|
33
|
+
```json
|
|
34
|
+
{
|
|
35
|
+
"mcpServers": {
|
|
36
|
+
"cortex": {
|
|
37
|
+
"type": "stdio",
|
|
38
|
+
"command": "/path/to/your/venv/bin/python",
|
|
39
|
+
"args": ["-m", "cortex.mcp_server"],
|
|
40
|
+
"env": {
|
|
41
|
+
"CORTEX_LOG_LEVEL": "INFO"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### VS Code (Copilot / Continue)
|
|
49
|
+
|
|
50
|
+
Add to `.vscode/settings.json`:
|
|
51
|
+
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"mcp.servers": {
|
|
55
|
+
"cortex": {
|
|
56
|
+
"command": "/path/to/your/venv/bin/python",
|
|
57
|
+
"args": ["-m", "cortex.mcp_server"],
|
|
58
|
+
"env": {
|
|
59
|
+
"CORTEX_LOG_LEVEL": "INFO"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### Any MCP client
|
|
67
|
+
|
|
68
|
+
The entry point is `cortex-mcp` (installed as a console script) or `python -m cortex.mcp_server`. Both use stdio transport -- JSON-RPC on stdin/stdout, logs on stderr.
|
|
69
|
+
|
|
70
|
+
### Logging
|
|
71
|
+
|
|
72
|
+
| Variable | Default | Description |
|
|
73
|
+
|----------|---------|-------------|
|
|
74
|
+
| `CORTEX_LOG_LEVEL` | `INFO` | `DEBUG`, `INFO`, `WARNING`, `ERROR` |
|
|
75
|
+
| `CORTEX_LOG_FILE` | *(none)* | Path to a rotating log file (5 MB max, 2 backups) |
|
|
76
|
+
|
|
77
|
+
Set `CORTEX_LOG_LEVEL=DEBUG` to see tool entry/exit timing, SQL queries, and build details. Logs always go to stderr; `CORTEX_LOG_FILE` adds a file copy.
|
|
78
|
+
|
|
79
|
+
## Documentation
|
|
80
|
+
|
|
81
|
+
Full documentation is available as a consumer docs site:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
pip install cortex[viz] # includes mkdocs-material
|
|
85
|
+
cortex render-site /path/to/project # generates site/ directory
|
|
86
|
+
cortex render-site /path/to/project --serve # live preview at localhost:8000
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Or read the DocJSON source files directly in `docs/consumer/`:
|
|
90
|
+
|
|
91
|
+
- [Getting Started](docs/consumer/getting-started.json)
|
|
92
|
+
- [Core Concepts](docs/consumer/core-concepts.json)
|
|
93
|
+
- [Staleness Engine](docs/consumer/staleness.json)
|
|
94
|
+
- [Documentation System](docs/consumer/docs-system.json)
|
|
95
|
+
- [dFlow Integration](docs/consumer/dflow.json)
|
|
96
|
+
- [MCP Server](docs/consumer/mcp-server.json)
|
|
97
|
+
- [MCP Setup & Observability](docs/consumer/mcp-setup.json)
|
|
98
|
+
- [Viz Dashboard](docs/consumer/viz.json)
|
|
99
|
+
- [Configuration](docs/consumer/configuration.json)
|
|
100
|
+
|
|
101
|
+
## License
|
|
102
|
+
|
|
103
|
+
MIT
|