aleph-compiler 1.1.2__py3-none-any.whl
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.
- aleph/__init__.py +5 -0
- aleph/__version__.py +3 -0
- aleph/cli.py +2186 -0
- aleph/compress/__init__.py +5 -0
- aleph/compress/body_compressor.py +131 -0
- aleph/compress/policies.py +54 -0
- aleph/compress/summarizer.py +153 -0
- aleph/diff/__init__.py +1 -0
- aleph/diff/semantic_diff.py +114 -0
- aleph/emit/__init__.py +5 -0
- aleph/emit/file_components.py +140 -0
- aleph/emit/format.py +19 -0
- aleph/emit/loader.py +594 -0
- aleph/emit/serializer.py +419 -0
- aleph/epistemic/__init__.py +1 -0
- aleph/epistemic/store.py +214 -0
- aleph/inference/__init__.py +1 -0
- aleph/inference/error_flow.py +196 -0
- aleph/inference/intent_inference.py +194 -0
- aleph/inference/patterns.py +152 -0
- aleph/inference/test_coverage.py +160 -0
- aleph/ingest/__init__.py +5 -0
- aleph/ingest/languages.py +72 -0
- aleph/ingest/node_types.py +146 -0
- aleph/ingest/parser.py +45 -0
- aleph/link/__init__.py +3 -0
- aleph/link/project_salience.py +208 -0
- aleph/link/salience.py +44 -0
- aleph/mcp/__init__.py +1 -0
- aleph/mcp/handlers.py +1313 -0
- aleph/mcp/project_router.py +341 -0
- aleph/mcp/server.py +851 -0
- aleph/mcp/tools.py +518 -0
- aleph/memory/__init__.py +1 -0
- aleph/memory/bench.py +341 -0
- aleph/memory/briefing.py +342 -0
- aleph/memory/compressor.py +623 -0
- aleph/memory/decompressor.py +229 -0
- aleph/memory/formats.py +42 -0
- aleph/memory/session_memory.py +172 -0
- aleph/model/__init__.py +11 -0
- aleph/model/components.py +514 -0
- aleph/model/enums.py +37 -0
- aleph/model/graph.py +44 -0
- aleph/model/symbol.py +68 -0
- aleph/patch/__init__.py +1 -0
- aleph/patch/manager.py +590 -0
- aleph/pipeline.py +550 -0
- aleph/project/__init__.py +2 -0
- aleph/project/builder.py +806 -0
- aleph/project/cache.py +390 -0
- aleph/project/discovery.py +154 -0
- aleph/project/parallel.py +164 -0
- aleph/project/paths.py +45 -0
- aleph/query/__init__.py +0 -0
- aleph/query/engine.py +1096 -0
- aleph/query/semantic.py +140 -0
- aleph/query/workspace.py +326 -0
- aleph/store/__init__.py +5 -0
- aleph/store/export.py +258 -0
- aleph/store/sqlite_store.py +768 -0
- aleph/structure/__init__.py +5 -0
- aleph/structure/callgraph.py +213 -0
- aleph/structure/hierarchy.py +53 -0
- aleph/structure/signatures.py +157 -0
- aleph/symbols/__init__.py +6 -0
- aleph/symbols/extractor.py +363 -0
- aleph/symbols/fingerprint.py +33 -0
- aleph/symbols/id_migration.py +463 -0
- aleph/symbols/identifier.py +112 -0
- aleph/symbols/registry.py +73 -0
- aleph/temporal/__init__.py +1 -0
- aleph/temporal/analyzer.py +261 -0
- aleph/temporal/git_analyzer.py +84 -0
- aleph/temporal/git_history.py +694 -0
- aleph/util/__init__.py +7 -0
- aleph/util/ast_utils.py +38 -0
- aleph/util/hashing.py +46 -0
- aleph/util/progress.py +202 -0
- aleph/util/tokens.py +40 -0
- aleph_compiler-1.1.2.dist-info/METADATA +399 -0
- aleph_compiler-1.1.2.dist-info/RECORD +87 -0
- aleph_compiler-1.1.2.dist-info/WHEEL +5 -0
- aleph_compiler-1.1.2.dist-info/entry_points.txt +2 -0
- aleph_compiler-1.1.2.dist-info/licenses/LICENSE +202 -0
- aleph_compiler-1.1.2.dist-info/licenses/NOTICE +28 -0
- aleph_compiler-1.1.2.dist-info/top_level.txt +1 -0
aleph/__init__.py
ADDED
aleph/__version__.py
ADDED