Repo Snapshot

Use the route cards first. The folder and symbol sections are there when you need detail.

1020Python files scanned
11058top-level classes/functions
32ownership areas
12guided routes
Comprehension debt grows when the codebase changes faster than the team can maintain a shared mental model. This page keeps the first question simple: where should I start? Source framing: DEV Community article.

Choose A Mode

Choose the closest job-to-be-done. The page will hide unrelated cards while keeping search available.

Current mode

Show everything

Everything is visible. Choose a mode to hide unrelated cards and rows.

First 10 minutes

First 10 Minutes

Pick the card that matches your situation. Stop after the listed files unless you have a reason to go deeper.

10 minutes

I am completely new

  1. Open README.md to understand what Skylos does.
  2. Open this map and pick exactly one route card.
  3. Read only the first two files in that route before browsing deeper.
15 minutes

I need to make a small change

  1. Search this page for the thing you want to change.
  2. Open the matching folder card and check the nearby tests.
  3. Change one ownership area first; avoid drive-by refactors.
20 minutes

I am debugging a bad result

  1. Find the rule or finding category in the route cards.
  2. Build the smallest fixture that reproduces the bad result.
  3. Patch the detector and keep the fixture as a regression test.
20 minutes

I am reviewing a risky PR

  1. Check whether the PR touches a hot zone.
  2. Follow the scan flow to see downstream output impact.
  3. Ask for benchmark or regression evidence before merging scanner semantics.

Start Here

I want to fix a false positive

Find the detector, the evidence proof, and the regression test that should pin the behavior.

  1. Reproduce the wrong finding with the smallest possible fixture.
  2. Find whether the bug is rule logic, liveness evidence, framework handling, or output filtering.
  3. Add a regression test that fails before the fix and passes after it.
Start with
Tests / proof

I want to prove quality changed

Run benchmarks and regression scripts instead of trusting a single happy-path fixture.

  1. Pick the benchmark closest to the behavior you changed.
  2. Record before/after scores and timing.
  3. Keep hard fixtures in the benchmark suite when they guard real regressions.
Start with
Tests / proof

I want to use Skylos as a library

Start with the public API facade before reaching into private helpers.

  1. Import from skylos.api first; treat underscore modules as implementation details.
  2. Check payload shape helpers before creating a new response format.
  3. Preserve public facade behavior even when private helpers move.
Start with
Tests / proof

Safe Path

This is the quick judgment layer: where a new contributor can start, where to slow down, and what proof usually matters.

Safer first touches

  • Focused command modules under skylos/commands/
  • Rule fixtures and narrow regression tests
  • Reporting copy or output formatting
  • Benchmark fixture additions

Slow down here

  • skylos/cli.py because it still dispatches many workflows
  • skylos/analyzer.py because it owns core scanner semantics
  • skylos/config.py because config precedence can become a security boundary
  • skylos/llm/finding_evidence.py because filters can create false negatives

Proof expected

  • False-positive fixes need a negative and positive fixture
  • Security changes need a bypass or attacker-controlled input test
  • LLM grounding changes need before/after benchmark evidence
  • Public API changes need facade compatibility tests

Architecture

Use this when a change crosses ownership boundaries. It shows dependency direction and the guardrail for each layer.

Interfaces

Where users, CI, agents, and library consumers enter Skylos.

Depends on

Policy, discovery, analysis, reporting

Guardrail

Keep interface code thin; move command-specific logic into focused modules.

Policy And Trust

Configuration, synced cloud policy, security contracts, and gate decisions.

Depends on

Interfaces and analyzer output

Guardrail

Treat merge precedence and attacker-controlled repo config as security-sensitive.

Static Analysis Core

Owns liveness, rules, framework handling, config posture checks, quality checks, and dangerous-flow detection.

Depends on

Discovery, config, language engines

Guardrail

Every semantic change needs a small fixture and a regression test.

Evidence And AI Review

Grounds LLM/agent findings against source code and scanner evidence.

Depends on

Static analysis output and provider adapters

Guardrail

Filters must prove safety; weak refutation creates scanner false negatives.

Output And Feedback

Turns findings into terminal output, reports, uploads, annotations, and review comments.

Depends on

Analyzer results and policy decisions

Guardrail

Output changes should preserve machine-readable compatibility.

Proof Harness

Keeps behavior honest with tests, benchmarks, parity checks, and generated artifacts.

Depends on

All product layers

Guardrail

Benchmark updates should explain score, timing, and regression intent.

Docstring Standard

Use these fields for key functions, not every helper. The goal is to preserve editing judgment, trust boundaries, and proof expectations.

Intent

Why this function exists, in product terms. Prefer the user-visible or scanner-integrity reason over a paraphrase of the function name.

Trust Boundary

State whether inputs can come from a scanned repo, CI, cloud policy, LLM output, or local filesystem. This is mandatory for security-sensitive helpers.

Invariants

List conditions the function must preserve, such as policy precedence, no symlink writes, no HTML injection, or no LLM-only refutation.

Failure Mode

Say what happens when parsing, IO, provider calls, or analysis fails. Future maintainers need to know whether fail-open is intentional.

Evidence Contract

For scanners, explain what proof is enough to emit or suppress a finding. This reduces false positives and false negatives.

Performance Shape

Call out whole-repo walks, AST parsing, subprocesses, network calls, caching, or expected input size.

Extension Point

Name the safe place to add new rules, providers, languages, output formats, or framework conventions.

Validation

Point to the exact test family, benchmark, or parity check that should fail if the function regresses.

Scan Flow

Input

CLI args, changed files, config

Discovery

Select source files and language paths

Analysis

Static detectors, rules, liveness, evidence

Review

LLM/agent review and evidence grounding where enabled

Output

Pretty output, SARIF, cloud upload, CI review

Folders

benchmarks

files 239 symbols 410

Benchmark data and generated comparison artifacts.

Touch when: Use this when storing benchmark fixtures or outputs that explain scanner quality.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

scripts

files 21 symbols 137

Repository maintenance, benchmark, parity, and regression scripts.

Touch when: Use this for repeatable evidence and local automation that should not live in runtime package code.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos

files 7 symbols 306

Root entrypoints and shared scan orchestration.

Touch when: Start here when CLI behavior, scan flow, or global configuration changes.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/adapters

files 3 symbols 3

Provider adapters that let Skylos talk to model runtimes without coupling core logic to one vendor.

Touch when: Change this when adding or hardening an LLM provider boundary.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/agents

files 19 symbols 293

Agent-facing payloads, service helpers, and review triage learning.

Touch when: Use this area for agent review workflows and normalized agent result handling.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/analysis

files 17 symbols 150

Reusable static-analysis primitives: architecture, reachability, control-flow, penalties, and implicit references.

Touch when: Change this when multiple scanners need the same code-understanding primitive.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/api

files 7 symbols 153

Public API facade and private helpers for payloads, snippets, findings, URLs, and AI-detection metadata.

Touch when: Keep compatibility in mind here; external users may import from skylos.api.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/audit

files 24 symbols 302

Deep-audit candidate selection, processing, redaction, export, and revalidation.

Touch when: Use this for audit packets, changed-file audits, and post-scan review artifacts.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/benchmarks

files 16 symbols 269

Benchmark fixtures and scoring code for security, quality, dead-code, and agent-review comparisons.

Touch when: Change this when proving scanner quality changed, not just when code still passes tests.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/cicd

files 5 symbols 96

CI workflow generation, annotations, review comments, evidence, and risk passport output.

Touch when: Use this when changing GitHub/GitLab integration behavior or CI gate messaging.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/cli_core

files 3 symbols 6

Smaller CLI parser and dispatch pieces peeled away from the main CLI module.

Touch when: Prefer this for new command wiring when it fits the newer CLI split.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/cloud

files 8 symbols 106

Skylos Cloud login, credentials, policy sync, project context, and upload manifest support.

Touch when: Treat this as security-sensitive because local repo state and cloud policy meet here.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/commands

files 31 symbols 238

Command modules used by the CLI for focused command behavior.

Touch when: Put command-specific behavior here instead of growing skylos/cli.py.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/contracts

files 5 symbols 71

Generated facts are available; this folder still needs a curated summary.

Touch when: Use the module list and tests to decide whether this is the right ownership area.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/core

files 35 symbols 592

Small shared core types and helpers used across scan paths.

Touch when: Use this only for concepts that are truly shared across the product.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/deadcode

files 11 symbols 179

Dead-code specific analysis, framework liveness, and evidence support.

Touch when: Change this for dead-code false positives, framework awareness, and reachability fixes.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/debt

files 8 symbols 104

Technical-debt detection and reporting helpers.

Touch when: Use this for code-health signals that are not direct security findings.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/defend

files 24 symbols 68

Defensive scanning plugins and checks for suspicious package or code patterns.

Touch when: Use this for supply-chain or malicious-code detection extensions.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/discover

files 7 symbols 45

Source discovery and language/workspace detection.

Touch when: Change this when Skylos misses files or scans too much.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/engines

files 3 symbols 8

Language-specific engines and parsers beyond the Python AST path.

Touch when: Use this when adding or fixing non-Python language analysis.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/integrations

files 4 symbols 102

External-service integration helpers.

Touch when: Keep external contracts small and well-tested here.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/llm

files 67 symbols 672

LLM security analysis, evidence grounding, provider runtime resolution, and prompt templates.

Touch when: Treat this as high-risk: changes can reduce hallucinations or create scanner false negatives.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/remediation

files 5 symbols 56

Autofix and cleanup support for selected findings.

Touch when: Use this only when a finding has a safe, narrow, testable edit path.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/reporting

files 11 symbols 109

Output formatters and exports such as SARIF, compact JSON, and human-readable reports.

Touch when: Use this when scan results are right but the output is wrong or hard to consume.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/rules

files 107 symbols 1450

