AUTHORS.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
skylos/__init__.py
skylos/analyzer.py
skylos/api.py
skylos/architecture.py
skylos/ast_mask.py
skylos/baseline.py
skylos/circular_deps.py
skylos/cli.py
skylos/codemods.py
skylos/config.py
skylos/constants.py
skylos/control_flow.py
skylos/credentials.py
skylos/fixer.py
skylos/gatekeeper.py
skylos/grader.py
skylos/implicit_refs.py
skylos/known_patterns.py
skylos/linter.py
skylos/login.py
skylos/module_reachability.py
skylos/penalties.py
skylos/pipeline.py
skylos/pyproject_entrypoints.py
skylos/pytest_unused_fixtures.py
skylos/sarif_exporter.py
skylos/server.py
skylos/sync.py
skylos/tracer.py
skylos/tui.py
skylos/visitor.py
skylos.egg-info/PKG-INFO
skylos.egg-info/SOURCES.txt
skylos.egg-info/dependency_links.txt
skylos.egg-info/entry_points.txt
skylos.egg-info/requires.txt
skylos.egg-info/top_level.txt
skylos/adapters/__init__.py
skylos/adapters/base.py
skylos/adapters/litellm_adapter.py
skylos/cicd/__init__.py
skylos/cicd/review.py
skylos/cicd/workflow.py
skylos/commands/__init__.py
skylos/commands/key_cmd.py
skylos/engines/__init__.py
skylos/engines/go_contract.py
skylos/engines/go_runner.py
skylos/llm/__init__.py
skylos/llm/agents.py
skylos/llm/analyzer.py
skylos/llm/context.py
skylos/llm/dead_code_verifier.py
skylos/llm/executor.py
skylos/llm/graph.py
skylos/llm/merger.py
skylos/llm/orchestrator.py
skylos/llm/planner.py
skylos/llm/prompts.py
skylos/llm/runtime.py
skylos/llm/schemas.py
skylos/llm/ui.py
skylos/llm/validator.py
skylos/rules/__init__.py
skylos/rules/base.py
skylos/rules/compliance.py
skylos/rules/custom.py
skylos/rules/secrets.py
skylos/rules/danger/__init__.py
skylos/rules/danger/calls.py
skylos/rules/danger/danger.py
skylos/rules/danger/taint.py
skylos/rules/danger/danger_access/__init__.py
skylos/rules/danger/danger_access/access_flow.py
skylos/rules/danger/danger_cmd/__init__.py
skylos/rules/danger/danger_cmd/cmd_flow.py
skylos/rules/danger/danger_cors/__init__.py
skylos/rules/danger/danger_cors/cors_flow.py
skylos/rules/danger/danger_fs/__init__.py
skylos/rules/danger/danger_fs/path_flow.py
skylos/rules/danger/danger_hallucination/__init__.py
skylos/rules/danger/danger_hallucination/dependency_hallucination.py
skylos/rules/danger/danger_jwt/__init__.py
skylos/rules/danger/danger_jwt/jwt_flow.py
skylos/rules/danger/danger_mcp/__init__.py
skylos/rules/danger/danger_mcp/mcp_flow.py
skylos/rules/danger/danger_net/__init__.py
skylos/rules/danger/danger_net/ssrf_flow.py
skylos/rules/danger/danger_redirect/__init__.py
skylos/rules/danger/danger_redirect/redirect_flow.py
skylos/rules/danger/danger_sql/__init__.py
skylos/rules/danger/danger_sql/sql_flow.py
skylos/rules/danger/danger_sql/sql_raw_flow.py
skylos/rules/danger/danger_web/__init__.py
skylos/rules/danger/danger_web/xss_flow.py
skylos/rules/quality/__init__.py
skylos/rules/quality/async_blocking.py
skylos/rules/quality/class_size.py
skylos/rules/quality/clones.py
skylos/rules/quality/cohesion.py
skylos/rules/quality/complexity.py
skylos/rules/quality/coupling.py
skylos/rules/quality/logic.py
skylos/rules/quality/nesting.py
skylos/rules/quality/performance.py
skylos/rules/quality/structure.py
skylos/rules/quality/unreachable.py
skylos/rules/sca/__init__.py
skylos/rules/sca/reachability.py
skylos/rules/sca/vulnerability_scanner.py
skylos/scale/__init__.py
skylos/scale/parallel_static.py
skylos/visitors/__init__.py
skylos/visitors/framework_aware.py
skylos/visitors/test_aware.py
skylos/visitors/languages/__init__.py
skylos/visitors/languages/go/__init__.py
skylos/visitors/languages/go/go.py
skylos/visitors/languages/typescript/__init__.py
skylos/visitors/languages/typescript/core.py
skylos/visitors/languages/typescript/danger.py
skylos/visitors/languages/typescript/framework.py
skylos/visitors/languages/typescript/quality.py
skylos_mcp/__init__.py
skylos_mcp/__main__.py
skylos_mcp/auth.py
skylos_mcp/server.py
test/test_agent_integration.py
test/test_agent_remediate.py
test/test_agents.py
test/test_analyzer.py
test/test_api.py
test/test_app_custom_manual.py
test/test_architecture.py
test/test_ast_mask.py
test/test_async_blocking.py
test/test_baseline.py
test/test_changes_analyzer.py
test/test_cicd_annotate.py
test/test_cicd_gate.py
test/test_cicd_review.py
test/test_cicd_workflow.py
test/test_circular_deps.py
test/test_cli.py
test/test_cli_coverage.py
test/test_cli_decorators.py
test/test_cli_llm_provider.py
test/test_cli_uncovered_paths.py
test/test_cmd_injection.py
test/test_codemods.py
test/test_cohesion.py
test/test_complexity.py
test/test_config.py
test/test_constants.py
test/test_control_flow.py
test/test_cors_flow.py
test/test_coupling.py
test/test_credentials.py
test/test_credits.py
test/test_dangerous.py
test/test_deserialization.py
test/test_dynamic_patterns.py
test/test_exclusions.py
test/test_fixer.py
test/test_framework_aware.py
test/test_gate_kwargs.py
test/test_gatekeeper.py
test/test_github_annotations.py
test/test_grader.py
test/test_hallucination_dependency.py
test/test_implicit_refs.py
test/test_integration.py
test/test_jwt_flow.py
test/test_litellm_adapter.py
test/test_llm_analyzer.py
test/test_logic.py
test/test_mass_assignment.py
test/test_mcp_auth.py
test/test_mcp_rules.py
test/test_merger.py
test/test_module_reachability.py
test/test_mutable_default.py
test/test_nesting.py
test/test_new_behaviours.py
test/test_parallel_static.py
test/test_path_traversal.py
test/test_performance.py
test/test_pipeline.py
test/test_quality_new_rules.py
test/test_redirect_flow.py
test/test_sanitizers.py
test/test_sarif_exporter.py
test/test_secrets.py
test/test_secrets_nonpy.py
test/test_server.py
test/test_skylos.py
test/test_sql_injection.py
test/test_src_layout.py
test/test_ssrf.py
test/test_structure.py
test/test_sync.py
test/test_test_aware.py
test/test_tracer.py
test/test_tui.py
test/test_typescript.py
test/test_typescript_expanded.py
test/test_typescript_framework.py
test/test_unreachable.py
test/test_validator.py
test/test_visitor.py
test/test_xss_flow.py