Repo Snapshot

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

824Python files scanned
7600top-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 174 symbols 334

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 19 symbols 127

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 269

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 5 symbols 93

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 13 symbols 115

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 154

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 10 symbols 107

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 14 symbols 232

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 61

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 7 symbols 85

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 28 symbols 174

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 30 symbols 382

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 8 symbols 137

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 22 symbols 36

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 7

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 3 symbols 16

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 53 symbols 554

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 10 symbols 98

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 91 symbols 916

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 7 symbols 67

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 43 symbols 400

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 218 symbols 2836

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 / 153 many symbols shared path Root entrypoints and shared scan orchestration.
skylos/config.py 10 / 38 shared path Root entrypoints and shared scan orchestration.
skylos/analyzer.py 3 / 30 shared path Root entrypoints and shared scan orchestration.
skylos/pipeline.py 2 / 12 shared path Root entrypoints and shared scan orchestration.
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.
skylos/api/__init__.py 15 / 97 many symbols Public API facade and private helpers for payloads, snippets, findings, URLs, and AI-detection metadata.
test/test_java_security.py 86 / 90 many symbols Unit and regression tests covering CLI, analyzer, rules, integrations, and benchmarks.
test/test_verify_orchestrator.py 79 / 79 many symbols Unit and regression tests covering CLI, analyzer, rules, integrations, and benchmarks.
test/test_debt.py 70 / 73 many symbols Unit and regression tests covering CLI, analyzer, rules, integrations, and benchmarks.
skylos/rules/config/cicd/github_actions.py 2 / 64 many symbols Rule catalog and concrete rule implementations for quality, security, AI-defect, config, edge, CI/CD, and SCA findings.
skylos/llm/security_taskflow.py 11 / 63 many symbols LLM security analysis, evidence grounding, provider runtime resolution, and prompt templates.
test/test_dangerous.py 58 / 62 many symbols Unit and regression tests covering CLI, analyzer, rules, integrations, and benchmarks.
skylos/visitors/languages/typescript/danger.py 1 / 61 many symbols AST/tree visitors that collect findings and semantic evidence.
skylos/llm/verify_orchestrator.py 4 / 60 many symbols LLM security analysis, evidence grounding, provider runtime resolution, and prompt templates.

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
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_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
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
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
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
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
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
_extend_unsuppressed_danger_findings def private skylos/analyzer.py
_extend_unsuppressed_ai_defect_findings 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
_architecture_iad_strict def private skylos/analyzer.py
_base_class_leaf_names def private skylos/analyzer.py
_class_has_base_leaf def private skylos/analyzer.py
_expand_reexported_entrypoint_modules def private skylos/analyzer.py
_find_package_boundary_modules def private skylos/analyzer.py
_is_secret_config_candidate def private skylos/analyzer.py
_resolve_secret_config_candidate def private skylos/analyzer.py
_definition_module_and_class def private skylos/analyzer.py
_resolve_analysis_root def private skylos/analyzer.py
_no_source_danger_targets def private skylos/analyzer.py
_grep_verify_rescue_priority 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
_is_truly_empty_or_docstring_only def private 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
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
redact_text def public skylos/audit/redaction.py
sanitize_for_audit def public skylos/audit/redaction.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
sha256_file def public skylos/audit/types.py
stable_json_hash 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
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
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
redact_sensitive_text 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
run_security_taskflow def public skylos/cli.py
discover_source_files def public skylos/cli.py
_read_staged_text def private skylos/cli.py
_scan_staged_secret_files def private skylos/cli.py
_join_phrase def private skylos/cli.py
_list_dirty_relevant_paths def private skylos/cli.py
_deep_audit_output_exclude_paths def private skylos/cli.py
_deep_audit_project_root def private skylos/cli.py
_empty_changed_deep_audit_payload def private skylos/cli.py
_write_deep_audit_payload def private skylos/cli.py
_handle_empty_changed_deep_audit def private skylos/cli.py
_create_precommit_snapshot def private skylos/cli.py
_remap_precommit_result_files def private skylos/cli.py
_parse_unified_diff_ranges def private skylos/cli.py
_normalize_precommit_path def private skylos/cli.py
_path_suffixes def private skylos/cli.py
_build_changed_range_index def private skylos/cli.py
_ranges_for_precommit_file def private skylos/cli.py
_finding_is_in_changed_lines def private skylos/cli.py
_get_cached_changed_line_ranges def private skylos/cli.py
_filter_precommit_findings_to_changed_lines def private skylos/cli.py
_precommit_blocks_finding def private skylos/cli.py
_apply_precommit_gate_policy def private skylos/cli.py
llm_estimate_cost def public skylos/cli.py
_get_sarif_exporter_class def private skylos/cli.py
_ensure_llm_support def private skylos/cli.py
_build_analyzer_config def private skylos/cli.py
CleanFormatter class public skylos/cli.py
_skylos_console_theme def private skylos/cli.py
setup_logger def public skylos/cli.py
remove_unused_import def public skylos/cli.py
remove_unused_function def public skylos/cli.py
comment_out_unused_import def public skylos/cli.py
comment_out_unused_function def public skylos/cli.py
_shorten_path def private skylos/cli.py
find_project_root def public skylos/cli.py
_rel_to_project_root def private skylos/cli.py
_normalize_agent_findings def private skylos/cli.py
_agent_findings_to_result_json def private skylos/cli.py
_is_tty def private skylos/cli.py
_is_main_machine_output def private skylos/cli.py
_has_high_intent_findings def private skylos/cli.py
_set_no_upload_prompt def private skylos/cli.py
_detect_link_file def private skylos/cli.py
_print_upload_destination def private skylos/cli.py
_selected_main_upload_static_categories def private skylos/cli.py
_print_main_upload_manifest def private skylos/cli.py
_render_upload_failure def private skylos/cli.py
_is_ci def private skylos/cli.py
_print_upload_cta def private skylos/cli.py
interactive_selection def public skylos/cli.py
print_badge def public skylos/cli.py
_display_filter_min_rank def private skylos/cli.py
_display_filter_allowed_categories def private skylos/cli.py
_display_filter_matches_file def private skylos/cli.py
_display_filter_has_severity def private skylos/cli.py
_display_filter_passes_severity def private skylos/cli.py
_display_filter_items def private skylos/cli.py
_apply_display_filters def private skylos/cli.py
render_pretty_results def public skylos/cli.py
_write_rich_report_output def private skylos/cli.py
_write_pretty_report_output def private skylos/cli.py
run_init def public skylos/cli.py
run_whitelist def public skylos/cli.py
get_git_changed_files def public skylos/cli.py
estimate_cost def public skylos/cli.py
_run_clean_command def private skylos/cli.py
_run_cache_command def private skylos/cli.py
run_debt_command def public skylos/cli.py
run_defend_command def public skylos/cli.py
run_suite_command def public skylos/cli.py
run_ingest_command def public skylos/cli.py
run_provenance_command def public skylos/cli.py
run_cicd_command def public skylos/cli.py
_load_addopts def private skylos/cli.py
_handle_rules_command def private skylos/cli.py
_handle_contract_command def private skylos/cli.py
_rules_install def private skylos/cli.py
_rules_list def private skylos/cli.py
_rules_remove def private skylos/cli.py
_run_command_overview def private skylos/cli.py
_run_commands_command def private skylos/cli.py
_run_tour_command def private skylos/cli.py
_run_key_command def private skylos/cli.py
_run_credits_command def private skylos/cli.py
_run_init_command def private skylos/cli.py
_run_baseline_command def private skylos/cli.py
_run_badge_command def private skylos/cli.py
_run_whitelist_command def private skylos/cli.py
_run_doctor_command def private skylos/cli.py
_run_whoami_command def private skylos/cli.py
_run_login_command def private skylos/cli.py
_run_sync_command def private skylos/cli.py
_run_project_command def private skylos/cli.py
_run_sonar_command def private skylos/cli.py
_run_verify_command def private skylos/cli.py
_attach_upload_project_context def private skylos/cli.py
_upload_agent_run_best_effort def private skylos/cli.py
_run_removed_city_command def private skylos/cli.py
_run_discover_command def private skylos/cli.py
_run_removed_run_command def private skylos/cli.py
_run_scan_command def private skylos/cli.py
_is_first_level_help_request def private skylos/cli.py
_run_early_command_help def private skylos/cli.py
_dispatch_early_command def private skylos/cli.py
_rules_validate def private skylos/cli.py
_build_main_parser def private skylos/cli.py
_apply_main_output_format def private skylos/cli.py
_parse_main_cli_args def private skylos/cli.py
_resolve_main_project_root def private skylos/cli.py
_print_default_excludes def private skylos/cli.py
_build_main_scan_context def private skylos/cli.py
_formatted_output_gate_exit_code def private skylos/cli.py
_concise_scan_exit_code def private skylos/cli.py
_has_concise_findings def private skylos/cli.py
_concise_line def private skylos/cli.py
_format_concise_results def private skylos/cli.py
_strict_scan_exit_code def private skylos/cli.py
_apply_config_driven_analysis_flags def private skylos/cli.py
_print_main_scan_banner def private skylos/cli.py
_trace_cache_requested def private skylos/cli.py
_trusted_module_file def private skylos/cli.py
_trace_subprocess_script def private skylos/cli.py
_trace_subprocess_command def private skylos/cli.py
_coverage_execution_allowed def private skylos/cli.py
_run_pre_analysis_steps def private skylos/cli.py
_add_agent_model_arg def private skylos/cli.py
_add_agent_output_arg def private skylos/cli.py
_add_agent_quiet_arg def private skylos/cli.py
_add_agent_provider_arg def private skylos/cli.py
_add_agent_base_url_arg def private skylos/cli.py
_add_agent_prompt_template_arg def private skylos/cli.py
_add_agent_security_quick_args def private skylos/cli.py
_add_agent_security_deep_args def private skylos/cli.py
_security_deep_workflow_payload def private skylos/cli.py
_print_security_deep_workflow def private skylos/cli.py
_explicit_prompt_templates_from_args def private skylos/cli.py
_build_agent_parser def private skylos/cli.py
main def public skylos/cli.py
is_first_level_help_request def public skylos/cli_core/dispatch.py
run_early_command_help def public skylos/cli_core/dispatch.py
dispatch_early_command def public skylos/cli_core/dispatch.py
build_main_parser def public skylos/cli_core/main_parser.py
apply_main_output_format def public skylos/cli_core/main_parser.py
parse_main_cli_args def public skylos/cli_core/main_parser.py
save_key def public skylos/cloud/credentials.py
get_key def public skylos/cloud/credentials.py
delete_key def public skylos/cloud/credentials.py
LoginResult class public skylos/cloud/login.py
browser_login def public skylos/cloud/login.py
manual_token_fallback def public skylos/cloud/login.py
get_current_connection def public skylos/cloud/login.py
run_login def public skylos/cloud/login.py
normalize_repo_subpath def public skylos/cloud/project_context.py
repo_subpath_for_project def public skylos/cloud/project_context.py
project_context_for_upload def public skylos/cloud/project_context.py
get_api_url def public skylos/cloud/sync.py
get_token def public skylos/cloud/sync.py
save_token def public skylos/cloud/sync.py
clear_token def public skylos/cloud/sync.py
mask_token def public skylos/cloud/sync.py
AuthError class public skylos/cloud/sync.py
api_get def public skylos/cloud/sync.py
cmd_connect def public skylos/cloud/sync.py
cmd_status def public skylos/cloud/sync.py
cmd_disconnect def public skylos/cloud/sync.py
cmd_project_status def public skylos/cloud/sync.py
cmd_project_list def public skylos/cloud/sync.py
cmd_project_use def public skylos/cloud/sync.py
cmd_project_create def public skylos/cloud/sync.py
cmd_project_unlink def public skylos/cloud/sync.py
cmd_pull def public skylos/cloud/sync.py
cmd_setup def public skylos/cloud/sync.py
cmd_upgrade def public skylos/cloud/sync.py
main def public skylos/cloud/sync.py
project_main def public skylos/cloud/sync.py
get_custom_rules def public skylos/cloud/sync.py
create_precommit_config def public skylos/cloud/sync_setup.py
build_pre_push_hook def public skylos/cloud/sync_setup.py
cloud_workflow_content def public skylos/cloud/sync_setup.py
print_free_plan_setup_summary def public skylos/cloud/sync_setup.py
collect_setup_choices def public skylos/cloud/sync_setup.py
install_pre_push_hook def public skylos/cloud/sync_setup.py
write_cloud_workflow def public skylos/cloud/sync_setup.py
install_selected_setup_features def public skylos/cloud/sync_setup.py
print_setup_next_steps def public skylos/cloud/sync_setup.py
UploadFamilyManifest class public skylos/cloud/upload_manifest.py
build_code_scan_manifest def public skylos/cloud/upload_manifest.py
build_defense_manifest def public skylos/cloud/upload_manifest.py
build_debt_manifest def public skylos/cloud/upload_manifest.py
print_upload_manifest def public skylos/cloud/upload_manifest.py
add_agent_replay_parser def public skylos/commands/agent_replay_cmd.py
run_agent_replay_command def public skylos/commands/agent_replay_cmd.py
harness_replay_payload def public skylos/commands/agent_replay_cmd.py
print_harness_replay def public skylos/commands/agent_replay_cmd.py
add_agent_verify_parser def public skylos/commands/agent_verify_cmd.py
run_agent_verify_command def public skylos/commands/agent_verify_cmd.py
run_badge_command def public skylos/commands/badge_cmd.py
run_baseline_command def public skylos/commands/baseline_cmd.py
run_cache_command def public skylos/commands/cache_cmd.py
run_cicd_command def public skylos/commands/cicd_cmd.py
run_analyze def public skylos/commands/clean_cmd.py
run_clean_command def public skylos/commands/clean_cmd.py
run_contract_command def public skylos/commands/contract_cmd.py
init_contract def public skylos/commands/contract_cmd.py
validate_contract def public skylos/commands/contract_cmd.py
inspect_contract def public skylos/commands/contract_cmd.py
run_credits_command def public skylos/commands/credits_cmd.py
run_debt_command def public skylos/commands/debt_cmd.py
run_defend_command def public skylos/commands/defend_cmd.py
run_discover_command def public skylos/commands/discover_cmd.py
run_doctor_command def public skylos/commands/doctor_cmd.py
run_ingest_command def public skylos/commands/ingest_cmd.py
run_init_command def public skylos/commands/init_cmd.py
run_key_command def public skylos/commands/key_cmd.py
run_login_command def public skylos/commands/login_cmd.py
run_project_command def public skylos/commands/project_cmd.py
run_provenance_command def public skylos/commands/provenance_cmd.py
run_rules_command def public skylos/commands/rules_cmd.py
init_rules def public skylos/commands/rules_cmd.py
install_rules def public skylos/commands/rules_cmd.py
list_rules def public skylos/commands/rules_cmd.py
list_rule_packs def public skylos/commands/rules_cmd.py
remove_rules def public skylos/commands/rules_cmd.py
validate_rules def public skylos/commands/rules_cmd.py
run_scan_command def public skylos/commands/scan_cmd.py
run_sonar_command def public skylos/commands/sonar_cmd.py
run_suite_command def public skylos/commands/suite_cmd.py
run_sync_command def public skylos/commands/sync_cmd.py
run_verify_command def public skylos/commands/verify_cmd.py
run_whitelist def public skylos/commands/whitelist_cmd.py
run_whitelist_command def public skylos/commands/whitelist_cmd.py
run_whoami_command def public skylos/commands/whoami_cmd.py
ConfigError class public skylos/config.py
load_config def public skylos/config.py
resolve_config_file_path def public skylos/config.py
is_path_excluded def public skylos/config.py
is_whitelisted def public skylos/config.py
get_expired_whitelists def public skylos/config.py
get_noqa_codes_by_line def public skylos/config.py
get_all_ignore_lines def public skylos/config.py
get_skylos_ignore_lines def public skylos/config.py
suggest_pattern def public skylos/config.py
is_test_path def public skylos/constants.py
is_framework_path def public skylos/constants.py
get_non_library_dir_kind def public skylos/constants.py
parse_exclude_folders def public skylos/constants.py
starter_contract_text def public skylos/contracts/loader.py
load_contract def public skylos/contracts/loader.py
validate_contract_file def public skylos/contracts/loader.py
discover_contract_path def public skylos/contracts/loader.py
contract_project_config_overrides def public skylos/contracts/loader.py
contract_enables_dependency_hallucinations def public skylos/contracts/loader.py
contract_finding_metadata def public skylos/contracts/metadata.py
scan_contract_route_guardrails def public skylos/contracts/routes.py
ContractError class public skylos/contracts/schema.py
PhantomSymbolsContract class public skylos/contracts/schema.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.