Rule catalog and concrete rule implementations for quality, security, AI-defect, config, edge, CI/CD, and SCA findings.

Touch when: Start here when adding rule IDs, tuning scanner semantics, config posture checks, or changing rule docs parity.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/security

files 11 symbols 100

Security contract detection, secret handling, and security-specific analysis helpers.

Touch when: Treat this as gate-sensitive; regressions here can hide vulnerabilities.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/ui

files 8 symbols 82

Terminal UI and presentation helpers.

Touch when: Use this when the scan is correct but terminal interaction is confusing.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

skylos/visitors

files 45 symbols 549

AST/tree visitors that collect findings and semantic evidence.

Touch when: Use this when a language-specific scan is missing or over-reporting code patterns.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

test

files 264 symbols 4387

Unit and regression tests covering CLI, analyzer, rules, integrations, and benchmarks.

Touch when: Add narrow tests here before trusting analyzer or policy changes.

Entrypoints, tests, and key symbols
Entrypoints
Nearby tests

Hot Zones

These files are not bad by default. They are places where a small change can affect many workflows.

FilePublic / all symbolsSignalWhat it seems to own
skylos/cli.py 34 / 165 many symbols shared path Root entrypoints and shared scan orchestration.
skylos/analyzer.py 3 / 54 many symbols shared path Root entrypoints and shared scan orchestration.
skylos/config.py 11 / 39 shared path Root entrypoints and shared scan orchestration.
skylos/pipeline.py 2 / 12 shared path Root entrypoints and shared scan orchestration.
skylos/rules/secrets.py 4 / 155 many symbols Rule catalog and concrete rule implementations for quality, security, AI-defect, config, edge, CI/CD, and SCA findings.
test/test_typescript_security_proof.py 129 / 135 many symbols Unit and regression tests covering CLI, analyzer, rules, integrations, and benchmarks.
skylos/rules/ai_defect/manifest_dependency_hallucination.py 2 / 114 many symbols Rule catalog and concrete rule implementations for quality, security, AI-defect, config, edge, CI/CD, and SCA findings.
test/test_secrets.py 104 / 106 many symbols Unit and regression tests covering CLI, analyzer, rules, integrations, and benchmarks.
skylos/visitors/languages/typescript/security_proofs.py 3 / 104 many symbols AST/tree visitors that collect findings and semantic evidence.
skylos/rules/config/deployment/exposure.py 1 / 99 many symbols Rule catalog and concrete rule implementations for quality, security, AI-defect, config, edge, CI/CD, and SCA findings.
skylos/api/__init__.py 15 / 96 many symbols Public API facade and private helpers for payloads, snippets, findings, URLs, and AI-detection metadata.
test/test_java_security.py 88 / 93 many symbols Unit and regression tests covering CLI, analyzer, rules, integrations, and benchmarks.
skylos/integrations/shadow.py 4 / 86 many symbols External-service integration helpers.
test/test_deployment_exposure.py 79 / 86 many symbols Unit and regression tests covering CLI, analyzer, rules, integrations, and benchmarks.

Symbol Index

Search is the intended interface here. The page keeps private helper symbols mostly hidden except in shared core files.

