sourcecode 1.35.4__tar.gz → 1.35.5__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.
- {sourcecode-1.35.4 → sourcecode-1.35.5}/PKG-INFO +3 -3
- {sourcecode-1.35.4 → sourcecode-1.35.5}/README.md +2 -2
- {sourcecode-1.35.4 → sourcecode-1.35.5}/pyproject.toml +1 -1
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/__init__.py +1 -1
- {sourcecode-1.35.4 → sourcecode-1.35.5}/.github/workflows/build-windows.yml +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/.gitignore +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/.ruff.toml +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/CHANGELOG.md +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/CONTRIBUTING.md +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/LICENSE +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/SECURITY.md +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/raw +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/adaptive_scanner.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/architecture_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/architecture_summary.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/ast_extractor.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/cache.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/canonical_ir.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/cir_graphs.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/classifier.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/cli.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/code_notes_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/confidence_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/context_scorer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/context_summarizer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/contract_model.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/contract_pipeline.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/coverage_parser.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/dependency_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/__init__.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/base.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/csproj_parser.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/dart.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/dotnet.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/elixir.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/go.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/heuristic.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/hybrid.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/java.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/jvm_ext.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/nodejs.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/parsers.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/php.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/project.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/python.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/ruby.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/rust.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/systems.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/terraform.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/detectors/tooling.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/doc_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/entrypoint_classifier.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/env_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/error_schema.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/file_classifier.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/flow_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/git_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/graph_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/license.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/__init__.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/onboarding/__init__.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/onboarding/applier.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/onboarding/backup.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/onboarding/detector.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/onboarding/planner.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/orchestrator.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/registry.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/runner.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp/server.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/mcp_nudge.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/metrics_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/output_budget.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/path_filters.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/pr_comment_renderer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/prepare_context.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/progress.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/ranking_engine.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/redactor.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/relevance_scorer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/repo_classifier.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/repository_ir.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/ris.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/runtime_classifier.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/scanner.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/schema.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/semantic_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/serializer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/spring_event_topology.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/spring_findings.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/spring_impact.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/spring_model.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/spring_security_audit.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/spring_semantic.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/spring_tx_analyzer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/summarizer.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/telemetry/__init__.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/telemetry/config.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/telemetry/consent.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/telemetry/events.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/telemetry/filters.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/telemetry/transport.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/tree_utils.py +0 -0
- {sourcecode-1.35.4 → sourcecode-1.35.5}/src/sourcecode/workspace.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sourcecode
|
|
3
|
-
Version: 1.35.
|
|
3
|
+
Version: 1.35.5
|
|
4
4
|
Summary: Persistent structural context and ultra-fast repeated analysis for AI coding agents
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Keywords: agents,ai,codebase,context,developer-tools,llm
|
|
@@ -39,7 +39,7 @@ Description-Content-Type: text/markdown
|
|
|
39
39
|
|
|
40
40
|
**Persistent structural context and ultra-fast repeated analysis for AI coding agents.**
|
|
41
41
|
|
|
42
|
-

|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
---
|
|
@@ -113,7 +113,7 @@ pipx install sourcecode
|
|
|
113
113
|
|
|
114
114
|
```bash
|
|
115
115
|
sourcecode version
|
|
116
|
-
# sourcecode 1.35.
|
|
116
|
+
# sourcecode 1.35.5
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
---
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Persistent structural context and ultra-fast repeated analysis for AI coding agents.**
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|

|
|
7
7
|
|
|
8
8
|
---
|
|
@@ -76,7 +76,7 @@ pipx install sourcecode
|
|
|
76
76
|
|
|
77
77
|
```bash
|
|
78
78
|
sourcecode version
|
|
79
|
-
# sourcecode 1.35.
|
|
79
|
+
# sourcecode 1.35.5
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
---
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|