.dockerignore
CHANGELOG.md
CLA.md
COMMERCIAL_LICENSE.md
CONTRIBUTING.md
Dockerfile
LICENSE
MANIFEST.in
NOTICE
README.md
action.yml
docker-compose.dev.yml
docker-compose.prod.yml
docker-compose.yml
pyproject.toml
action/Dockerfile
action/README.md
action/entrypoint.sh
action/parse_results.py
ci-templates/azure/README.md
ci-templates/azure/azure-pipelines-nat.yml
ci-templates/gitlab/.gitlab-ci-nat.yml
ci-templates/gitlab/README.md
ci-templates/jenkins/Jenkinsfile.example
ci-templates/jenkins/README.md
ci-templates/jenkins/vars/natScan.groovy
deploy/azure/container-app.yaml
deploy/k8s/configmap.yaml
deploy/k8s/deployment.yaml
deploy/k8s/service.yaml
docs/README.md
docs/changelog.md
docs/contributing.md
docs/faq.md
docs/whitepaper.md
docs/api-reference/github-action.md
docs/api-reference/python-api.md
docs/api-reference/rest-api.md
docs/assets/cli-scan-output.png
docs/assets/cli-security-output.png
docs/assets/dashboad-overview-00.png
docs/assets/dashboard-agents-02.png
docs/assets/dashboard-agents-03.png
docs/assets/dashboard-agents-dark.png
docs/assets/dashboard-dark-mode-off.png
docs/assets/dashboard-history.png
docs/assets/dashboard-overview-000.png
docs/assets/dashboard-overview-02.png
docs/assets/dashboard-overview-03.png
docs/assets/dashboard-overview-top.png
docs/assets/dashboard-security-detail.png
docs/assets/dashboard-security.png
docs/assets/security-detail.png
docs/concepts/architecture.md
docs/concepts/bdi-agents.md
docs/concepts/ecnp-protocol.md
docs/concepts/neural-networks.md
docs/concepts/security-model.md
docs/demo/README.md
docs/getting-started/first-scan.md
docs/getting-started/installation.md
docs/getting-started/quickstart.md
docs/guides/authentication.md
docs/guides/belief-driven-prioritization.md
docs/guides/billing.md
docs/guides/ci-cd-integration.md
docs/guides/cli-reference.md
docs/guides/custom-check-plugins.md
docs/guides/dashboard.md
docs/guides/demo-mode.md
docs/guides/docker-deployment.md
docs/guides/e2e-billing-runbook.md
docs/guides/exporter-plugins.md
docs/guides/graphql-testing.md
docs/guides/ingestor-plugins.md
docs/guides/llm-augmented-testing.md
docs/guides/metering.md
docs/guides/notifications.md
docs/guides/releasing.md
docs/guides/rest-api-testing.md
docs/guides/risk-scoring.md
docs/guides/scheduled-scans.md
docs/guides/security-scanning.md
docs/guides/self-healing-test-suites.md
docs/guides/transfer-learning.md
docs/how-to/customize-security-checks.md
docs/how-to/deploy-with-docker.md
docs/how-to/integrate-with-github-actions.md
docs/how-to/read-risk-reports.md
docs/how-to/run-security-audit.md
docs/how-to/setup-oauth2.md
docs/how-to/test-graphql-api.md
docs/how-to/test-openapi-spec.md
docs/ip/README.md
docs/ip/disclosure-001-bounded-belief-revision.md
docs/ip/disclosure-002-extended-contract-net-protocol.md
docs/ip/disclosure-003-adaptive-test-allocation.md
docs/ip/disclosure-004-multi-agent-bdi-architecture.md
docs/legal/licensing.md
docs/sales/competitor-matrix.md
docs/sales/email-templates.md
docs/sales/onboarding-faq.md
docs/sales/sales-playbook.md
docs/sales/value-proposition.md
docs/troubleshooting/auth-issues.md
docs/troubleshooting/ci-cd-issues.md
docs/troubleshooting/common-issues.md
docs/troubleshooting/connection-errors.md
docs/troubleshooting/docker-issues.md
docs/vision/functional-testing-saas.md
examples/demo.py
examples/petstore-openapi.yaml
examples/pipeline.yaml
examples/exporters/console_exporter.py
examples/ingestors/csv_ingestor.py
examples/plugins/rate_limit_check.py
examples/python/basic_scan.py
examples/python/graphql_scan.py
examples/python/oauth2_scan.py
examples/python/security_audit.py
examples/workflows/README.md
src/mannf/__init__.py
src/mannf/__main__.py
src/mannf/_version.py
src/mannf/cli.py
src/mannf/nat_orchestrator.py
src/mannf/orchestrator.py
src/mannf/server.py
src/mannf/agents/__init__.py
src/mannf/agents/analyzer_agent.py
src/mannf/agents/base.py
src/mannf/agents/bdi_agent.py
src/mannf/agents/belief_state.py
src/mannf/agents/coordinator_agent.py
src/mannf/agents/executor_agent.py
src/mannf/agents/monitor_agent.py
src/mannf/agents/oracle_agent.py
src/mannf/agents/planner_agent.py
src/mannf/agents/test_agent.py
src/mannf/anomaly/__init__.py
src/mannf/anomaly/enhanced_detector.py
src/mannf/core/__init__.py
src/mannf/core/functional_orchestrator.py
src/mannf/core/nat_orchestrator.py
src/mannf/core/orchestrator.py
src/mannf/core/agents/__init__.py
src/mannf/core/agents/accessibility_scanner_agent.py
src/mannf/core/agents/analyzer_agent.py
src/mannf/core/agents/base.py
src/mannf/core/agents/bdi_agent.py
src/mannf/core/agents/belief_state.py
src/mannf/core/agents/browser_coordinator_agent.py
src/mannf/core/agents/browser_executor_agent.py
src/mannf/core/agents/coordinator_agent.py
src/mannf/core/agents/executor_agent.py
src/mannf/core/agents/monitor_agent.py
src/mannf/core/agents/oracle_agent.py
src/mannf/core/agents/performance_testing_agent.py
src/mannf/core/agents/planner_agent.py
src/mannf/core/agents/test_agent.py
src/mannf/core/agents/visual_regression_agent.py
src/mannf/core/anomaly/__init__.py
src/mannf/core/anomaly/enhanced_detector.py
src/mannf/core/browser/__init__.py
src/mannf/core/browser/accessibility_scanner.py
src/mannf/core/browser/dom_snapshot.py
src/mannf/core/browser/performance_metrics.py
src/mannf/core/browser/visual_comparer.py
src/mannf/core/distributed/__init__.py
src/mannf/core/distributed/endpoint.py
src/mannf/core/distributed/system_under_test.py
src/mannf/core/messaging/__init__.py
src/mannf/core/messaging/bus.py
src/mannf/core/messaging/messages.py
src/mannf/core/neural/__init__.py
src/mannf/core/prioritization/__init__.py
src/mannf/core/prioritization/adaptive_controller.py
src/mannf/core/prioritization/belief_prioritizer.py
src/mannf/core/prioritization/risk_scorer.py
src/mannf/core/reporting/__init__.py
src/mannf/core/reporting/unified_report.py
src/mannf/core/testing/__init__.py
src/mannf/core/testing/adaptive_controller.py
src/mannf/core/testing/models.py
src/mannf/dashboard/__init__.py
src/mannf/dashboard/app.py
src/mannf/dashboard/models.py
src/mannf/dashboard/telemetry.py
src/mannf/dashboard/static/index.html
src/mannf/distributed/__init__.py
src/mannf/distributed/endpoint.py
src/mannf/distributed/system_under_test.py
src/mannf/healing/__init__.py
src/mannf/healing/graphql_schema_diff.py
src/mannf/healing/healer.py
src/mannf/healing/models.py
src/mannf/healing/schema_diff.py
src/mannf/integrations/__init__.py
src/mannf/integrations/auth.py
src/mannf/integrations/graphql_parser.py
src/mannf/integrations/graphql_sut.py
src/mannf/integrations/http_sut.py
src/mannf/integrations/openapi_parser.py
src/mannf/integrations/postman_parser.py
src/mannf/llm/__init__.py
src/mannf/llm/anthropic_provider.py
src/mannf/llm/base.py
src/mannf/llm/config.py
src/mannf/llm/factory.py
src/mannf/llm/openai_provider.py
src/mannf/llm/prompts.py
src/mannf/messaging/__init__.py
src/mannf/messaging/bus.py
src/mannf/messaging/messages.py
src/mannf/neural/__init__.py
src/mannf/prioritization/__init__.py
src/mannf/prioritization/adaptive_controller.py
src/mannf/prioritization/belief_prioritizer.py
src/mannf/prioritization/risk_scorer.py
src/mannf/product/__init__.py
src/mannf/product/cli.py
src/mannf/product/cli_admin.py
src/mannf/product/database.py
src/mannf/product/demo.py
src/mannf/product/doctor.py
src/mannf/product/metrics.py
src/mannf/product/models.py
src/mannf/product/onboarding.py
src/mannf/product/orchestrator.py
src/mannf/product/orchestrator_models.py
src/mannf/product/server.py
src/mannf/product/setup_wizard.py
src/mannf/product/status.py
src/mannf/product/telemetry.py
src/mannf/product/uninstall.py
src/mannf/product/upgrade.py
src/mannf/product/admin/__init__.py
src/mannf/product/admin/routes.py
src/mannf/product/billing/__init__.py
src/mannf/product/billing/audit.py
src/mannf/product/billing/feature_gates.py
src/mannf/product/billing/metering.py
src/mannf/product/billing/notifications.py
src/mannf/product/billing/plans.py
src/mannf/product/billing/rate_limits.py
src/mannf/product/billing/stripe_billing.py
src/mannf/product/billing/tenant_auth.py
src/mannf/product/billing/tenant_manager.py
src/mannf/product/dashboard/__init__.py
src/mannf/product/dashboard/app.py
src/mannf/product/dashboard/models.py
src/mannf/product/dashboard/telemetry.py
src/mannf/product/dashboard/static/index.html
src/mannf/product/dashboard/static/manifest.json
src/mannf/product/dashboard/static/pwa-icon-192.png
src/mannf/product/dashboard/static/pwa-icon-512.png
src/mannf/product/dashboard/static/sw.js
src/mannf/product/exporters/__init__.py
src/mannf/product/exporters/azuredevops_exporter.py
src/mannf/product/exporters/base.py
src/mannf/product/exporters/github_exporter.py
src/mannf/product/exporters/gitlab_exporter.py
src/mannf/product/exporters/jira_exporter.py
src/mannf/product/exporters/linear_exporter.py
src/mannf/product/exporters/loader.py
src/mannf/product/exporters/pagerduty_exporter.py
src/mannf/product/exporters/servicenow_exporter.py
src/mannf/product/exporters/shortcut_exporter.py
src/mannf/product/exporters/webhook_exporter.py
src/mannf/product/healing/__init__.py
src/mannf/product/healing/graphql_schema_diff.py
src/mannf/product/healing/healer.py
src/mannf/product/healing/models.py
src/mannf/product/healing/schema_diff.py
src/mannf/product/ingestors/__init__.py
src/mannf/product/ingestors/base.py
src/mannf/product/ingestors/bgstm_ingestor.py
src/mannf/product/ingestors/curl_ingestor.py
src/mannf/product/ingestors/gherkin_ingestor.py
src/mannf/product/ingestors/graphql_ingestor.py
src/mannf/product/ingestors/har_ingestor.py
src/mannf/product/ingestors/loader.py
src/mannf/product/ingestors/models.py
src/mannf/product/ingestors/openapi_ingestor.py
src/mannf/product/ingestors/postman_ingestor.py
src/mannf/product/integrations/__init__.py
src/mannf/product/integrations/auth.py
src/mannf/product/integrations/graphql_parser.py
src/mannf/product/integrations/graphql_sut.py
src/mannf/product/integrations/http_sut.py
src/mannf/product/integrations/openapi_parser.py
src/mannf/product/integrations/postman_parser.py
src/mannf/product/llm/__init__.py
src/mannf/product/llm/anthropic_provider.py
src/mannf/product/llm/base.py
src/mannf/product/llm/config.py
src/mannf/product/llm/factory.py
src/mannf/product/llm/openai_provider.py
src/mannf/product/llm/prompts.py
src/mannf/product/middleware/__init__.py
src/mannf/product/middleware/tenant_isolation.py
src/mannf/product/notifications/__init__.py
src/mannf/product/notifications/dispatcher.py
src/mannf/product/orchestration/__init__.py
src/mannf/product/orchestration/ingest_scan_orchestrator.py
src/mannf/product/orchestration/pipeline.py
src/mannf/product/regression/__init__.py
src/mannf/product/regression/differ.py
src/mannf/product/regression/masking.py
src/mannf/product/regression/models.py
src/mannf/product/regression/recorder.py
src/mannf/product/regression/replayer.py
src/mannf/product/scheduling/__init__.py
src/mannf/product/scheduling/cron_utils.py
src/mannf/product/scheduling/engine.py
src/mannf/product/scheduling/models.py
src/mannf/product/scheduling/store.py
src/mannf/product/security/__init__.py
src/mannf/product/security/belief_guided.py
src/mannf/product/security/models.py
src/mannf/product/security/plugin_loader.py
src/mannf/product/security/reporter.py
src/mannf/product/security/scanner.py
src/mannf/product/security/checks/__init__.py
src/mannf/product/security/checks/base.py
src/mannf/product/security/checks/bfla.py
src/mannf/product/security/checks/bola.py
src/mannf/product/security/checks/bopla.py
src/mannf/product/security/checks/broken_auth.py
src/mannf/product/security/checks/graphql_security.py
src/mannf/product/security/checks/inventory.py
src/mannf/product/security/checks/misconfig.py
src/mannf/product/security/checks/resource_consumption.py
src/mannf/product/security/checks/sensitive_flows.py
src/mannf/product/security/checks/ssrf.py
src/mannf/product/security/checks/unsafe_consumption.py
src/mannf/product/storage/__init__.py
src/mannf/product/storage/artifact_store.py
src/mannf/product/weights/__init__.py
src/mannf/product/weights/blob_store.py
src/mannf/product/weights/factory.py
src/mannf/product/weights/registry.py
src/mannf/product/weights/store.py
src/mannf/regression/__init__.py
src/mannf/regression/differ.py
src/mannf/regression/masking.py
src/mannf/regression/models.py
src/mannf/regression/recorder.py
src/mannf/regression/replayer.py
src/mannf/security/__init__.py
src/mannf/security/belief_guided.py
src/mannf/security/models.py
src/mannf/security/reporter.py
src/mannf/security/scanner.py
src/mannf/security/checks/__init__.py
src/mannf/security/checks/base.py
src/mannf/security/checks/bfla.py
src/mannf/security/checks/bola.py
src/mannf/security/checks/bopla.py
src/mannf/security/checks/broken_auth.py
src/mannf/security/checks/graphql_security.py
src/mannf/security/checks/inventory.py
src/mannf/security/checks/misconfig.py
src/mannf/security/checks/resource_consumption.py
src/mannf/security/checks/sensitive_flows.py
src/mannf/security/checks/ssrf.py
src/mannf/security/checks/unsafe_consumption.py
src/mannf/testing/__init__.py
src/mannf/testing/adaptive_controller.py
src/mannf/testing/models.py
src/mannf/weights/__init__.py
src/mannf/weights/registry.py
src/mannf/weights/store.py
src/nat_engine.egg-info/PKG-INFO
src/nat_engine.egg-info/SOURCES.txt
src/nat_engine.egg-info/dependency_links.txt
src/nat_engine.egg-info/entry_points.txt
src/nat_engine.egg-info/requires.txt
src/nat_engine.egg-info/top_level.txt
tests/test_accessibility_scanner.py
tests/test_agents.py
tests/test_artifact_blob.py
tests/test_auth_layer.py
tests/test_belief_state.py
tests/test_billing_audit.py
tests/test_billing_bridge.py
tests/test_billing_models.py
tests/test_billing_notifications.py
tests/test_browser_agent.py
tests/test_concurrency_enforcement.py
tests/test_dashboard_ui.py
tests/test_distributed.py
tests/test_e2e_billing_happy_path.py
tests/test_e2e_billing_onboarding.py
tests/test_e2e_onboarding.py
tests/test_functional_orchestrator.py
tests/test_ingest_orchestrator.py
tests/test_messaging.py
tests/test_nat_agents.py
tests/test_nat_orchestrator.py
tests/test_neural.py
tests/test_observability.py
tests/test_orchestrator.py
tests/test_performance_testing.py
tests/test_product_notifications.py
tests/test_quota_enforcement.py
tests/test_server.py
tests/test_server_risk.py
tests/test_setup_wizard.py
tests/test_status.py
tests/test_stripe_billing.py
tests/test_telemetry.py
tests/test_tenant_isolation.py
tests/test_tenant_scoped_scans.py
tests/test_testing.py
tests/test_unified_report.py
tests/test_usage_metering.py
tests/test_visual_regression.py