SymbolKindSurfaceFile
fetch_profile async def public benchmarks/agent_review/fixtures/async_blocking_handler/app.py
fetch_health async def public benchmarks/agent_review/fixtures/async_blocking_handler/app.py
handle_search def public benchmarks/agent_review/fixtures/cross_file_sql_injection/app.py
handle_homepage def public benchmarks/agent_review/fixtures/cross_file_sql_injection/app.py
query_all def public benchmarks/agent_review/fixtures/cross_file_sql_injection/db.py
search_users def public benchmarks/agent_review/fixtures/cross_file_sql_injection/repository.py
list_recent_users def public benchmarks/agent_review/fixtures/cross_file_sql_injection/repository.py
test_recent_users_query_shape def public benchmarks/agent_review/fixtures/cross_file_sql_injection/tests/test_repository.py
handle_dashboard def public benchmarks/agent_review/fixtures/debt_hotspot_service/app.py
reconcile_account def public benchmarks/agent_review/fixtures/debt_hotspot_service/ledger.py
summarize_account def public benchmarks/agent_review/fixtures/debt_hotspot_service/ledger.py
test_dashboard_happy_path def public benchmarks/agent_review/fixtures/debt_hotspot_service/tests/test_dashboard.py
process_nightly_account def public benchmarks/agent_review/fixtures/debt_hotspot_service/worker.py
route_request def public benchmarks/agent_review/fixtures/duplicate_condition/module.py
route_request_ok def public benchmarks/agent_review/fixtures/duplicate_condition/module.py
dispatch_http def public benchmarks/agent_review/fixtures/extreme_grounding_framework/api.py
main def public benchmarks/agent_review/fixtures/extreme_grounding_framework/app.py
preview def public benchmarks/agent_review/fixtures/extreme_grounding_framework/app.py
dispatch_job def public benchmarks/agent_review/fixtures/extreme_grounding_framework/cli.py
load_account def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/account.py
archive_account def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/account.py
dormant_report def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/account.py
query_all def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/db.py
execute def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/db.py
normalize_sort def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/formatters.py
normalize_host def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/formatters.py
run_dynamic_hook def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/hooks.py
run_registered_hook def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/hooks.py
run_mutable_runner def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/hooks.py
run_sample def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/hooks.py
fetch_partner def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/network.py
fetch_internal_status def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/network.py
lab_fetch def public benchmarks/agent_review/fixtures/extreme_grounding_framework/services/network.py
test_http_search_reaches_repository def public benchmarks/agent_review/fixtures/extreme_grounding_framework/tests/test_flow.py
test_registered_hook_is_list_based def public benchmarks/agent_review/fixtures/extreme_grounding_framework/tests/test_flow.py
dangerous_admin def public benchmarks/agent_review/fixtures/extreme_grounding_framework/tools/admin.py
format_admin_status def public benchmarks/agent_review/fixtures/extreme_grounding_framework/tools/admin.py
Request class public benchmarks/agent_review/fixtures/extreme_grounding_framework/web/framework.py
App class public benchmarks/agent_review/fixtures/extreme_grounding_framework/web/framework.py
admin_query_route def public benchmarks/agent_review/fixtures/extreme_grounding_framework/web/routes.py
health_route def public benchmarks/agent_review/fixtures/extreme_grounding_framework/web/routes.py
mirror_url async def public benchmarks/agent_review/fixtures/fastapi_query_ssrf/app.py
fetch_status async def public benchmarks/agent_review/fixtures/fastapi_query_ssrf/app.py
extract_bundle def public benchmarks/agent_review/fixtures/flask_archive_extraction/app.py
extract_bundle_safe def public benchmarks/agent_review/fixtures/flask_archive_extraction/app.py
run_tool def public benchmarks/agent_review/fixtures/flask_getter_shell/app.py
run_safe def public benchmarks/agent_review/fixtures/flask_getter_shell/app.py
user def public benchmarks/agent_review/fixtures/flask_handler_security/app.py
ls def public benchmarks/agent_review/fixtures/flask_handler_security/app.py
safe def public benchmarks/agent_review/fixtures/flask_handler_security/app.py
bounce def public benchmarks/agent_review/fixtures/flask_open_redirect/app.py
bounce_safe def public benchmarks/agent_review/fixtures/flask_open_redirect/app.py
download_file def public benchmarks/agent_review/fixtures/flask_path_traversal/app.py
read_help def public benchmarks/agent_review/fixtures/flask_path_traversal/app.py
restore_session def public benchmarks/agent_review/fixtures/flask_pickle_deserialization/app.py
restore_session_safe def public benchmarks/agent_review/fixtures/flask_pickle_deserialization/app.py
profile def public benchmarks/agent_review/fixtures/flask_reflected_xss/app.py
safe_profile def public benchmarks/agent_review/fixtures/flask_reflected_xss/app.py
fetch_avatar def public benchmarks/agent_review/fixtures/flask_ssrf/app.py
fetch_health def public benchmarks/agent_review/fixtures/flask_ssrf/app.py
upload_file def public benchmarks/agent_review/fixtures/flask_upload_traversal/app.py
upload_safe def public benchmarks/agent_review/fixtures/flask_upload_traversal/app.py
decode_session def public benchmarks/agent_review/fixtures/jwt_insecure_decode/auth.py
decode_signed_session def public benchmarks/agent_review/fixtures/jwt_insecure_decode/auth.py
fetch_user async def public benchmarks/agent_review/fixtures/missing_await/module.py
load_dashboard async def public benchmarks/agent_review/fixtures/missing_await/module.py
load_dashboard_ok async def public benchmarks/agent_review/fixtures/missing_await/module.py
append_tag def public benchmarks/agent_review/fixtures/mutable_default_state/module.py
build_headers def public benchmarks/agent_review/fixtures/mutable_default_state/module.py
handle_status def public benchmarks/agent_review/fixtures/repo_clean_service/app.py
normalize_headers def public benchmarks/agent_review/fixtures/repo_clean_service/formatter.py
fetch_status def public benchmarks/agent_review/fixtures/repo_clean_service/service.py
list_checks def public benchmarks/agent_review/fixtures/repo_clean_service/service.py
test_status_handler def public benchmarks/agent_review/fixtures/repo_clean_service/tests/test_app.py
load_first_line def public benchmarks/agent_review/fixtures/resource_leak/module.py
safe_preview def public benchmarks/agent_review/fixtures/resource_leak/module.py
sync_repository def public benchmarks/agent_review/fixtures/shell_hook_runner/cli.py
execute_custom_hook def public benchmarks/agent_review/fixtures/shell_hook_runner/cli.py
run_named_hook def public benchmarks/agent_review/fixtures/shell_hook_runner/hooks.py
run_builtin def public benchmarks/agent_review/fixtures/shell_hook_runner/hooks.py
test_builtin_hook_is_list_based def public benchmarks/agent_review/fixtures/shell_hook_runner/tests/test_builtin.py
main def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/app.py
dispatch_event def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/dispatcher.py
ship_audit def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/audit.py
sample_shell def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/audit.py
query_all def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/db.py
fetch_url def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/network.py
fetch_fixed_status def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/network.py
lab_fetch def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/network.py
charge_card def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/payments.py
archived_invoice def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/payments.py
debug_query def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/payments.py
run_safe_builtin def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/tools.py
run_mutable_registered def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/plugins/tools.py
test_pay_handler_dispatches_by_registry_string def public benchmarks/agent_review/fixtures/static_blind_plugin_dispatch/tests/test_dispatcher.py
fetch_status async def public benchmarks/agent_review/fixtures/tricky_clean/module.py
normalize_headers def public benchmarks/agent_review/fixtures/tricky_clean/module.py
build_user_request def public benchmarks/ai_code_defects/fixtures/api_keyword_hallucination/app.py
build_audit_request def public benchmarks/ai_code_defects/fixtures/api_keyword_hallucination/app.py
sync_remote_profile def public benchmarks/ai_code_defects/fixtures/api_signature_hallucination/app.py
stream_remote_profile def public benchmarks/ai_code_defects/fixtures/api_signature_hallucination/app.py
Result class public benchmarks/ai_code_defects/fixtures/assertion_weakening/tests/test_payments.py
calculate_payment def public benchmarks/ai_code_defects/fixtures/assertion_weakening/tests/test_payments.py
test_calculate_payment_marks_paid def public benchmarks/ai_code_defects/fixtures/assertion_weakening/tests/test_payments.py
refresh_cache async def public benchmarks/ai_code_defects/fixtures/async_swallowed_error/app.py
response_role def public benchmarks/ai_code_defects/fixtures/bad_test_expected_broadening/tests/test_auth.py
test_admin_role_is_exact def public benchmarks/ai_code_defects/fixtures/bad_test_expected_broadening/tests/test_auth.py
build_user_request def public benchmarks/ai_code_defects/fixtures/clean_api_signature/app.py
build_audit_request def public benchmarks/ai_code_defects/fixtures/clean_api_signature/app.py
refresh_cache async def public benchmarks/ai_code_defects/fixtures/clean_async_error_handling/app.py
require_admin def public benchmarks/ai_code_defects/fixtures/clean_auth_route/app.py
create_user def public benchmarks/ai_code_defects/fixtures/clean_auth_route/app.py
build_dynamic_request def public benchmarks/ai_code_defects/fixtures/clean_dynamic_api_surface/app.py
build_known_member_request def public benchmarks/ai_code_defects/fixtures/clean_dynamic_api_surface/app.py
validate_token def public benchmarks/ai_code_defects/fixtures/clean_generated_code/app.py
process_payment def public benchmarks/ai_code_defects/fixtures/clean_generated_code/app.py
handler def public benchmarks/ai_code_defects/fixtures/clean_generated_code/app.py
search_users def public benchmarks/ai_code_defects/fixtures/clean_repo_level_security/app.py
restore_session def public benchmarks/ai_code_defects/fixtures/clean_repo_level_security/app.py
response_role def public benchmarks/ai_code_defects/fixtures/clean_test_expected_change/tests/test_auth.py
test_admin_role_is_exact def public benchmarks/ai_code_defects/fixtures/clean_test_expected_change/tests/test_auth.py
sync_profile def public benchmarks/ai_code_defects/fixtures/compound_ai_failure_edit/app.py
complete_later def public benchmarks/ai_code_defects/fixtures/compound_ai_failure_edit/app.py
handler def public benchmarks/ai_code_defects/fixtures/contract_phantom_helper/app.py
tenant_admin_required def public benchmarks/ai_code_defects/fixtures/contract_route_guard_clean/apps/api/routes.py
admin_dashboard def public benchmarks/ai_code_defects/fixtures/contract_route_guard_clean/apps/api/routes.py
admin_dashboard def public benchmarks/ai_code_defects/fixtures/contract_route_guard_missing/apps/api/routes.py
fetch_profile def public benchmarks/ai_code_defects/fixtures/disabled_security_control/app.py
sync_worker def public benchmarks/ai_code_defects/fixtures/file_scoped_multi_module/app/background.py
route_handler def public benchmarks/ai_code_defects/fixtures/file_scoped_multi_module/app/routes.py
handler def public benchmarks/ai_code_defects/fixtures/hallucinated_reference/app.py
process_payment def public benchmarks/ai_code_defects/fixtures/incomplete_generation/app.py
create_user def public benchmarks/ai_code_defects/fixtures/missing_auth_route/app.py
handler def public benchmarks/ai_code_defects/fixtures/multiple_phantom_references/app.py
existing_helper def public benchmarks/ai_code_defects/fixtures/range_scoped_mixed_edit/app.py
handle_login def public benchmarks/ai_code_defects/fixtures/range_scoped_mixed_edit/app.py
handle_profile def public benchmarks/ai_code_defects/fixtures/range_scoped_mixed_edit/app.py
future_handler def public benchmarks/ai_code_defects/fixtures/range_scoped_mixed_edit/app.py
search_users def public benchmarks/ai_code_defects/fixtures/repo_level_security_regression/app.py
restore_session def public benchmarks/ai_code_defects/fixtures/repo_level_security_regression/app.py
authenticate def public benchmarks/ai_code_defects/fixtures/repo_local_phantom_reference/app/security.py
audit_access def public benchmarks/ai_code_defects/fixtures/repo_local_phantom_reference/app/security.py
handler def public benchmarks/ai_code_defects/fixtures/repo_local_phantom_reference/app/views.py
BillingWorkflow class public benchmarks/ai_code_defects/fixtures/unfinished_generated_class/app.py
send_receipt def public benchmarks/ai_code_defects/fixtures/unfinished_generated_class/app.py
upgrade def public benchmarks/dead_code/fixtures/alembic_migration/versions/20260425_add_orders.py
downgrade def public benchmarks/dead_code/fixtures/alembic_migration/versions/20260425_add_orders.py
unused_migration_helper def public benchmarks/dead_code/fixtures/alembic_migration/versions/20260425_add_orders.py
UnusedMigrationState class public benchmarks/dead_code/fixtures/alembic_migration/versions/20260425_add_orders.py
build_path def public benchmarks/dead_code/fixtures/annotation_metadata_scope/app.py
unused_builder def public benchmarks/dead_code/fixtures/annotation_metadata_scope/app.py
UsedWorker class public benchmarks/dead_code/fixtures/basic_unused_symbols/app.py
UnusedWorker class public benchmarks/dead_code/fixtures/basic_unused_symbols/app.py
used_helper def public benchmarks/dead_code/fixtures/basic_unused_symbols/app.py
unused_helper def public benchmarks/dead_code/fixtures/basic_unused_symbols/app.py
send_receipt def public benchmarks/dead_code/fixtures/celery_tasks/app.py
rebuild_rollups def public benchmarks/dead_code/fixtures/celery_tasks/app.py
unused_task_helper def public benchmarks/dead_code/fixtures/celery_tasks/app.py
UnusedTaskPayload class public benchmarks/dead_code/fixtures/celery_tasks/app.py
Command class public benchmarks/dead_code/fixtures/django_management_command/shop/management/commands/rebuild_index.py
rebuild_index def public benchmarks/dead_code/fixtures/django_management_command/shop/management/commands/rebuild_index.py
unused_export_job def public benchmarks/dead_code/fixtures/django_management_command/shop/management/commands/rebuild_index.py
UnusedCommandHelper class public benchmarks/dead_code/fixtures/django_management_command/shop/management/commands/rebuild_index.py
register def public benchmarks/dead_code/fixtures/dynamic_registry_used/app.py
handle_create def public benchmarks/dead_code/fixtures/dynamic_registry_used/app.py
handle_update def public benchmarks/dead_code/fixtures/dynamic_registry_used/app.py
dispatch def public benchmarks/dead_code/fixtures/dynamic_registry_used/app.py
unused_handler def public benchmarks/dead_code/fixtures/dynamic_registry_used/app.py
unused_helper def public benchmarks/dead_code/fixtures/explicit_reexports/app.py
dispatch_http def public benchmarks/dead_code/fixtures/extreme_grounding_framework/api.py
main def public benchmarks/dead_code/fixtures/extreme_grounding_framework/app.py
preview def public benchmarks/dead_code/fixtures/extreme_grounding_framework/app.py
dispatch_job def public benchmarks/dead_code/fixtures/extreme_grounding_framework/cli.py
load_account def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/account.py
archive_account def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/account.py
dormant_report def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/account.py
query_all def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/db.py
execute def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/db.py
normalize_sort def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/formatters.py
normalize_host def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/formatters.py
run_dynamic_hook def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/hooks.py
run_registered_hook def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/hooks.py
run_mutable_runner def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/hooks.py
run_sample def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/hooks.py
fetch_partner def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/network.py
fetch_internal_status def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/network.py
lab_fetch def public benchmarks/dead_code/fixtures/extreme_grounding_framework/services/network.py
test_http_search_reaches_repository def public benchmarks/dead_code/fixtures/extreme_grounding_framework/tests/test_flow.py
test_registered_hook_is_list_based def public benchmarks/dead_code/fixtures/extreme_grounding_framework/tests/test_flow.py
dangerous_admin def public benchmarks/dead_code/fixtures/extreme_grounding_framework/tools/admin.py
format_admin_status def public benchmarks/dead_code/fixtures/extreme_grounding_framework/tools/admin.py
Request class public benchmarks/dead_code/fixtures/extreme_grounding_framework/web/framework.py
App class public benchmarks/dead_code/fixtures/extreme_grounding_framework/web/framework.py
admin_query_route def public benchmarks/dead_code/fixtures/extreme_grounding_framework/web/routes.py
health_route def public benchmarks/dead_code/fixtures/extreme_grounding_framework/web/routes.py
get_current_user def public benchmarks/dead_code/fixtures/fastapi_route_used/app.py
read_profile def public benchmarks/dead_code/fixtures/fastapi_route_used/app.py
unused_helper def public benchmarks/dead_code/fixtures/fastapi_route_used/app.py
show_order def public benchmarks/dead_code/fixtures/flask_cli_blueprint/app.py
reindex_orders def public benchmarks/dead_code/fixtures/flask_cli_blueprint/app.py
unused_view_helper def public benchmarks/dead_code/fixtures/flask_cli_blueprint/app.py
UnusedFormatter class public benchmarks/dead_code/fixtures/flask_cli_blueprint/app.py
load_plugin def public benchmarks/dead_code/fixtures/importlib_plugins/app.py
run_notification def public benchmarks/dead_code/fixtures/importlib_plugins/app.py
unused_loader def public benchmarks/dead_code/fixtures/importlib_plugins/app.py
send_email def public benchmarks/dead_code/fixtures/importlib_plugins/plugins/email.py
unused_plugin_hook def public benchmarks/dead_code/fixtures/importlib_plugins/plugins/email.py
UnusedPlugin class public benchmarks/dead_code/fixtures/importlib_plugins/plugins/email.py
action def public benchmarks/dead_code/fixtures/local_registration_decorator/app.py
on_startup def public benchmarks/dead_code/fixtures/local_registration_decorator/app.py
resize_image def public benchmarks/dead_code/fixtures/local_registration_decorator/app.py
archive_image def public benchmarks/dead_code/fixtures/local_registration_decorator/app.py
warm_cache def public benchmarks/dead_code/fixtures/local_registration_decorator/app.py
dispatch def public benchmarks/dead_code/fixtures/local_registration_decorator/app.py
unused_action def public benchmarks/dead_code/fixtures/local_registration_decorator/app.py
main def public benchmarks/dead_code/fixtures/package_entrypoints/bench/cli.py
format_status def public benchmarks/dead_code/fixtures/package_entrypoints/bench/cli.py
run_checkout def public benchmarks/dead_code/fixtures/package_service_layers/app.py
InvoiceRepository class public benchmarks/dead_code/fixtures/package_service_layers/repository.py
UnusedStrategy class public benchmarks/dead_code/fixtures/package_service_layers/service.py
create_invoice def public benchmarks/dead_code/fixtures/package_service_layers/service.py
UserInput class public benchmarks/dead_code/fixtures/pydantic_validators/app.py
UnusedSchema class public benchmarks/dead_code/fixtures/pydantic_validators/app.py
build_user def public benchmarks/dead_code/fixtures/pydantic_validators/app.py
unused_normalizer def public benchmarks/dead_code/fixtures/pydantic_validators/app.py
api_client def public benchmarks/dead_code/fixtures/pytest_fixtures/tests/test_orders.py
payload_fixture def public benchmarks/dead_code/fixtures/pytest_fixtures/tests/test_orders.py
test_create_order def public benchmarks/dead_code/fixtures/pytest_fixtures/tests/test_orders.py
build_demo_note def public benchmarks/dead_code/fixtures/sqlalchemy_mixed_models/app.py
Base class public benchmarks/dead_code/fixtures/sqlalchemy_mixed_models/models.py
Note class public benchmarks/dead_code/fixtures/sqlalchemy_mixed_models/models.py
AuditLog class public benchmarks/dead_code/fixtures/sqlalchemy_mixed_models/models.py
Tag class public benchmarks/dead_code/fixtures/sqlalchemy_mixed_models/models.py
create_note def public benchmarks/dead_code/fixtures/sqlalchemy_mixed_models/repository.py
main def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/app.py
dispatch_event def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/dispatcher.py
ship_audit def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/audit.py
sample_shell def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/audit.py
query_all def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/db.py
fetch_url def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/network.py
fetch_fixed_status def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/network.py
lab_fetch def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/network.py
charge_card def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/payments.py
archived_invoice def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/payments.py
debug_query def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/payments.py
run_safe_builtin def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/tools.py
run_mutable_registered def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/plugins/tools.py
test_pay_handler_dispatches_by_registry_string def public benchmarks/dead_code/fixtures/static_blind_plugin_dispatch/tests/test_dispatcher.py
refund_endpoint def public benchmarks/deep_audit_logic/fixtures/cross_tenant_refund/safe/api.py
can_refund def public benchmarks/deep_audit_logic/fixtures/cross_tenant_refund/safe/archive/policy.py
can_refund def public benchmarks/deep_audit_logic/fixtures/cross_tenant_refund/safe/refunds/policy.py
refund_order def public benchmarks/deep_audit_logic/fixtures/cross_tenant_refund/safe/refunds/service.py
refund_endpoint def public benchmarks/deep_audit_logic/fixtures/cross_tenant_refund/vulnerable/api.py
can_refund def public benchmarks/deep_audit_logic/fixtures/cross_tenant_refund/vulnerable/archive/policy.py
can_refund def public benchmarks/deep_audit_logic/fixtures/cross_tenant_refund/vulnerable/refunds/policy.py
refund_order def public benchmarks/deep_audit_logic/fixtures/cross_tenant_refund/vulnerable/refunds/service.py
process_payment_event def public benchmarks/deep_audit_logic/fixtures/idempotency/claim_first/archive/service.py
payment_webhook def public benchmarks/deep_audit_logic/fixtures/idempotency/claim_first/payment_webhook.py
capture def public benchmarks/deep_audit_logic/fixtures/idempotency/claim_first/payments/gateway.py
EventReceipt class public benchmarks/deep_audit_logic/fixtures/idempotency/claim_first/payments/models.py
ProviderCapture class public benchmarks/deep_audit_logic/fixtures/idempotency/claim_first/payments/models.py
process_payment_event def public benchmarks/deep_audit_logic/fixtures/idempotency/claim_first/payments/service.py
verify_event def public benchmarks/deep_audit_logic/fixtures/idempotency/claim_first/payments/signatures.py
claim_once def public benchmarks/deep_audit_logic/fixtures/idempotency/claim_first/payments/store.py
process_payment_event def public benchmarks/deep_audit_logic/fixtures/idempotency/lookalike/archive/service.py
payment_webhook def public benchmarks/deep_audit_logic/fixtures/idempotency/lookalike/payment_webhook.py
capture_once def public benchmarks/deep_audit_logic/fixtures/idempotency/lookalike/payments/gateway.py
EventReceipt class public benchmarks/deep_audit_logic/fixtures/idempotency/lookalike/payments/models.py
ProviderCapture class public benchmarks/deep_audit_logic/fixtures/idempotency/lookalike/payments/models.py
process_payment_event def public benchmarks/deep_audit_logic/fixtures/idempotency/lookalike/payments/service.py
verify_event def public benchmarks/deep_audit_logic/fixtures/idempotency/lookalike/payments/signatures.py
ensure_pending def public benchmarks/deep_audit_logic/fixtures/idempotency/lookalike/payments/store.py
mark_completed def public benchmarks/deep_audit_logic/fixtures/idempotency/lookalike/payments/store.py
process_payment_event def public benchmarks/deep_audit_logic/fixtures/idempotency/vulnerable/archive/service.py
payment_webhook def public benchmarks/deep_audit_logic/fixtures/idempotency/vulnerable/payment_webhook.py
capture def public benchmarks/deep_audit_logic/fixtures/idempotency/vulnerable/payments/gateway.py
EventReceipt class public benchmarks/deep_audit_logic/fixtures/idempotency/vulnerable/payments/models.py
ProviderCapture class public benchmarks/deep_audit_logic/fixtures/idempotency/vulnerable/payments/models.py
process_payment_event def public benchmarks/deep_audit_logic/fixtures/idempotency/vulnerable/payments/service.py
verify_event def public benchmarks/deep_audit_logic/fixtures/idempotency/vulnerable/payments/signatures.py
event_seen def public benchmarks/deep_audit_logic/fixtures/idempotency/vulnerable/payments/store.py
mark_event_seen def public benchmarks/deep_audit_logic/fixtures/idempotency/vulnerable/payments/store.py
update_account def public benchmarks/deep_audit_logic/fixtures/middleware_order/safe/app.py
dispatch def public benchmarks/deep_audit_logic/fixtures/middleware_order/safe/legacy/pipeline.py
require_user def public benchmarks/deep_audit_logic/fixtures/middleware_order/safe/middleware/auth.py
dispatch def public benchmarks/deep_audit_logic/fixtures/middleware_order/safe/middleware/pipeline.py
Account class public benchmarks/deep_audit_logic/fixtures/middleware_order/safe/models.py
RequestUser class public benchmarks/deep_audit_logic/fixtures/middleware_order/safe/models.py
Request class public benchmarks/deep_audit_logic/fixtures/middleware_order/safe/models.py
update_account def public benchmarks/deep_audit_logic/fixtures/middleware_order/vulnerable/app.py
dispatch def public benchmarks/deep_audit_logic/fixtures/middleware_order/vulnerable/legacy/pipeline.py
require_user def public benchmarks/deep_audit_logic/fixtures/middleware_order/vulnerable/middleware/auth.py
dispatch def public benchmarks/deep_audit_logic/fixtures/middleware_order/vulnerable/middleware/pipeline.py
Account class public benchmarks/deep_audit_logic/fixtures/middleware_order/vulnerable/models.py
RequestUser class public benchmarks/deep_audit_logic/fixtures/middleware_order/vulnerable/models.py
Request class public benchmarks/deep_audit_logic/fixtures/middleware_order/vulnerable/models.py
invoice_endpoint def public benchmarks/deep_audit_logic/fixtures/tenant_cache/safe/api.py
get_invoice def public benchmarks/deep_audit_logic/fixtures/tenant_cache/safe/archive/cache.py
get_or_set def public benchmarks/deep_audit_logic/fixtures/tenant_cache/safe/invoices/backend.py
get_invoice def public benchmarks/deep_audit_logic/fixtures/tenant_cache/safe/invoices/cache.py
fetch_invoice def public benchmarks/deep_audit_logic/fixtures/tenant_cache/safe/invoices/database.py
Invoice class public benchmarks/deep_audit_logic/fixtures/tenant_cache/safe/invoices/models.py
load_invoice def public benchmarks/deep_audit_logic/fixtures/tenant_cache/safe/invoices/service.py
invoice_endpoint def public benchmarks/deep_audit_logic/fixtures/tenant_cache/vulnerable/api.py
get_invoice def public benchmarks/deep_audit_logic/fixtures/tenant_cache/vulnerable/archive/cache.py
get_or_set def public benchmarks/deep_audit_logic/fixtures/tenant_cache/vulnerable/invoices/backend.py
get_invoice def public benchmarks/deep_audit_logic/fixtures/tenant_cache/vulnerable/invoices/cache.py
fetch_invoice def public benchmarks/deep_audit_logic/fixtures/tenant_cache/vulnerable/invoices/database.py
Invoice class public benchmarks/deep_audit_logic/fixtures/tenant_cache/vulnerable/invoices/models.py
load_invoice def public benchmarks/deep_audit_logic/fixtures/tenant_cache/vulnerable/invoices/service.py
accept_event def public benchmarks/deep_audit_logic/fixtures/webhook_verification/lookalike/archive/service.py
Account class public benchmarks/deep_audit_logic/fixtures/webhook_verification/lookalike/processing/models.py
accept_event def public benchmarks/deep_audit_logic/fixtures/webhook_verification/lookalike/processing/service.py
verify_signature def public benchmarks/deep_audit_logic/fixtures/webhook_verification/lookalike/processing/signatures.py
apply_event def public benchmarks/deep_audit_logic/fixtures/webhook_verification/lookalike/processing/store.py
webhook def public benchmarks/deep_audit_logic/fixtures/webhook_verification/lookalike/webhook.py
accept_event def public benchmarks/deep_audit_logic/fixtures/webhook_verification/vulnerable/archive/service.py
Account class public benchmarks/deep_audit_logic/fixtures/webhook_verification/vulnerable/processing/models.py
accept_event def public benchmarks/deep_audit_logic/fixtures/webhook_verification/vulnerable/processing/service.py
verify_signature def public benchmarks/deep_audit_logic/fixtures/webhook_verification/vulnerable/processing/signatures.py
apply_event def public benchmarks/deep_audit_logic/fixtures/webhook_verification/vulnerable/processing/store.py
webhook def public benchmarks/deep_audit_logic/fixtures/webhook_verification/vulnerable/webhook.py
build_request def public benchmarks/quality/fixtures/argument_overload/service.py
helper def public benchmarks/quality/fixtures/argument_overload/service.py
normalize_name def public benchmarks/quality/fixtures/clean_module/module.py
join_parts def public benchmarks/quality/fixtures/clean_module/module.py
branchy_handler def public benchmarks/quality/fixtures/complexity_hotspot/app.py
simple_handler def public benchmarks/quality/fixtures/complexity_hotspot/app.py
parse_payload def public benchmarks/quality/fixtures/empty_error_handler/module.py
require_admin def public benchmarks/quality/fixtures/framework_route_policy/app.py
create_user def public benchmarks/quality/fixtures/framework_route_policy/app.py
list_users def public benchmarks/quality/fixtures/framework_route_policy/app.py
create_admin def public benchmarks/quality/fixtures/framework_route_policy/app.py
resolve_user def public benchmarks/quality/fixtures/inconsistent_return/module.py
render_report def public benchmarks/quality/fixtures/long_function/module.py
tiny_helper def public benchmarks/quality/fixtures/long_function/module.py
load_account_snapshot def public benchmarks/quality/fixtures/opaque_identifier/module.py
coordinate_area def public benchmarks/quality/fixtures/opaque_identifier/module.py
normalize def public benchmarks/quality/fixtures/opaque_identifier/module.py
configured_helper def public benchmarks/quality/fixtures/repo_policy_missing_typechecker/app.py
load_user def public benchmarks/quality/fixtures/type_annotation_gaps/module.py
typed_helper def public benchmarks/quality/fixtures/type_annotation_gaps/module.py
handle_secret def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
dynamic_dispatch def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
legacy_endpoint def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
get_db def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
find_user def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
dump_table def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
report def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
zip_folder def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
zip_folder2 def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
zip_folder3 def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
zip_folder4 def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
fetch def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
read_file def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
do_eval def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
do_yaml def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
do_hash def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
omg_quality def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
main def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
exported_but_never_called def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
getattr_trick_unused def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
string_annotation_unused def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
UnusedClassWithMethod class public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
custom_register def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
subscriber_worker def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
dark_logic def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
passed_around_worker def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
BasePlugin class public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
HiddenPlugin class public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
obfus_calc def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
name_collision_unused def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
trigger_blindspots def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
visit_Name def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
do_quit def public benchmarks/security/fixtures/intentional_vulnerable_flask_app/app.py
decode_token def public benchmarks/security/fixtures/jwt_verify_disabled/app.py
login def public benchmarks/security/fixtures/open_redirect_local_guard/app.py
login def public benchmarks/security/fixtures/open_redirect_tainted/app.py
read_upload def public benchmarks/security/fixtures/path_traversal_basename/app.py
read_upload def public benchmarks/security/fixtures/path_traversal_tainted_join/app.py
load_users def public benchmarks/security/fixtures/sql_constant_format/app.py
run_query def public benchmarks/security/fixtures/sql_tainted_param/app.py
fetch_user def public benchmarks/security/fixtures/ssrf_fixed_host_path/app.py
fetch_host def public benchmarks/security/fixtures/ssrf_tainted_host/app.py
list_files def public benchmarks/security/fixtures/subprocess_alias_shell/app.py
render_name def public benchmarks/security/fixtures/xss_escape_safe/app.py
render_name def public benchmarks/security/fixtures/xss_mark_safe/app.py
parse_config def public benchmarks/security/fixtures/yaml_safeloader_positional/app.py
build_headers def public benchmarks/verify_benchmark/fixtures/clean_requests_service/service.py
fetch_profile def public benchmarks/verify_benchmark/fixtures/clean_requests_service/service.py
create_session def public benchmarks/verify_benchmark/fixtures/clean_requests_service/service.py
calculate_total def public benchmarks/verify_benchmark/fixtures/compound_partial_agent_edit/billing/totals.py
apply_credit def public benchmarks/verify_benchmark/fixtures/compound_partial_agent_edit/billing/totals.py
create_invoice def public benchmarks/verify_benchmark/fixtures/compound_partial_agent_edit/billing/workflow.py
send_receipt def public benchmarks/verify_benchmark/fixtures/compound_partial_agent_edit/billing/workflow.py
create_admin_report def public benchmarks/verify_benchmark/fixtures/file_scoped_multi_module/src/api.py
rebuild_index def public benchmarks/verify_benchmark/fixtures/file_scoped_multi_module/src/jobs.py
summarize_ticket def public benchmarks/verify_benchmark/fixtures/openai_sdk_member_drift/summarizer.py
format_preview def public benchmarks/verify_benchmark/fixtures/range_selected_clean_region/view.py
submit_generated_payload def public benchmarks/verify_benchmark/fixtures/range_selected_clean_region/view.py
build_profile_update def public benchmarks/verify_benchmark/fixtures/requests_strict_keyword_drift/client.py
build_profile_delete def public benchmarks/verify_benchmark/fixtures/requests_strict_keyword_drift/client.py
load_user def public benchmarks/verify_benchmark/fixtures/stale_helper_after_auth_refactor/service/authz.py
enforce_mfa def public benchmarks/verify_benchmark/fixtures/stale_helper_after_auth_refactor/service/authz.py
issue_session def public benchmarks/verify_benchmark/fixtures/stale_helper_after_auth_refactor/service/authz.py
rotate_api_key def public benchmarks/verify_benchmark/fixtures/stale_helper_after_auth_refactor/service/handlers.py
main def public scripts/agent_behavior_benchmark.py
main def public scripts/agent_review_benchmark.py
main def public scripts/ai_code_defect_benchmark.py
build_fixture def public scripts/analyzer_speed_check.py
run_once def public scripts/analyzer_speed_check.py
run_speed_check def public scripts/analyzer_speed_check.py
main def public scripts/analyzer_speed_check.py
SymbolInfo class public scripts/build_repo_map.py
ModuleInfo class public scripts/build_repo_map.py
collect_repo_map def public scripts/build_repo_map.py
write_repo_map def public scripts/build_repo_map.py
main def public scripts/build_repo_map.py
main def public scripts/check_rule_docs_parity.py
main def public scripts/compare_codex_skylos_agent_review.py
main def public scripts/compare_codex_skylos_demo_deadcode.py
main def public scripts/compare_codex_skylos_quality.py
main def public scripts/corpus_ci.py
main def public scripts/dead_code_benchmark.py
main def public scripts/dead_code_compare_scanners.py
BenchmarkReportOutputError class public scripts/deep_audit_logic_benchmark.py
main def public scripts/deep_audit_logic_benchmark.py
main def public scripts/framework_corpus.py
main def public scripts/quality_benchmark.py
compare_corpus def public scripts/regression_delta.py
compare_agent_review def public scripts/regression_delta.py
compare_quality def public scripts/regression_delta.py
compare def public scripts/regression_delta.py
main def public scripts/regression_delta.py
render_mode_plan_templates def public scripts/repo_map_renderer.py
render_mode_selector def public scripts/repo_map_renderer.py
render_personas def public scripts/repo_map_renderer.py
render_workflows def public scripts/repo_map_renderer.py
render_first_steps def public scripts/repo_map_renderer.py
render_sharp_edges def public scripts/repo_map_renderer.py
render_architecture_layers def public scripts/repo_map_renderer.py
render_docstring_guide def public scripts/repo_map_renderer.py
render_flow def public scripts/repo_map_renderer.py
render_folder_cards def public scripts/repo_map_renderer.py
render_folder_card def public scripts/repo_map_renderer.py
render_hot_modules def public scripts/repo_map_renderer.py
render_symbol_index def public scripts/repo_map_renderer.py
render_glossary def public scripts/repo_map_renderer.py
render_html def public scripts/repo_map_renderer.py
render_snapshot def public scripts/repo_map_renderer.py
section def public scripts/repo_map_renderer.py
render_flow_section def public scripts/repo_map_renderer.py
render_folder_section def public scripts/repo_map_renderer.py
render_hot_section def public scripts/repo_map_renderer.py
render_symbol_section def public scripts/repo_map_renderer.py
main def public scripts/security_benchmark.py
main def public scripts/security_compare_scanners.py
main def public scripts/skylos_gate.py
analyze def public skylos/__init__.py
debug_test def public skylos/__init__.py
get_adapter def public skylos/adapters/__init__.py
BaseAdapter class public skylos/adapters/base.py
LiteLLMAdapter class public skylos/adapters/litellm_adapter.py
run_analyze def public skylos/agents/center.py
collect_debt_signals def public skylos/agents/center.py
discover_source_files def public skylos/agents/center.py
resolve_project_root def public skylos/agents/center.py
resolve_state_path def public skylos/agents/center.py
load_agent_state def public skylos/agents/center.py
save_agent_state def public skylos/agents/center.py
snapshot_file_signatures def public skylos/agents/center.py
detect_changed_files def public skylos/agents/center.py
normalize_triage_map def public skylos/agents/center.py
apply_triage_to_findings def public skylos/agents/center.py
compose_agent_state def public skylos/agents/center.py
rebuild_agent_state_from_existing def public skylos/agents/center.py
update_action_triage def public skylos/agents/center.py
clear_action_triage def public skylos/agents/center.py
refresh_agent_state def public skylos/agents/center.py
watch_project def public skylos/agents/center.py
normalize_findings def public skylos/agents/center.py
build_ranked_actions def public skylos/agents/center.py
build_summary def public skylos/agents/center.py
build_headline def public skylos/agents/center.py
render_status_table def public skylos/agents/center.py
command_center_payload def public skylos/agents/center.py
debt_hotspot_severity def public skylos/agents/center.py
debt_hotspot_message def public skylos/agents/center.py
dead_code_rule_id def public skylos/agents/center.py
finding_fingerprint def public skylos/agents/center.py
relative_path def public skylos/agents/center.py
resolve_file_path def public skylos/agents/center.py
normalize_severity def public skylos/agents/center.py
severity_score def public skylos/agents/center.py
build_action_title def public skylos/agents/center.py
build_action_subtitle def public skylos/agents/center.py
build_action_reason def public skylos/agents/center.py
infer_action_type def public skylos/agents/center.py
infer_safe_fix def public skylos/agents/center.py
parse_utc_timestamp def public skylos/agents/center.py
utc_now def public skylos/agents/center.py
checked def public skylos/agents/evaluation/_assertion_helpers.py
incomplete def public skylos/agents/evaluation/_assertion_helpers.py
resolve_project_file def public skylos/agents/evaluation/_loader_support.py
resolved_root def public skylos/agents/evaluation/_loader_support.py
validate_loaded_shape def public skylos/agents/evaluation/_loader_support.py
load_unique_yaml def public skylos/agents/evaluation/_loader_support.py
unique_json_object def public skylos/agents/evaluation/_loader_support.py
mapping def public skylos/agents/evaluation/_loader_support.py
json_mapping def public skylos/agents/evaluation/_loader_support.py
list_value def public skylos/agents/evaluation/_loader_support.py
string_list def public skylos/agents/evaluation/_loader_support.py
tool_name_list def public skylos/agents/evaluation/_loader_support.py
required_text def public skylos/agents/evaluation/_loader_support.py
optional_text def public skylos/agents/evaluation/_loader_support.py
parse_text def public skylos/agents/evaluation/_loader_support.py
safe_id def public skylos/agents/evaluation/_loader_support.py
tool_name def public skylos/agents/evaluation/_loader_support.py
required_int def public skylos/agents/evaluation/_loader_support.py
number def public skylos/agents/evaluation/_loader_support.py
boolean def public skylos/agents/evaluation/_loader_support.py
reject_unknown def public skylos/agents/evaluation/_loader_support.py
reject_duplicates def public skylos/agents/evaluation/_loader_support.py
decode_openai_response def public skylos/agents/evaluation/_openai_response.py
normalize_openai_chat_response def public skylos/agents/evaluation/_openai_response.py
redact_observation def public skylos/agents/evaluation/_openai_response.py
redact_json def public skylos/agents/evaluation/_openai_response.py
redact_text def public skylos/agents/evaluation/_openai_response.py
AgentEndpointError class public skylos/agents/evaluation/_openai_transport.py
new_agent_session def public skylos/agents/evaluation/_openai_transport.py
post_owned_session_with_deadline def public skylos/agents/evaluation/_openai_transport.py
send_agent_request def public skylos/agents/evaluation/_openai_transport.py
observation_summary def public skylos/agents/evaluation/_runner_evidence.py
serialized_evaluation def public skylos/agents/evaluation/_runner_evidence.py
record_assertion_decisions def public skylos/agents/evaluation/_runner_evidence.py
evaluation_payload def public skylos/agents/evaluation/_runner_evidence.py
result_payload def public skylos/agents/evaluation/_runner_evidence.py
artifact_payload def public skylos/agents/evaluation/_runner_evidence.py
evidence_provenance def public skylos/agents/evaluation/_runner_evidence.py
missing_harness_artifacts def public skylos/agents/evaluation/_runner_evidence.py
record_artifact_issue def public skylos/agents/evaluation/_runner_evidence.py
enforce_result_size_budget def public skylos/agents/evaluation/_runner_evidence.py
json_artifact_size def public skylos/agents/evaluation/_runner_evidence.py
required_tool def public skylos/agents/evaluation/_tool_evaluator.py
match_required_tool_calls def public skylos/agents/evaluation/_tool_evaluator.py
allowed_tools def public skylos/agents/evaluation/_tool_evaluator.py
forbidden_tool def public skylos/agents/evaluation/_tool_evaluator.py
exact_tool_sequence def public skylos/agents/evaluation/_tool_evaluator.py
max_tool_calls def public skylos/agents/evaluation/_tool_evaluator.py
evaluate_behavior def public skylos/agents/evaluation/evaluator.py
behavior_evidence_digest def public skylos/agents/evaluation/evidence.py
observation_evidence_digest def public skylos/agents/evaluation/evidence.py
serialized_observation_evidence_digest def public skylos/agents/evaluation/evidence.py
derive_behavior_totals def public skylos/agents/evaluation/evidence.py
starter_behavior_contract_text def public skylos/agents/evaluation/loader.py
discover_behavior_contract def public skylos/agents/evaluation/loader.py
load_behavior_contract def public skylos/agents/evaluation/loader.py
load_behavior_observations def public skylos/agents/evaluation/observation_loader.py
AgentAuthContext class public skylos/agents/evaluation/openai_chat.py
LiveAgentObservation class public skylos/agents/evaluation/openai_chat.py
load_agent_auth_context def public skylos/agents/evaluation/openai_chat.py
observe_openai_chat def public skylos/agents/evaluation/openai_chat.py
observe_openai_chat_evidence def public skylos/agents/evaluation/openai_chat.py
validate_agent_endpoint def public skylos/agents/evaluation/openai_chat.py
agent_endpoint_fingerprint def public skylos/agents/evaluation/openai_chat.py
build_openai_chat_request def public skylos/agents/evaluation/openai_chat.py
BehaviorRunResult class public skylos/agents/evaluation/runner.py
run_behavior_test def public skylos/agents/evaluation/runner.py
AgentBehaviorError class public skylos/agents/evaluation/schema.py
AgentToolDefinition class public skylos/agents/evaluation/schema.py
AgentTarget class public skylos/agents/evaluation/schema.py
RequiredToolCall class public skylos/agents/evaluation/schema.py
ResponseExpectation class public skylos/agents/evaluation/schema.py
ToolExpectation class public skylos/agents/evaluation/schema.py
SourceExpectation class public skylos/agents/evaluation/schema.py
ScenarioExpectation class public skylos/agents/evaluation/schema.py
AgentScenario class public skylos/agents/evaluation/schema.py
AgentBehaviorContract class public skylos/agents/evaluation/schema.py
AgentToolCallObservation class public skylos/agents/evaluation/schema.py
AgentObservation class public skylos/agents/evaluation/schema.py
BehaviorObservationSet class public skylos/agents/evaluation/schema.py
BehaviorAssertion class public skylos/agents/evaluation/schema.py
ScenarioEvaluation class public skylos/agents/evaluation/schema.py
BehaviorEvaluation class public skylos/agents/evaluation/schema.py
severity_score def public skylos/agents/payload.py
build_action_title def public skylos/agents/payload.py
build_action_subtitle def public skylos/agents/payload.py
build_action_reason def public skylos/agents/payload.py
infer_action_type def public skylos/agents/payload.py
infer_safe_fix def public skylos/agents/payload.py
build_ranked_actions def public skylos/agents/payload.py
build_headline def public skylos/agents/payload.py
build_summary def public skylos/agents/payload.py
render_status_table def public skylos/agents/payload.py
command_center_payload def public skylos/agents/payload.py
AgentServiceController class public skylos/agents/service.py
AgentServiceHandler class public skylos/agents/service.py
SafeAgentServiceHandler class public skylos/agents/service.py
create_agent_service def public skylos/agents/service.py
serve_agent_service def public skylos/agents/service.py
TriagePattern class public skylos/agents/triage_learner.py
TriageLearner class public skylos/agents/triage_learner.py
ModuleMetrics class public skylos/analysis/architecture.py
DIPViolation class public skylos/analysis/architecture.py
ArchitectureResult class public skylos/analysis/architecture.py
analyze_architecture def public skylos/analysis/architecture.py
get_architecture_findings def public skylos/analysis/architecture.py
generate_architecture_findings def public skylos/analysis/architecture_findings.py
get_layer_policy_findings def public skylos/analysis/architecture_layers.py
architecture_iad_strict def public skylos/analysis/architecture_support.py
expand_reexported_entrypoint_modules def public skylos/analysis/architecture_support.py
find_package_boundary_modules def public skylos/analysis/architecture_support.py
MaskSpec class public skylos/analysis/ast_mask.py
BodyMasker class public skylos/analysis/ast_mask.py
apply_body_mask def public skylos/analysis/ast_mask.py
default_mask_spec_from_config def public skylos/analysis/ast_mask.py
ModuleDependency class public skylos/analysis/circular_deps.py
CircularDependency class public skylos/analysis/circular_deps.py
DependencyGraphBuilder class public skylos/analysis/circular_deps.py
CircularDependencyAnalyzer class public skylos/analysis/circular_deps.py
CircularDependencyRule class public skylos/analysis/circular_deps.py
analyze_circular_dependencies def public skylos/analysis/circular_deps.py
evaluate_static_condition def public skylos/analysis/control_flow.py
extract_constant_string def public skylos/analysis/control_flow.py
analysis_result_incomplete def public skylos/analysis/errors.py
analysis_error_payload def public skylos/analysis/errors.py
set_linter_node_types def public skylos/analysis/file_processing.py
scan_python_quality def public skylos/analysis/file_processing.py
scan_non_python_file def public skylos/analysis/file_processing.py
collect_python_raw_imports def public skylos/analysis/file_processing.py
SourceReadError class public skylos/analysis/file_worker.py
process_file def public skylos/analysis/file_worker.py
finding_is_inline_ignored def public skylos/analysis/finding_filter.py
ImplicitRefTracker class public skylos/analysis/implicit_refs.py
matches_pattern def public skylos/analysis/known_patterns.py
has_base_class def public skylos/analysis/known_patterns.py
ModuleReachabilityAnalyzer class public skylos/analysis/module_reachability.py
find_unreachable_modules def public skylos/analysis/module_reachability.py
apply_penalties def public skylos/analysis/penalties.py
extract_entrypoints def public skylos/analysis/pyproject_entrypoints.py
_merge_project_config_overrides def private skylos/analyzer.py
_merge_ordered_lists def private skylos/analyzer.py
_python_signature_files def private skylos/analyzer.py
_verification_surface_root def private skylos/analyzer.py
_verification_should_discover_workspace def private skylos/analyzer.py
_python_verification_surface_root def private skylos/analyzer.py
_extend_unsuppressed_danger_findings def private skylos/analyzer.py
_extend_unsuppressed_ai_defect_findings def private skylos/analyzer.py
_append_ai_verification_result def private skylos/analyzer.py
_relative_changed_file def private skylos/analyzer.py
_diff_result_has_text def private skylos/analyzer.py
_git_diff_for_changed_file def private skylos/analyzer.py
_scan_ai_defect_diff_signals def private skylos/analyzer.py
_entrypoint_module_name def private skylos/analyzer.py
_base_class_leaf_names def private skylos/analyzer.py
_class_has_base_leaf def private skylos/analyzer.py
_is_secret_config_candidate def private skylos/analyzer.py
_resolve_secret_config_candidate def private skylos/analyzer.py
_iter_secret_config_candidates def private skylos/analyzer.py
_absolute_secret_scan_targets def private skylos/analyzer.py
_is_generated_grep_cache def private skylos/analyzer.py
_explicitly_targets_generated_grep_cache def private skylos/analyzer.py
_git_tracking_status def private skylos/analyzer.py
_should_scan_generated_grep_cache def private skylos/analyzer.py
_is_within_secret_scan_targets def private skylos/analyzer.py
_normalize_secret_changed_files def private skylos/analyzer.py
_scan_secret_config_candidate def private skylos/analyzer.py
_scan_secret_config_candidates def private skylos/analyzer.py
_secret_config_read_error_payload def private skylos/analyzer.py
_grep_verify_error_payload def private skylos/analyzer.py
_definition_module_and_class def private skylos/analyzer.py
_resolve_analysis_root def private skylos/analyzer.py
_declared_js_workspace_root def private skylos/analyzer.py
_may_declare_js_workspace def private skylos/analyzer.py
_path_is_within def private skylos/analyzer.py
_go_engine_analysis_report def private skylos/analyzer.py
_sanitize_go_engine_reason def private skylos/analyzer.py
_go_engine_analysis_error def private skylos/analyzer.py
_go_runtime_analysis_error def private skylos/analyzer.py
_go_runtime_analysis_errors def private skylos/analyzer.py
_no_source_danger_targets def private skylos/analyzer.py
_grep_verify_rescue_priority def private skylos/analyzer.py
_canonical_analysis_path def private skylos/analyzer.py
_changed_definition_keys def private skylos/analyzer.py
_collect_grep_verify_candidates def private skylos/analyzer.py
_apply_grep_verify_verdicts def private skylos/analyzer.py
_confidence_as_unit_interval def private skylos/analyzer.py
_implicit_ref_evidence_marker def private skylos/analyzer.py
_mark_evidence_ref def private skylos/analyzer.py
_has_evidence_marker def private skylos/analyzer.py
_annotate_dead_code_evidence_sources def private skylos/analyzer.py
Skylos class public skylos/analyzer.py
proc_file def public skylos/analyzer.py
analyze def public skylos/analyzer.py
get_project_token def public skylos/api/__init__.py
get_project_info def public skylos/api/__init__.py
get_credit_balance def public skylos/api/__init__.py
print_credit_status def public skylos/api/__init__.py
get_git_root def public skylos/api/__init__.py
get_git_info def public skylos/api/__init__.py
detect_ai_code def public skylos/api/__init__.py
upload_report_legacy def public skylos/api/__init__.py
upload_report_compatibility def public skylos/api/__init__.py
upload_report_v2 def public skylos/api/__init__.py
upload_report def public skylos/api/__init__.py
upload_debt_report def public skylos/api/__init__.py
upload_defense_report def public skylos/api/__init__.py
upload_agent_run def public skylos/api/__init__.py
verify_report def public skylos/api/__init__.py
detect_ai_code def public skylos/api/_ai_detection.py
UploadArtifact class public skylos/api/_artifacts.py
PreparedReportUpload class public skylos/api/_artifacts.py
upload_artifact def public skylos/api/_artifacts.py
extract_snippet def public skylos/api/_snippets.py
scan_deep_audit_candidates def public skylos/audit/candidates.py
evaluate_deep_audit_ci_gate def public skylos/audit/ci.py
build_deep_audit_export def public skylos/audit/export.py
render_deep_audit_export def public skylos/audit/export.py
write_deep_audit_export def public skylos/audit/export.py
finding_fingerprint def public skylos/audit/freshness.py
is_revalidation_entry_current def public skylos/audit/freshness.py
latest_current_revalidation def public skylos/audit/freshness.py
CatalogSnapshot class public skylos/audit/investigator_tools/catalog.py
build_catalog_snapshot def public skylos/audit/investigator_tools/catalog.py
CatalogMixin class public skylos/audit/investigator_tools/catalog.py
AuditToolError class public skylos/audit/investigator_tools/models.py
AuditToolBudgetExceeded class public skylos/audit/investigator_tools/models.py
AuditToolFileChanged class public skylos/audit/investigator_tools/models.py
InvestigationToolLimits class public skylos/audit/investigator_tools/models.py
ToolObservation class public skylos/audit/investigator_tools/models.py
ToolOperationsMixin class public skylos/audit/investigator_tools/operations.py
EvidenceSafetyMixin class public skylos/audit/investigator_tools/safety.py
AuditReadOnlyTools class public skylos/audit/investigator_tools/session.py
PolyglotSignalRule class public skylos/audit/polyglot.py
build_polyglot_signal_candidates def public skylos/audit/polyglot.py
process_deep_audit_records def public skylos/audit/processor.py
current_repository_catalog_digest def public skylos/audit/processor.py
agent_context_is_current def public skylos/audit/processor.py
redact_text def public skylos/audit/redaction.py
sanitize_for_audit def public skylos/audit/redaction.py
ValidatedCleanEvidence class public skylos/audit/revalidation/evidence.py
validate_exact_evidence def public skylos/audit/revalidation/evidence.py
validate_clean_evidence def public skylos/audit/revalidation/evidence.py
validate_normalized_evidence def public skylos/audit/revalidation/evidence.py
validate_investigator_finding_evidence def public skylos/audit/revalidation/evidence.py
require_evidence_covers_finding def public skylos/audit/revalidation/evidence.py
validate_refuting_invariant def public skylos/audit/revalidation/evidence.py
finding_payload def public skylos/audit/revalidation/evidence.py
investigator_finding_matches def public skylos/audit/revalidation/evidence.py
line_range def public skylos/audit/revalidation/evidence.py
origin_source_hash def public skylos/audit/revalidation/evidence.py
required_string def public skylos/audit/revalidation/evidence.py
strict_positive_int def public skylos/audit/revalidation/evidence.py
positive_int def public skylos/audit/revalidation/evidence.py
catalog_policy def public skylos/audit/revalidation/policy.py
has_secret_candidate def public skylos/audit/revalidation/policy.py
is_secret_bearing_record def public skylos/audit/revalidation/policy.py
finding_id def public skylos/audit/revalidation/policy.py
has_current_verdict def public skylos/audit/revalidation/policy.py
latest_verdict def public skylos/audit/revalidation/policy.py
read_current_source def public skylos/audit/revalidation/policy.py
build_revalidation_context def public skylos/audit/revalidation/policy.py
normalize_verdict def public skylos/audit/revalidation/policy.py
canonical_verdict def public skylos/audit/revalidation/policy.py
payload_indicates_refusal def public skylos/audit/revalidation/policy.py
metadata_indicates_refusal def public skylos/audit/revalidation/policy.py
tool_provenance def public skylos/audit/revalidation/policy.py
base_provenance def public skylos/audit/revalidation/policy.py
incomplete_verdict def public skylos/audit/revalidation/policy.py
verify_finding def public skylos/audit/revalidation/verifiers.py
get_security_agent def public skylos/audit/revalidation/verifiers.py
new_tools def public skylos/audit/revalidation/verifiers.py
register_complete_initial_source def public skylos/audit/revalidation/verifiers.py
verify_with_repository_investigator def public skylos/audit/revalidation/verifiers.py
revalidation_candidate def public skylos/audit/revalidation/verifiers.py
validate_legacy_result def public skylos/audit/revalidation/verifiers.py
verify_with_agent_adapter def public skylos/audit/revalidation/verifiers.py
revalidate_deep_audit_findings def public skylos/audit/revalidator.py
AuditStore class public skylos/audit/store.py
utc_now def public skylos/audit/types.py
sha256_text def public skylos/audit/types.py
read_audit_source_text def public skylos/audit/types.py
sha256_file def public skylos/audit/types.py
stable_json_hash def public skylos/audit/types.py
normalize_signal_quality def public skylos/audit/types.py
normalize_relative_path def public skylos/audit/types.py
language_for_path def public skylos/audit/types.py
code_region_hash def public skylos/audit/types.py
AuditCandidate class public skylos/audit/types.py
AuditFileRecord class public skylos/audit/types.py
AuditScanSummary class public skylos/audit/types.py
AuditProcessSummary class public skylos/audit/types.py
AuditCIGateSummary class public skylos/audit/types.py
AuditRevalidationSummary class public skylos/audit/types.py
run_agent_behavior_manifest def public skylos/benchmarks/agent_behavior.py
AgentReviewBenchmarkFailure class public skylos/benchmarks/agent_review.py
load_manifest def public skylos/benchmarks/agent_review.py
validate_manifest def public skylos/benchmarks/agent_review.py
prepare_case_scan def public skylos/benchmarks/agent_review.py
run_case def public skylos/benchmarks/agent_review.py
run_manifest def public skylos/benchmarks/agent_review.py
format_summary def public skylos/benchmarks/agent_review.py
AICodeDefectBenchmarkFailure class public skylos/benchmarks/ai_code_defects.py
load_manifest def public skylos/benchmarks/ai_code_defects.py
validate_manifest def public skylos/benchmarks/ai_code_defects.py
run_manifest def public skylos/benchmarks/ai_code_defects.py
format_summary def public skylos/benchmarks/ai_code_defects.py
CorpusFailure class public skylos/benchmarks/corpus_ci.py
load_manifest def public skylos/benchmarks/corpus_ci.py
validate_manifest def public skylos/benchmarks/corpus_ci.py
run_case def public skylos/benchmarks/corpus_ci.py
run_manifest def public skylos/benchmarks/corpus_ci.py
format_summary def public skylos/benchmarks/corpus_ci.py
DeadCodeKey class public skylos/benchmarks/dead_code.py
DeadCodeBenchmarkFailure class public skylos/benchmarks/dead_code.py
load_manifest def public skylos/benchmarks/dead_code.py
load_external_targets def public skylos/benchmarks/dead_code.py
validate_manifest def public skylos/benchmarks/dead_code.py
validate_external_targets def public skylos/benchmarks/dead_code.py
run_case def public skylos/benchmarks/dead_code.py
run_manifest def public skylos/benchmarks/dead_code.py
run_external_targets def public skylos/benchmarks/dead_code.py
format_summary def public skylos/benchmarks/dead_code.py
DeepAuditLogicBenchmarkError class public skylos/benchmarks/deep_audit_logic.py
load_expected def public skylos/benchmarks/deep_audit_logic.py
project_result def public skylos/benchmarks/deep_audit_logic.py
evaluate_case def public skylos/benchmarks/deep_audit_logic.py
run_manifest def public skylos/benchmarks/deep_audit_logic.py
format_summary def public skylos/benchmarks/deep_audit_logic.py
DemoDeadCodeCase class public skylos/benchmarks/demo_deadcode.py
case_key def public skylos/benchmarks/demo_deadcode.py
hard_cases def public skylos/benchmarks/demo_deadcode.py
hard_case_keys def public skylos/benchmarks/demo_deadcode.py
load_corrected_ground_truth def public skylos/benchmarks/demo_deadcode.py
normalize_skylos_symbol def public skylos/benchmarks/demo_deadcode.py
score_case_predictions def public skylos/benchmarks/demo_deadcode.py
run_target def public skylos/benchmarks/framework_corpus.py
run_manifest def public skylos/benchmarks/framework_corpus.py
format_summary def public skylos/benchmarks/framework_corpus.py
FrameworkCorpusFailure class public skylos/benchmarks/framework_corpus_schema.py
load_manifest def public skylos/benchmarks/framework_corpus_schema.py
validate_manifest def public skylos/benchmarks/framework_corpus_schema.py
QualityBenchmarkFailure class public skylos/benchmarks/quality.py
load_manifest def public skylos/benchmarks/quality.py
validate_manifest def public skylos/benchmarks/quality.py
run_case def public skylos/benchmarks/quality.py
run_manifest def public skylos/benchmarks/quality.py
format_summary def public skylos/benchmarks/quality.py
SecurityBenchmarkFailure class public skylos/benchmarks/security.py
load_manifest def public skylos/benchmarks/security.py
validate_manifest def public skylos/benchmarks/security.py
run_case def public skylos/benchmarks/security.py
run_manifest def public skylos/benchmarks/security.py
format_summary def public skylos/benchmarks/security.py
main def public skylos/benchmarks/verify_benchmark.py
run_benchmark def public skylos/benchmarks/verify_benchmark.py
evaluate_case def public skylos/benchmarks/verify_benchmark_eval.py
expectations def public skylos/benchmarks/verify_benchmark_eval.py
summarize_results def public skylos/benchmarks/verify_benchmark_eval.py
neutral_kind def public skylos/benchmarks/verify_benchmark_eval.py
finding_file def public skylos/benchmarks/verify_benchmark_eval.py
finding_line def public skylos/benchmarks/verify_benchmark_eval.py
finding_text def public skylos/benchmarks/verify_benchmark_eval.py
compact_finding def public skylos/benchmarks/verify_benchmark_eval.py
format_summary def public skylos/benchmarks/verify_benchmark_report.py
format_report def public skylos/benchmarks/verify_benchmark_report.py
load_manifest def public skylos/benchmarks/verify_benchmark_runner.py
manifest_cases def public skylos/benchmarks/verify_benchmark_runner.py
run_case def public skylos/benchmarks/verify_benchmark_runner.py
tool_environment def public skylos/benchmarks/verify_benchmark_runner.py
EvidenceCard class public skylos/cicd/evidence.py
build_evidence_cards def public skylos/cicd/evidence.py
build_evidence_card def public skylos/cicd/evidence.py
evidence_counts def public skylos/cicd/evidence.py
evidence_label_title def public skylos/cicd/evidence.py
sanitize_untrusted_text def public skylos/cicd/evidence.py
redact_sensitive_text def public skylos/cicd/evidence.py
sanitize_markdown_text def public skylos/cicd/evidence.py
sanitize_bounded_payload def public skylos/cicd/evidence.py
run_pr_review def public skylos/cicd/review.py
get_changed_line_ranges def public skylos/cicd/review.py
filter_findings_to_diff def public skylos/cicd/review.py
build_risk_passport def public skylos/cicd/risk_passport.py
format_risk_passport_markdown def public skylos/cicd/risk_passport.py
generate_workflow def public skylos/cicd/workflow.py
write_workflow def public skylos/cicd/workflow.py
_LazyInquirer class private skylos/cli.py
_inquirer_available def private skylos/cli.py
_get_inquirer def private skylos/cli.py
_codemods_module def private skylos/cli.py
remove_unused_import_cst def public skylos/cli.py
remove_unused_function_cst def public skylos/cli.py
comment_out_unused_import_cst def public skylos/cli.py
comment_out_unused_function_cst def public skylos/cli.py
run_analyze def public skylos/cli.py
resolve_llm_runtime def public skylos/cli.py
run_gate_interaction def public skylos/cli.py
upload_report def public skylos/cli.py
run_pipeline def public skylos/cli.py
review_security_scan_result def public skylos/cli.py

Vocabulary

Finding
A normalized issue Skylos reports. Most output formats eventually render finding dictionaries.
Danger
Security-sensitive findings such as injection, insecure config, secrets, or policy regressions.
Quality
Maintainability findings like complexity, naming, god files, and readability issues.
Security contract
A configured security expectation that should not be weakened by a PR.
Evidence grounding
Code-backed proof used to keep LLM findings from drifting into hallucinations.
Rule catalog
The source of rule IDs and public rule descriptions.
Benchmark
A repeatable fixture that compares scanner behavior across versions or tools.
No matching cards or rows. Try a folder, symbol, rule type, or workflow name.