README.md
pyproject.toml
src/aep/__init__.py
src/aep/bootstrap.py
src/aep/capabilities.py
src/aep/cli.py
src/aep/demo.py
src/aep/events.py
src/aep/failure.py
src/aep/models.py
src/aep/orchestrator.py
src/aep/policy.py
src/aep/redaction.py
src/aep/scan.py
src/aep/secrets.py
src/aep/state_store.py
src/aep/tool_registry.py
src/aep/agents/__init__.py
src/aep/agents/base.py
src/aep/agents/ci_diagnose_agent.py
src/aep/agents/ci_intelligence_agent.py
src/aep/agents/ci_monitor_agent.py
src/aep/agents/code_agent.py
src/aep/agents/dependency_cve_agent.py
src/aep/agents/deployment_agent.py
src/aep/agents/deployment_verification_agent.py
src/aep/agents/infrastructure_discovery_agent.py
src/aep/agents/infrastructure_intelligence_agent.py
src/aep/agents/operations_intelligence_agent.py
src/aep/agents/pull_request_agent.py
src/aep/agents/push_agent.py
src/aep/agents/recon_agent.py
src/aep/agents/security_agent.py
src/aep/agents/security_intelligence_agent.py
src/aep/agents/testing_agent.py
src/aep/ai_gateway/__init__.py
src/aep/ai_gateway/fake_provider.py
src/aep/ai_gateway/gateway.py
src/aep/ai_gateway/omniroute_provider.py
src/aep/ai_gateway/provider.py
src/aep/api/__init__.py
src/aep/api/app.py
src/aep/api/auth.py
src/aep/cicd/__init__.py
src/aep/cicd/artifact.py
src/aep/cicd/discovery.py
src/aep/cicd/environment.py
src/aep/cicd/failure_classification.py
src/aep/cicd/models.py
src/aep/cicd/planner.py
src/aep/cicd/release_gates.py
src/aep/cicd/providers/__init__.py
src/aep/cicd/providers/base.py
src/aep/cicd/providers/github_actions.py
src/aep/cicd/providers/registry.py
src/aep/config/policy.yaml
src/aep/db/__init__.py
src/aep/db/factory.py
src/aep/db/fake.py
src/aep/db/local_postgres.py
src/aep/db/migrations.py
src/aep/db/models.py
src/aep/db/postgres.py
src/aep/db/repositories.py
src/aep/db/startup.py
src/aep/db/state_store_postgres.py
src/aep/demo_template/.gitignore
src/aep/demo_template/README.md
src/aep/demo_template/app.py
src/aep/demo_template/config.py
src/aep/demo_template/test_app.py
src/aep/dependency/__init__.py
src/aep/dependency/inventory.py
src/aep/dependency/manifest_writer.py
src/aep/dependency/manifests.py
src/aep/dependency/models.py
src/aep/dependency/planner.py
src/aep/dependency/remediation.py
src/aep/dependency/scanners/__init__.py
src/aep/dependency/scanners/base.py
src/aep/dependency/scanners/govulncheck_scanner.py
src/aep/dependency/scanners/npm_audit_scanner.py
src/aep/dependency/scanners/pip_audit_scanner.py
src/aep/dependency/scanners/trivy_scanner.py
src/aep/deployment/__init__.py
src/aep/deployment/evidence.py
src/aep/deployment/kubernetes_provider.py
src/aep/deployment/local_provider.py
src/aep/deployment/models.py
src/aep/deployment/provider.py
src/aep/deployment/rollback.py
src/aep/github/__init__.py
src/aep/github/client.py
src/aep/github/planner.py
src/aep/infra/__init__.py
src/aep/infra/discovery.py
src/aep/infra/drift.py
src/aep/infra/models.py
src/aep/infra/planner.py
src/aep/infra/remediation.py
src/aep/infra/risk.py
src/aep/infra/scan_runner.py
src/aep/infra/validation.py
src/aep/infra/cloud/__init__.py
src/aep/infra/cloud/aws_adapter.py
src/aep/infra/cloud/base.py
src/aep/infra/cloud/registry.py
src/aep/infra/scanners/__init__.py
src/aep/infra/scanners/checkov_k8s_scanner.py
src/aep/infra/scanners/helm_scanner.py
src/aep/infra/scanners/k8s_native_scanner.py
src/aep/infra/scanners/terraform_deep_scanner.py
src/aep/intelligence/__init__.py
src/aep/intelligence/architecture.py
src/aep/intelligence/ci_clustering.py
src/aep/intelligence/cost_intelligence.py
src/aep/intelligence/cross_project_learning.py
src/aep/intelligence/deployment_risk.py
src/aep/intelligence/engineering_health_score.py
src/aep/intelligence/incident_patterns.py
src/aep/intelligence/predictive_remediation.py
src/aep/intelligence/prioritization.py
src/aep/intelligence/risk_prediction.py
src/aep/intelligence/security_trends.py
src/aep/intelligence/technical_debt.py
src/aep/migrations_sql/0001_initial_schema.sql
src/aep/migrations_sql/0002_verification_rollback_rogue_column.sql
src/aep/migrations_sql/0003_runtime_cutover_additions.sql
src/aep/migrations_sql/0004_verification_rollback_failure_counters_rogue_column.sql
src/aep/migrations_sql/0005_audit_verification_rollback_drift_col.sql
src/aep/migrations_sql/0006_skill_registry.sql
src/aep/migrations_sql/0007_api_auth.sql
src/aep/operations/__init__.py
src/aep/operations/correlation.py
src/aep/operations/dependency_graph.py
src/aep/operations/escalation.py
src/aep/operations/memory.py
src/aep/operations/models.py
src/aep/operations/observability.py
src/aep/operations/planner.py
src/aep/operations/rca.py
src/aep/operations/recurrence.py
src/aep/operations/remediation.py
src/aep/progress/__init__.py
src/aep/progress/calculator.py
src/aep/progress/demo_readiness.py
src/aep/progress/deployability.py
src/aep/progress/roadmap.py
src/aep/providers/__init__.py
src/aep/providers/anthropic_provider.py
src/aep/providers/base.py
src/aep/providers/mock_provider.py
src/aep/providers/router.py
src/aep/runtime/__init__.py
src/aep/runtime/health.py
src/aep/runtime/priority.py
src/aep/runtime/scheduler.py
src/aep/runtime/status.py
src/aep/runtime/supervisor.py
src/aep/runtime/workers.py
src/aep/runtime/workloop.py
src/aep/security/__init__.py
src/aep/security/discovery.py
src/aep/security/models.py
src/aep/security/planner.py
src/aep/security/posture.py
src/aep/security/remediation.py
src/aep/security/scan_runner.py
src/aep/security/secret_manager.py
src/aep/security/suppressions.py
src/aep/security/scanners/__init__.py
src/aep/security/scanners/base.py
src/aep/security/scanners/builtin_secret_scanner.py
src/aep/security/scanners/checkov_scanner.py
src/aep/security/scanners/gitleaks_scanner.py
src/aep/security/scanners/semgrep_scanner.py
src/aep/security/scanners/trivy_scanner.py
src/aep/skills/__init__.py
src/aep/skills/claude_adapter.py
src/aep/skills/definitions.py
src/aep/skills/factory.py
src/aep/skills/known_capabilities.py
src/aep/skills/loader.py
src/aep/skills/models.py
src/aep/skills/registry.py
src/aep/skills/versioning.py
src/aep/tools/__init__.py
src/aep/tools/deployment_tool.py
src/aep/tools/filesystem_tool.py
src/aep/tools/git_tool.py
src/aep/tools/github_tool.py
src/aep/tools/operations_tool.py
src/aep/tools/shell_tool.py
src/aep/ui_dist/favicon.svg
src/aep/ui_dist/icons.svg
src/aep/ui_dist/index.html
src/aep/ui_dist/assets/index-CEcv34Km.css
src/aep/ui_dist/assets/index-CX6QgfbJ.js
src/aep_platform.egg-info/PKG-INFO
src/aep_platform.egg-info/SOURCES.txt
src/aep_platform.egg-info/dependency_links.txt
src/aep_platform.egg-info/entry_points.txt
src/aep_platform.egg-info/requires.txt
src/aep_platform.egg-info/top_level.txt
tests/test_ai_gateway.py
tests/test_ai_gateway_credential_safety.py
tests/test_api_app.py
tests/test_api_architecture_intelligence.py
tests/test_api_ci_clusters.py
tests/test_api_cost.py
tests/test_api_cross_project.py
tests/test_api_deployment_risk.py
tests/test_api_health_score.py
tests/test_api_incident_patterns.py
tests/test_api_prioritization.py
tests/test_api_remediation_decision.py
tests/test_api_risk_prediction.py
tests/test_api_security_trends.py
tests/test_api_technical_debt.py
tests/test_api_threat_model.py
tests/test_architecture_intelligence.py
tests/test_bootstrap_install_dependencies.py
tests/test_bootstrap_script.py
tests/test_capabilities_and_scan.py
tests/test_ci_clustering.py
tests/test_ci_intelligence_agent.py
tests/test_cicd_artifact.py
tests/test_cicd_discovery.py
tests/test_cicd_e2e.py
tests/test_cicd_environment_policy.py
tests/test_cicd_failure_classification.py
tests/test_cicd_github_actions.py
tests/test_cicd_threat_model.py
tests/test_cli_architecture.py
tests/test_cli_ci_clusters.py
tests/test_cli_cicd_status.py
tests/test_cli_cost.py
tests/test_cli_cross_project.py
tests/test_cli_demo.py
tests/test_cli_dependency_risk.py
tests/test_cli_health_score.py
tests/test_cli_operations_status.py
tests/test_cli_remediation_decision.py
tests/test_cli_risk.py
tests/test_cli_runtime_status.py
tests/test_cli_security_status.py
tests/test_cli_security_trends.py
tests/test_cli_skills.py
tests/test_cli_status.py
tests/test_cli_technical_debt.py
tests/test_cli_ux.py
tests/test_cost_intelligence.py
tests/test_cross_project_learning.py
tests/test_db_crash_recovery.py
tests/test_db_migration_only_enforcement.py
tests/test_db_migrations.py
tests/test_db_repositories_fake.py
tests/test_db_repositories_postgres.py
tests/test_db_schema_drift.py
tests/test_db_startup_gate.py
tests/test_db_supabase_real.py
tests/test_demo_readiness.py
tests/test_dependency_agent.py
tests/test_dependency_e2e_real.py
tests/test_dependency_github_loop.py
tests/test_dependency_manifests.py
tests/test_dependency_remediation.py
tests/test_dependency_scanning.py
tests/test_deployment_agent.py
tests/test_deployment_evidence.py
tests/test_deployment_kubernetes_provider.py
tests/test_deployment_provider.py
tests/test_deployment_risk.py
tests/test_deployment_rollback.py
tests/test_end_to_end_demo.py
tests/test_engineering_health_score.py
tests/test_failure_classifier.py
tests/test_github_ci_loop.py
tests/test_github_client.py
tests/test_github_push_policy.py
tests/test_github_tool.py
tests/test_incident_patterns.py
tests/test_infra_agent.py
tests/test_infra_cloud_adapter.py
tests/test_infra_discovery.py
tests/test_infra_drift.py
tests/test_infra_e2e.py
tests/test_infra_helm.py
tests/test_infra_kubernetes.py
tests/test_infra_policy.py
tests/test_infra_remediation.py
tests/test_infra_risk.py
tests/test_infra_terraform.py
tests/test_infra_threat_model.py
tests/test_infra_validation.py
tests/test_local_postgres.py
tests/test_omniroute_provider.py
tests/test_operations_correlation.py
tests/test_operations_dependency_graph.py
tests/test_operations_e2e.py
tests/test_operations_escalation.py
tests/test_operations_memory.py
tests/test_operations_models.py
tests/test_operations_observability.py
tests/test_operations_rca.py
tests/test_operations_recurrence.py
tests/test_operations_remediation_policy.py
tests/test_operations_threat_model.py
tests/test_orchestrator_skill_gate.py
tests/test_policy_engine.py
tests/test_predictive_remediation.py
tests/test_prioritization.py
tests/test_progress_engine.py
tests/test_providers.py
tests/test_release_gates.py
tests/test_risk_prediction.py
tests/test_runtime.py
tests/test_runtime_threat_model.py
tests/test_secrets.py
tests/test_security_agent.py
tests/test_security_agent_safety.py
tests/test_security_discovery.py
tests/test_security_e2e.py
tests/test_security_models.py
tests/test_security_policy.py
tests/test_security_posture.py
tests/test_security_remediation.py
tests/test_security_scanners.py
tests/test_security_suppressions.py
tests/test_security_trends.py
tests/test_skills_capability_matching.py
tests/test_skills_claude_adapter.py
tests/test_skills_db_postgres.py
tests/test_skills_dependencies.py
tests/test_skills_registry.py
tests/test_skills_runtime_integration.py
tests/test_skills_self_validation.py
tests/test_skills_threat_model.py
tests/test_skills_versioning.py
tests/test_state_store.py
tests/test_state_store_postgres_facade.py
tests/test_technical_debt.py
tests/test_tool_registry.py
tests/test_verification_discipline.py