sourcecode 1.33.3__py3-none-any.whl → 1.33.5__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.
- sourcecode/__init__.py +1 -1
- sourcecode/cli.py +38 -12
- sourcecode/prepare_context.py +4 -0
- sourcecode/repository_ir.py +59 -6
- sourcecode/ris.py +31 -2
- {sourcecode-1.33.3.dist-info → sourcecode-1.33.5.dist-info}/METADATA +3 -3
- {sourcecode-1.33.3.dist-info → sourcecode-1.33.5.dist-info}/RECORD +10 -10
- {sourcecode-1.33.3.dist-info → sourcecode-1.33.5.dist-info}/WHEEL +0 -0
- {sourcecode-1.33.3.dist-info → sourcecode-1.33.5.dist-info}/entry_points.txt +0 -0
- {sourcecode-1.33.3.dist-info → sourcecode-1.33.5.dist-info}/licenses/LICENSE +0 -0
sourcecode/__init__.py
CHANGED
sourcecode/cli.py
CHANGED
|
@@ -658,7 +658,6 @@ def main(
|
|
|
658
658
|
env_map: bool = typer.Option(
|
|
659
659
|
False,
|
|
660
660
|
"--env-map",
|
|
661
|
-
hidden=True,
|
|
662
661
|
help="Map environment variables referenced across the codebase.",
|
|
663
662
|
),
|
|
664
663
|
code_notes: bool = typer.Option(
|
|
@@ -1226,13 +1225,24 @@ def main(
|
|
|
1226
1225
|
_uncommitted = False
|
|
1227
1226
|
_hit_source = "L2_view" if (_view_key and _core_hash) else "L1_core"
|
|
1228
1227
|
_data_scope = "COMPACT" if compact else ("AGENT" if agent else "FULL")
|
|
1228
|
+
# Recover generated_at from cached content before overwriting _cache block.
|
|
1229
|
+
_cached_generated_at = None
|
|
1230
|
+
try:
|
|
1231
|
+
import json as _json_ga
|
|
1232
|
+
_cached_generated_at = (
|
|
1233
|
+
_json_ga.loads(_cache_hit_content)
|
|
1234
|
+
.get("_cache", {})
|
|
1235
|
+
.get("generated_at")
|
|
1236
|
+
)
|
|
1237
|
+
except Exception:
|
|
1238
|
+
pass
|
|
1229
1239
|
_cache_hit_content = _inject_cache_meta(_cache_hit_content, {
|
|
1230
1240
|
"cache_source": _hit_source,
|
|
1231
1241
|
"git_head_at_generation": _git_sha,
|
|
1232
1242
|
"current_git_head": _git_sha,
|
|
1233
1243
|
"is_stale": False,
|
|
1234
1244
|
"has_uncommitted_changes": _uncommitted,
|
|
1235
|
-
"generated_at":
|
|
1245
|
+
"generated_at": _cached_generated_at,
|
|
1236
1246
|
"data_scope": _data_scope,
|
|
1237
1247
|
})
|
|
1238
1248
|
write_output(_cache_hit_content, output=output)
|
|
@@ -1880,8 +1890,9 @@ def main(
|
|
|
1880
1890
|
if _gc_early and not (_bad_gc & set(_gc_early.limitations)):
|
|
1881
1891
|
_uc = _gc_early.uncommitted_changes
|
|
1882
1892
|
if _uc:
|
|
1883
|
-
#
|
|
1884
|
-
|
|
1893
|
+
# Include untracked (new files not yet staged) so new source files
|
|
1894
|
+
# are analyzed under --changed-only, not silently treated as "clean".
|
|
1895
|
+
_allowed_changed_files = set(_uc.staged) | set(_uc.unstaged) | set(_uc.untracked)
|
|
1885
1896
|
if not _allowed_changed_files:
|
|
1886
1897
|
# Git is available and confirms no uncommitted changes.
|
|
1887
1898
|
# Do NOT fall back to a full scan — that would silently produce
|
|
@@ -1900,10 +1911,10 @@ def main(
|
|
|
1900
1911
|
changed_only = False
|
|
1901
1912
|
if _git_confirmed_clean:
|
|
1902
1913
|
_nc_payload = json.dumps({
|
|
1903
|
-
"status": "working_tree_clean",
|
|
1904
|
-
"no_changes": True,
|
|
1905
1914
|
"changed_files": [],
|
|
1906
|
-
"message": "
|
|
1915
|
+
"message": "no uncommitted changes detected",
|
|
1916
|
+
"analysis_scope": "empty",
|
|
1917
|
+
"_meta": {"changed_only": True},
|
|
1907
1918
|
}, ensure_ascii=False)
|
|
1908
1919
|
write_output(_nc_payload, output=output)
|
|
1909
1920
|
raise typer.Exit()
|
|
@@ -2626,7 +2637,14 @@ def prepare_context_cmd(
|
|
|
2626
2637
|
if _task_include("improvement_opportunities") and output.improvement_opportunities:
|
|
2627
2638
|
out["improvement_opportunities"] = output.improvement_opportunities
|
|
2628
2639
|
if _task_include("test_gaps") and output.test_gaps:
|
|
2629
|
-
|
|
2640
|
+
# Emit both the canonical name (untested_sources) and the compat alias (test_gaps)
|
|
2641
|
+
# so agents can use either. untested_sources is the correct semantic name.
|
|
2642
|
+
out["untested_sources"] = output.test_gaps
|
|
2643
|
+
out["test_gaps"] = output.test_gaps # backward compat alias
|
|
2644
|
+
if task == "generate-tests":
|
|
2645
|
+
_et_count = getattr(output, "existing_test_count", None)
|
|
2646
|
+
if _et_count is not None:
|
|
2647
|
+
out["existing_test_count"] = _et_count
|
|
2630
2648
|
# P0-2: fast-mode truncation transparency — always emit when truncated, even if test_gaps is []
|
|
2631
2649
|
# Use `is True` (strict) so MagicMock objects in tests don't trigger this branch.
|
|
2632
2650
|
if getattr(output, "truncated", False) is True:
|
|
@@ -3543,6 +3561,12 @@ def fix_bug_cmd(
|
|
|
3543
3561
|
sourcecode impact <target> — Propagate impact from a specific class
|
|
3544
3562
|
sourcecode onboard . — Full architecture context first
|
|
3545
3563
|
"""
|
|
3564
|
+
if not symptom:
|
|
3565
|
+
typer.echo(
|
|
3566
|
+
"[fix-bug] Results are significantly better with --symptom. "
|
|
3567
|
+
"Example: --symptom 'NullPointerException in PaymentService'",
|
|
3568
|
+
err=True,
|
|
3569
|
+
)
|
|
3546
3570
|
ctx.invoke(
|
|
3547
3571
|
prepare_context_cmd,
|
|
3548
3572
|
task="fix-bug",
|
|
@@ -4298,19 +4322,21 @@ def cache_status_cmd(
|
|
|
4298
4322
|
def cache_clear_cmd(
|
|
4299
4323
|
path: Path = typer.Argument(Path("."), help="Repository path (default: current directory)"),
|
|
4300
4324
|
yes: bool = typer.Option(False, "--yes", "-y", help="Skip confirmation prompt."),
|
|
4301
|
-
include_ris: bool = typer.Option(False, "--include-ris", help="
|
|
4325
|
+
include_ris: bool = typer.Option(False, "--include-ris", hidden=True, help="Alias for --all. Preserved for backward compatibility."),
|
|
4326
|
+
all_: bool = typer.Option(False, "--all", help="Also delete the RIS snapshot (ris.json.gz). By default, RIS is preserved across clears."),
|
|
4302
4327
|
) -> None:
|
|
4303
4328
|
"""Delete cached snapshots for a repository.
|
|
4304
4329
|
|
|
4305
4330
|
By default, RIS (ris.json.gz) is preserved — it is the persistent structural
|
|
4306
|
-
index used for cold-start bootstrapping. Use --
|
|
4331
|
+
index used for cold-start bootstrapping. Use --all to also clear it.
|
|
4307
4332
|
"""
|
|
4308
4333
|
from sourcecode import cache as _cm
|
|
4309
4334
|
target = Path(path).resolve()
|
|
4335
|
+
_clear_ris = include_ris or all_
|
|
4310
4336
|
if not yes:
|
|
4311
|
-
_ris_note = " (including RIS)" if
|
|
4337
|
+
_ris_note = " (including RIS)" if _clear_ris else " (RIS preserved — use --all to also clear it)"
|
|
4312
4338
|
typer.confirm(f"Delete all cache files for {target}{_ris_note}?", abort=True)
|
|
4313
|
-
removed = _cm.clear(target, clear_ris=
|
|
4339
|
+
removed = _cm.clear(target, clear_ris=_clear_ris)
|
|
4314
4340
|
typer.echo(f"Removed {removed} file(s).")
|
|
4315
4341
|
|
|
4316
4342
|
|
sourcecode/prepare_context.py
CHANGED
|
@@ -391,6 +391,8 @@ class TaskOutput:
|
|
|
391
391
|
# P0-2: fast-mode truncation transparency
|
|
392
392
|
truncated: bool = False
|
|
393
393
|
truncated_reason: Optional[str] = None
|
|
394
|
+
# generate-tests: count of existing test files found (complements untested_sources)
|
|
395
|
+
existing_test_count: Optional[int] = None
|
|
394
396
|
|
|
395
397
|
|
|
396
398
|
@dataclass
|
|
@@ -2237,6 +2239,8 @@ class TaskContextBuilder:
|
|
|
2237
2239
|
# P0-2: fast-mode truncation transparency
|
|
2238
2240
|
truncated=_fast_truncated,
|
|
2239
2241
|
truncated_reason=_fast_truncated_reason,
|
|
2242
|
+
# generate-tests: count of test files found alongside untested_sources
|
|
2243
|
+
existing_test_count=len(test_set) if task_name == "generate-tests" else None,
|
|
2240
2244
|
)
|
|
2241
2245
|
|
|
2242
2246
|
def render_prompt(self, output: TaskOutput) -> str:
|
sourcecode/repository_ir.py
CHANGED
|
@@ -201,6 +201,20 @@ _FILTER_SECURITY_ANNOTATIONS: frozenset[str] = frozenset({
|
|
|
201
201
|
"@EnableGlobalMethodSecurity",
|
|
202
202
|
})
|
|
203
203
|
|
|
204
|
+
# Programmatic security: method-call patterns that indicate runtime auth enforcement.
|
|
205
|
+
_PROGRAMMATIC_SECURITY_RE = re.compile(
|
|
206
|
+
r"\b(?:hasRole|hasAuthority|isAuthenticated|requirePermission|checkPermission"
|
|
207
|
+
r"|assertAuthorized|authenticate)\s*\("
|
|
208
|
+
r"|(?:Authentication|SecurityContext|Principal|AuthorizationManager|AccessDecisionManager)\b"
|
|
209
|
+
r"|throw\s+new\s+(?:AccessDeniedException|UnauthorizedException|ForbiddenException|AuthenticationException)\b",
|
|
210
|
+
re.MULTILINE,
|
|
211
|
+
)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
def _has_programmatic_security(source: str) -> bool:
|
|
215
|
+
return bool(_PROGRAMMATIC_SECURITY_RE.search(source))
|
|
216
|
+
|
|
217
|
+
|
|
204
218
|
_MODIFIER_WORDS: frozenset[str] = frozenset({
|
|
205
219
|
"public", "private", "protected", "static", "final", "abstract",
|
|
206
220
|
"synchronized", "native", "strictfp", "transient", "volatile", "default",
|
|
@@ -2365,6 +2379,7 @@ def _build_route_surface(
|
|
|
2365
2379
|
|
|
2366
2380
|
routes: list[dict] = []
|
|
2367
2381
|
seen: set[tuple] = set()
|
|
2382
|
+
_prog_sec_cache: dict[str, Optional[bool]] = {} # declaring_file → has_programmatic
|
|
2368
2383
|
|
|
2369
2384
|
# Phase 2: emit own endpoint symbols and record them per class.
|
|
2370
2385
|
# Each method emits one route per resolved effective prefix.
|
|
@@ -2414,6 +2429,19 @@ def _build_route_surface(
|
|
|
2414
2429
|
_cls_sym_for_sec = class_sym_by_simple.get(cls_simple)
|
|
2415
2430
|
_sec = _route_security_from_sym(sym, _cls_sym_for_sec)
|
|
2416
2431
|
|
|
2432
|
+
# Programmatic security fallback: scan controller file when no annotation found.
|
|
2433
|
+
if _sec is None:
|
|
2434
|
+
_decl_file = sym.declaring_file or ""
|
|
2435
|
+
if _decl_file and _decl_file not in _prog_sec_cache:
|
|
2436
|
+
try:
|
|
2437
|
+
_prog_sec_cache[_decl_file] = _has_programmatic_security(
|
|
2438
|
+
Path(_decl_file).read_text(encoding="utf-8", errors="ignore")
|
|
2439
|
+
)
|
|
2440
|
+
except Exception:
|
|
2441
|
+
_prog_sec_cache[_decl_file] = False
|
|
2442
|
+
if _prog_sec_cache.get(_decl_file):
|
|
2443
|
+
_sec = {"policy": "programmatic"}
|
|
2444
|
+
|
|
2417
2445
|
for prefix in effective_prefixes:
|
|
2418
2446
|
# P1 fix: re.sub collapses any number of consecutive slashes (///, //, etc.)
|
|
2419
2447
|
# Single .replace("//", "/") fails for triple-slash from prefix="/" + suffix="/{id}".
|
|
@@ -2434,8 +2462,7 @@ def _build_route_surface(
|
|
|
2434
2462
|
"stable_id": sym.stable_id,
|
|
2435
2463
|
"inheritance_depth": 0,
|
|
2436
2464
|
}
|
|
2437
|
-
|
|
2438
|
-
_route_entry["security_annotations"] = _sec
|
|
2465
|
+
_route_entry["security_annotations"] = _sec
|
|
2439
2466
|
routes.append(_route_entry)
|
|
2440
2467
|
|
|
2441
2468
|
# Phase 3: inheritance projection — subclasses with zero own endpoints
|
|
@@ -2966,10 +2993,10 @@ def extract_java_endpoints(root: Path) -> "dict[str, Any]":
|
|
|
2966
2993
|
# Use security_annotations already extracted by _build_route_surface
|
|
2967
2994
|
# via the canonical _route_security_from_sym extractor.
|
|
2968
2995
|
security_info = route.get("security_annotations")
|
|
2996
|
+
entry["security"] = security_info # always present; None = no security signal
|
|
2969
2997
|
if security_info:
|
|
2970
|
-
entry["security"] = security_info
|
|
2971
2998
|
# Backward compat: keep required_permission for custom annotation
|
|
2972
|
-
if security_info.get("policy") == "custom_permission":
|
|
2999
|
+
if isinstance(security_info, dict) and security_info.get("policy") == "custom_permission":
|
|
2973
3000
|
entry["required_permission"] = security_info["required_permission"]
|
|
2974
3001
|
endpoints.append(entry)
|
|
2975
3002
|
|
|
@@ -2988,7 +3015,7 @@ def extract_java_endpoints(root: Path) -> "dict[str, Any]":
|
|
|
2988
3015
|
# "no_security_signal" = no recognized security annotation at method OR class level.
|
|
2989
3016
|
# Note: repos may use framework-level security (e.g. Keycloak itself) with no
|
|
2990
3017
|
# per-endpoint annotations — this count reflects annotation-based coverage only.
|
|
2991
|
-
no_security_signal = sum(1 for e in endpoints if "security"
|
|
3018
|
+
no_security_signal = sum(1 for e in endpoints if not e.get("security"))
|
|
2992
3019
|
|
|
2993
3020
|
# Detect filter-based security: centralized Spring Security config class.
|
|
2994
3021
|
# When present, high no_security_signal is expected — security is enforced by
|
|
@@ -3007,7 +3034,7 @@ def extract_java_endpoints(root: Path) -> "dict[str, Any]":
|
|
|
3007
3034
|
for sym in _class_syms
|
|
3008
3035
|
)
|
|
3009
3036
|
)
|
|
3010
|
-
_has_annotation_security = any("security"
|
|
3037
|
+
_has_annotation_security = any(e.get("security") for e in endpoints)
|
|
3011
3038
|
if _filter_based and _has_annotation_security:
|
|
3012
3039
|
security_model = "mixed"
|
|
3013
3040
|
elif _filter_based:
|
|
@@ -3090,8 +3117,34 @@ def compute_blast_radius(
|
|
|
3090
3117
|
subsystems: list[dict] = ir.get("subsystems") or []
|
|
3091
3118
|
|
|
3092
3119
|
# ── 1. Resolve target → one or more FQNs ─────────────────────────────────
|
|
3120
|
+
_path_like = "/" in target or "\\" in target or target.endswith(".java")
|
|
3093
3121
|
resolution, matched_fqns = _resolve_target(target, reverse_graph, graph_nodes)
|
|
3094
3122
|
|
|
3123
|
+
# File-path input with ambiguous resolution: require the user to be specific.
|
|
3124
|
+
if _path_like and len(matched_fqns) > 1:
|
|
3125
|
+
_candidates = sorted(matched_fqns)
|
|
3126
|
+
return {
|
|
3127
|
+
"target": target,
|
|
3128
|
+
"resolution": "ambiguous_path",
|
|
3129
|
+
"message": (
|
|
3130
|
+
f"Path '{target}' matches {len(matched_fqns)} classes in the IR. "
|
|
3131
|
+
"Pass the full FQN to select one."
|
|
3132
|
+
),
|
|
3133
|
+
"candidates": _candidates,
|
|
3134
|
+
"direct_callers": [],
|
|
3135
|
+
"indirect_callers": [],
|
|
3136
|
+
"endpoints_affected": [],
|
|
3137
|
+
"mappers_affected": [],
|
|
3138
|
+
"security_surface_affected": [],
|
|
3139
|
+
"cross_module_impact": [],
|
|
3140
|
+
"transactional_boundaries_touched": [],
|
|
3141
|
+
"risk_score": 0.0,
|
|
3142
|
+
"risk_level": "unknown",
|
|
3143
|
+
"confidence_score": 0.0,
|
|
3144
|
+
"confidence_level": "low",
|
|
3145
|
+
"explanation": f"Ambiguous path — {len(matched_fqns)} candidates found.",
|
|
3146
|
+
}
|
|
3147
|
+
|
|
3095
3148
|
if not matched_fqns:
|
|
3096
3149
|
# Build a short candidate list to help the user
|
|
3097
3150
|
_candidates = _blast_radius_candidates(target, reverse_graph, graph_nodes)
|
sourcecode/ris.py
CHANGED
|
@@ -393,12 +393,40 @@ def get_cold_start_context(repo_root: Path) -> dict:
|
|
|
393
393
|
# An empty list does NOT mean "no endpoints exist" — it means the endpoint
|
|
394
394
|
# index has not been built yet. Agents must call get_endpoints to populate.
|
|
395
395
|
_api_complete = not _is_java or bool(endpoints)
|
|
396
|
+
|
|
397
|
+
# Build structural validation for Java/Spring repos.
|
|
398
|
+
# Detects when the RIS snapshot is structurally incomplete (controllers found
|
|
399
|
+
# but endpoint index was never built), so agents can decide whether to rebuild.
|
|
400
|
+
_controllers_in_map = ris.structural_map.get("controllers", [])
|
|
401
|
+
_controllers_in_api = ris.api_surface.get("controllers_index", [])
|
|
402
|
+
_controllers_found = len(_controllers_in_map) or len(_controllers_in_api)
|
|
403
|
+
_endpoints_found = len(endpoints)
|
|
404
|
+
# Spring is detected when controllers exist in structural map or api surface.
|
|
405
|
+
_spring_detected = bool(_controllers_found) or bool(_controllers_in_api)
|
|
406
|
+
_validation_status = (
|
|
407
|
+
"incomplete_snapshot"
|
|
408
|
+
if _is_java and _spring_detected and _endpoints_found == 0
|
|
409
|
+
else "valid"
|
|
410
|
+
)
|
|
411
|
+
_validation: dict = {
|
|
412
|
+
"spring_detected": _spring_detected,
|
|
413
|
+
"controllers_found": _controllers_found,
|
|
414
|
+
"endpoints_found": _endpoints_found,
|
|
415
|
+
"status": _validation_status,
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
# When the snapshot is structurally incomplete, downgrade status so agents
|
|
419
|
+
# don't assume cold_start_ready when critical sections are missing.
|
|
420
|
+
_status_base = "cold_start_stale" if stale else "cold_start_ready"
|
|
421
|
+
if _validation_status == "incomplete_snapshot" and not stale:
|
|
422
|
+
_status_base = "cold_start_incomplete"
|
|
423
|
+
|
|
396
424
|
result: dict = {
|
|
397
|
-
"status":
|
|
425
|
+
"status": _status_base,
|
|
398
426
|
"repo_id": ris.repo_id,
|
|
399
427
|
"git_head": ris.git_head,
|
|
400
428
|
"current_git_head": current_head,
|
|
401
|
-
"stale": stale,
|
|
429
|
+
"stale": stale or (_validation_status == "incomplete_snapshot"),
|
|
402
430
|
"has_uncommitted_changes": uncommitted,
|
|
403
431
|
"last_updated_at": ris.last_updated_at,
|
|
404
432
|
"cache_source": "RIS",
|
|
@@ -408,6 +436,7 @@ def get_cold_start_context(repo_root: Path) -> dict:
|
|
|
408
436
|
"entrypoints": ris.structural_map.get("entrypoints", []),
|
|
409
437
|
"endpoints": endpoints,
|
|
410
438
|
"hotspots": ris.git_context_snapshot.get("hotspots", []),
|
|
439
|
+
"validation": _validation,
|
|
411
440
|
}
|
|
412
441
|
if not endpoints and _is_java:
|
|
413
442
|
result["endpoints_hint"] = (
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sourcecode
|
|
3
|
-
Version: 1.33.
|
|
3
|
+
Version: 1.33.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.33.
|
|
116
|
+
# sourcecode 1.33.4
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
---
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sourcecode/__init__.py,sha256=
|
|
1
|
+
sourcecode/__init__.py,sha256=1rtjkdHP6M265Dvjzw_Pe1-jjy13_C_oBKGBnxQCbUk,103
|
|
2
2
|
sourcecode/adaptive_scanner.py,sha256=XffluXKzJUXrMtjEiAOnSNPZnztdIcts17T9ouHeID0,10521
|
|
3
3
|
sourcecode/architecture_analyzer.py,sha256=qh749a7ykPtGmQI1MR9y6j8TtL_jBdVYFx9YRsLqOMw,44121
|
|
4
4
|
sourcecode/architecture_summary.py,sha256=z34_6v7cSwy98cof2UVciGho7SCrZ93tiqMmq5WNzRQ,20405
|
|
@@ -7,7 +7,7 @@ sourcecode/cache.py,sha256=wAyPrXN5DqiGivnMpeEuun2xHDKfBer2_oBsh6kj_vc,30447
|
|
|
7
7
|
sourcecode/cache.tmp_new,sha256=-IvV7CojiZjqeKMln1m-lqI0QVA2uFGWmYir4XRFOUk,27970
|
|
8
8
|
sourcecode/canonical_ir.py,sha256=_HM3AUmKSdna9u4dCoU6rpgSA6HdF8gzOKZykIUCNGY,23277
|
|
9
9
|
sourcecode/classifier.py,sha256=2lYoSH3vOTkXZYPU7Go2WIet1-IuNzTWVhc-ULnXtgw,8024
|
|
10
|
-
sourcecode/cli.py,sha256=
|
|
10
|
+
sourcecode/cli.py,sha256=EMs-sz83Fpl4evsU56xuU_S6ZL0TMzZp9nW9V1bra-I,181396
|
|
11
11
|
sourcecode/code_notes_analyzer.py,sha256=EJemNCNc9Dn-1RZYu-aNbK0ELzmsyC4s6FdHi3XyNEI,9392
|
|
12
12
|
sourcecode/confidence_analyzer.py,sha256=_jckZSxksV-OU38vbkxfVNBnWCtlCq8Vwfg23x1uspA,19054
|
|
13
13
|
sourcecode/context_scorer.py,sha256=QpChSpsmaAYz91rXA4Ue5xzQmNz_ZboZN09YOHScq1U,14679
|
|
@@ -29,14 +29,14 @@ sourcecode/metrics_analyzer.py,sha256=m0ENgtqKeBL17kUIK3fmGkgo7UfXBNHxCMj0H_Y5K7
|
|
|
29
29
|
sourcecode/output_budget.py,sha256=43307mJEyUPU3MI-QEQoVxrcAvNyUzdzF_SAPgisBQE,6603
|
|
30
30
|
sourcecode/path_filters.py,sha256=ROFRQ8eSLBEMiixK9f45-RO7um4VEEcjoD5AA4I427I,3739
|
|
31
31
|
sourcecode/pr_comment_renderer.py,sha256=smHslxiG14lrytCkq5nFrFu-qTHgA-t-LFYfdrfjz2o,14423
|
|
32
|
-
sourcecode/prepare_context.py,sha256=
|
|
32
|
+
sourcecode/prepare_context.py,sha256=aL4WS62wozw9iG_v3UrU00Qc7lGgckUB5RY5ApPblo8,205618
|
|
33
33
|
sourcecode/progress.py,sha256=qn30sWaHOkjTgXsSBmiPkz7Rsbwc5oSlIe6JNEMYp_k,3149
|
|
34
34
|
sourcecode/ranking_engine.py,sha256=ZAucq_YX2KkWUuAZf4P0lhtQ_38vEFnUhuGtSZd1S0E,12970
|
|
35
35
|
sourcecode/redactor.py,sha256=SB4hwIvg8h-hvcqKcDWaZvA-aSyn-at-BIRwa0tUv5E,3227
|
|
36
36
|
sourcecode/relevance_scorer.py,sha256=MYF4FFkveAQps9SmTeTlh6ODiBz2F--_hWNeHMLtUHQ,8405
|
|
37
37
|
sourcecode/repo_classifier.py,sha256=FG1vaWKdWXsWdl-S8hjVMiTqcwgaRXkDyvK4rPcOGtQ,22681
|
|
38
|
-
sourcecode/repository_ir.py,sha256
|
|
39
|
-
sourcecode/ris.py,sha256=
|
|
38
|
+
sourcecode/repository_ir.py,sha256=WtUPRVrvJju6Lrvm_7iTDk57qJFCAh-LJalLtX8jzIk,155595
|
|
39
|
+
sourcecode/ris.py,sha256=vkIe_v-jjceeb0Adhn-Kw5eFXE_nIkGHflOnQYPycTk,17411
|
|
40
40
|
sourcecode/runtime_classifier.py,sha256=uTAD6BDCiBLUZEDRfqk718kM4RTT_vAbfkcOI2_Xx58,18432
|
|
41
41
|
sourcecode/scanner.py,sha256=WdOQ78mMzjR1NjmKTlbxdgwinnCTfAhxCVLBEFQiFHU,8899
|
|
42
42
|
sourcecode/schema.py,sha256=aHNXDf8LGyUC8ZDE_VS9kiskC2-Oswhi_WnpdGy6HDw,24897
|
|
@@ -80,8 +80,8 @@ sourcecode/telemetry/consent.py,sha256=wLMvGNJeSSyZoNkQXpoUioY6mMv4Qdvuw7S9jAEWn
|
|
|
80
80
|
sourcecode/telemetry/events.py,sha256=oEvvulfsv5GIDWG2174gSS6tNB95w38AIYiYeifGKlE,2294
|
|
81
81
|
sourcecode/telemetry/filters.py,sha256=Asa71oRl7q3Wt_FMwuufIZJFzSYdgRNKS8LHCIyFeYE,4805
|
|
82
82
|
sourcecode/telemetry/transport.py,sha256=KJeIPCPWMdmbCP3ySGs2iUlia34U6vWne2dZsUezesw,1560
|
|
83
|
-
sourcecode-1.33.
|
|
84
|
-
sourcecode-1.33.
|
|
85
|
-
sourcecode-1.33.
|
|
86
|
-
sourcecode-1.33.
|
|
87
|
-
sourcecode-1.33.
|
|
83
|
+
sourcecode-1.33.5.dist-info/METADATA,sha256=0CKSD6Q2_A9noOoPyeC4I0A-JuYA8bo3aIAu-kxtm1A,16440
|
|
84
|
+
sourcecode-1.33.5.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
85
|
+
sourcecode-1.33.5.dist-info/entry_points.txt,sha256=ex3F9rmbXeyDIoFQHtkEqTsKSaJow8F0LrVu8XfIktQ,57
|
|
86
|
+
sourcecode-1.33.5.dist-info/licenses/LICENSE,sha256=7DdHrU9Z_3e7dSvq4ISijZNjnuHo5NIHNiHDouMQ9JU,10491
|
|
87
|
+
sourcecode-1.33.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|