LICENSE
MANIFEST.in
README.md
pyproject.toml
playground/__init__.py
playground/backend/__init__.py
playground/backend/agent_presets.py
playground/backend/agent_proxy.py
playground/backend/analytics.py
playground/backend/app.py
playground/backend/auth_helpers.py
playground/backend/chat_session.py
playground/backend/cloud_app.py
playground/backend/dependencies.py
playground/backend/evidence_quality.py
playground/backend/materialize.py
playground/backend/middleware.py
playground/backend/mock_tools.py
playground/backend/models.py
playground/backend/observability.py
playground/backend/output_scorer.py
playground/backend/playground_agent.py
playground/backend/policy_router.py
playground/backend/redaction.py
playground/backend/run_helpers.py
playground/backend/run_store.py
playground/backend/scenarios.py
playground/backend/sharing.py
playground/backend/static_assets.py
playground/backend/stream_events.py
playground/backend/stress_generation.py
playground/backend/stress_mutation_runner.py
playground/backend/tau2_adapter.py
playground/backend/workspace_defaults.py
playground/backend/cloud/__init__.py
playground/backend/cloud/auth.py
playground/backend/cloud/db_safety.py
playground/backend/cloud/dependencies.py
playground/backend/cloud/enforcement_engine.py
playground/backend/cloud/middleware.py
playground/backend/cloud/rate_limit_dependency.py
playground/backend/cloud/runtime_config.py
playground/backend/cloud/seed_demo.py
playground/backend/cloud/utils.py
playground/backend/cloud/adapters/__init__.py
playground/backend/cloud/adapters/base.py
playground/backend/cloud/adapters/generic.py
playground/backend/cloud/adapters/retell.py
playground/backend/cloud/adapters/vapi.py
playground/backend/cloud/demo/__init__.py
playground/backend/cloud/demo/mock_upstream.py
playground/backend/cloud/migrations/__init__.py
playground/backend/cloud/migrations/env.py
playground/backend/cloud/migrations/sql_split.py
playground/backend/cloud/migrations/versions/001_initial_schema.py
playground/backend/cloud/migrations/versions/002_users_and_memberships.py
playground/backend/cloud/migrations/versions/003_voice_sessions.py
playground/backend/cloud/migrations/versions/004_outcome_columns.py
playground/backend/cloud/migrations/versions/005_idempotency_replay_state.py
playground/backend/cloud/migrations/versions/006_auth_flow_tokens.py
playground/backend/cloud/migrations/versions/007_hosted_security_hardening.py
playground/backend/cloud/migrations/versions/008_usage_metering.py
playground/backend/cloud/migrations/versions/009_workspace_billing.py
playground/backend/cloud/migrations/versions/010_support_access_grants.py
playground/backend/cloud/migrations/versions/011_support_access_hardening.py
playground/backend/cloud/migrations/versions/012_enforcement_layers.py
playground/backend/cloud/migrations/versions/013_kill_switch_schema_gate_evidence_dag.py
playground/backend/cloud/migrations/versions/014_conversation_integrity.py
playground/backend/cloud/migrations/versions/015_import_runs.py
playground/backend/cloud/migrations/versions/016_webhook_config.py
playground/backend/cloud/migrations/versions/017_flagging_columns.py
playground/backend/cloud/migrations/versions/018_rls_tenant_isolation.py
playground/backend/cloud/migrations/versions/019_voice_pending_actions.py
playground/backend/cloud/migrations/versions/020_guardrails_configs.py
playground/backend/cloud/migrations/versions/021_workflow_tables.py
playground/backend/cloud/migrations/versions/022_claim_guard.py
playground/backend/cloud/migrations/versions/023_stripe_event_dedup.py
playground/backend/cloud/migrations/versions/024_policy_documents.py
playground/backend/cloud/migrations/versions/025_processed_stripe_event_status.py
playground/backend/cloud/migrations/versions/026_sdk_trace_events.py
playground/backend/cloud/migrations/versions/027_workspace_secrets.py
playground/backend/cloud/migrations/versions/028_shadow_resolver_caps.py
playground/backend/cloud/migrations/versions/029_action_grants.py
playground/backend/cloud/migrations/versions/030_grant_exec_config.py
playground/backend/cloud/migrations/versions/031_decision_telemetry_v2.py
playground/backend/cloud/migrations/versions/032_decision_why_payload.py
playground/backend/cloud/repositories/__init__.py
playground/backend/cloud/repositories/agents.py
playground/backend/cloud/repositories/api_keys.py
playground/backend/cloud/repositories/approvals.py
playground/backend/cloud/repositories/base.py
playground/backend/cloud/repositories/decision_events.py
playground/backend/cloud/repositories/decision_ingest.py
playground/backend/cloud/repositories/hmac_keys.py
playground/backend/cloud/repositories/idempotency.py
playground/backend/cloud/repositories/import_runs.py
playground/backend/cloud/repositories/organizations.py
playground/backend/cloud/repositories/policies.py
playground/backend/cloud/repositories/policy_documents.py
playground/backend/cloud/repositories/policy_versions.py
playground/backend/cloud/repositories/sdk_traces.py
playground/backend/cloud/repositories/security_audit.py
playground/backend/cloud/repositories/tools.py
playground/backend/cloud/repositories/voice_sessions.py
playground/backend/cloud/repositories/workspaces.py
playground/backend/cloud/routers/__init__.py
playground/backend/cloud/routers/admin.py
playground/backend/cloud/routers/agents.py
playground/backend/cloud/routers/api_keys.py
playground/backend/cloud/routers/approvals.py
playground/backend/cloud/routers/billing.py
playground/backend/cloud/routers/decide.py
playground/backend/cloud/routers/enforcement.py
playground/backend/cloud/routers/events.py
playground/backend/cloud/routers/grants.py
playground/backend/cloud/routers/health.py
playground/backend/cloud/routers/imports.py
playground/backend/cloud/routers/legal.py
playground/backend/cloud/routers/metrics.py
playground/backend/cloud/routers/outcomes.py
playground/backend/cloud/routers/policies.py
playground/backend/cloud/routers/policy_documents.py
playground/backend/cloud/routers/proxy.py
playground/backend/cloud/routers/sdk.py
playground/backend/cloud/routers/secrets.py
playground/backend/cloud/routers/slack.py
playground/backend/cloud/routers/tools.py
playground/backend/cloud/routers/usage.py
playground/backend/cloud/routers/user_auth.py
playground/backend/cloud/routers/voice.py
playground/backend/cloud/routers/webhooks.py
playground/backend/cloud/routers/workflows.py
playground/backend/cloud/routers/workspaces.py
playground/backend/cloud/schemas/__init__.py
playground/backend/cloud/schemas/action_event.py
playground/backend/cloud/schemas/agent.py
playground/backend/cloud/schemas/decide.py
playground/backend/cloud/schemas/decision_event.py
playground/backend/cloud/schemas/decision_ingest.py
playground/backend/cloud/schemas/import_run.py
playground/backend/cloud/schemas/outcomes.py
playground/backend/cloud/schemas/proxy.py
playground/backend/cloud/schemas/redaction.py
playground/backend/cloud/schemas/sdk_traces.py
playground/backend/cloud/schemas/tool.py
playground/backend/cloud/schemas/voice.py
playground/backend/cloud/schemas/voice_enums.py
playground/backend/cloud/schemas/workspace.py
playground/backend/cloud/services/__init__.py
playground/backend/cloud/services/api_rate_limiter.py
playground/backend/cloud/services/audit.py
playground/backend/cloud/services/billing.py
playground/backend/cloud/services/claim_guard.py
playground/backend/cloud/services/coding.py
playground/backend/cloud/services/context_facts.py
playground/backend/cloud/services/contracts.py
playground/backend/cloud/services/contradiction_detector.py
playground/backend/cloud/services/conversation_integrity.py
playground/backend/cloud/services/email.py
playground/backend/cloud/services/evaluator.py
playground/backend/cloud/services/event_redaction.py
playground/backend/cloud/services/evidence.py
playground/backend/cloud/services/flagging.py
playground/backend/cloud/services/grants.py
playground/backend/cloud/services/hmac_key_material.py
playground/backend/cloud/services/idempotency.py
playground/backend/cloud/services/import_secrets.py
playground/backend/cloud/services/kill_switch.py
playground/backend/cloud/services/llm.py
playground/backend/cloud/services/metrics.py
playground/backend/cloud/services/normalizer.py
playground/backend/cloud/services/pattern_miner.py
playground/backend/cloud/services/pii_storage.py
playground/backend/cloud/services/policy_bundles.py
playground/backend/cloud/services/policy_comparator.py
playground/backend/cloud/services/policy_extraction.py
playground/backend/cloud/services/policy_resolver.py
playground/backend/cloud/services/postcondition.py
playground/backend/cloud/services/proxy_forwarder.py
playground/backend/cloud/services/rag_policy.py
playground/backend/cloud/services/rate_limits.py
playground/backend/cloud/services/reasoning_judge.py
playground/backend/cloud/services/redaction.py
playground/backend/cloud/services/replay_processor.py
playground/backend/cloud/services/retention.py
playground/backend/cloud/services/risk_enrichment.py
playground/backend/cloud/services/runtime_adapter.py
playground/backend/cloud/services/schema_gate.py
playground/backend/cloud/services/shadow_policy.py
playground/backend/cloud/services/shadow_report.py
playground/backend/cloud/services/slack_notifier.py
playground/backend/cloud/services/ssrf.py
playground/backend/cloud/services/temporal.py
playground/backend/cloud/services/usage.py
playground/backend/cloud/services/voice.py
playground/backend/cloud/services/voice_examples.py
playground/backend/cloud/services/webhook_notifier.py
playground/backend/cloud/services/workspace_secrets.py
playground/backend/cloud/services/connectors/__init__.py
playground/backend/cloud/services/connectors/retell.py
playground/backend/cloud/services/connectors/upload.py
playground/backend/cloud/services/connectors/vapi.py
playground/backend/example_traces/refund_traces.yaml
playground/backend/helpers/__init__.py
playground/backend/helpers/formatting.py
playground/backend/helpers/stress.py
playground/backend/presets/__init__.py
playground/backend/presets/banking.py
playground/backend/presets/claims_manager.py
playground/backend/presets/customer_service.py
playground/backend/presets/ecommerce.py
playground/backend/presets/meeting_scheduler.py
playground/backend/presets/types.py
playground/backend/routers/__init__.py
playground/backend/routers/admin.py
playground/backend/routers/agents.py
playground/backend/routers/analytics.py
playground/backend/routers/approvals.py
playground/backend/routers/auth.py
playground/backend/routers/benchmarks.py
playground/backend/routers/evals.py
playground/backend/routers/health.py
playground/backend/routers/insights.py
playground/backend/routers/policy_eval.py
playground/backend/routers/replay.py
playground/backend/routers/runs.py
playground/backend/routers/scenarios.py
playground/backend/routers/stress.py
playground/backend/routers/usage.py
playground/backend/routers/websocket.py
playground/frontend/package-lock.json
playground/frontend/package.json
playground/frontend/tsconfig.json
playground/frontend/tsconfig.node.json
playground/static/index.html
playground/static/assets/Admin-lrMrCNbr.js
playground/static/assets/Approvals-Dvt_ZZFo.js
playground/static/assets/CloudAgents-B05VVqeV.js
playground/static/assets/CloudApiKeys-0Q4iPOob.js
playground/static/assets/CloudApprovals-BCG5ULrt.js
playground/static/assets/CloudAuditLog-CzeTlDJx.js
playground/static/assets/CloudConnectProvider-DUWqpjKs.js
playground/static/assets/CloudDashboard-DAJhtpfb.js
playground/static/assets/CloudEnforcement-C2-15M-j.js
playground/static/assets/CloudGuardrails-BeU37fu1.js
playground/static/assets/CloudHome-3yWEFqkT.js
playground/static/assets/CloudOnboarding-BNBcTx96.js
playground/static/assets/CloudPolicies-DVWjcHZ9.js
playground/static/assets/CloudSettings-BRha1-g4.js
playground/static/assets/CloudTeam-CRkpHe33.js
playground/static/assets/CloudUsage-AXXajwPm.js
playground/static/assets/CloudWorkflows-CnaRS9wr.js
playground/static/assets/CodeEditor-DBiS9H2i.js
playground/static/assets/DecisionBadge-KO6O5Jzr.js
playground/static/assets/DecisionEvents-DJaOG1Hr.js
playground/static/assets/Docs-emQrLR-G.js
playground/static/assets/ForgotPassword-rwTcjtD8.js
playground/static/assets/ImportProgress-DotP-30I.js
playground/static/assets/Insights-FmXfK9jf.js
playground/static/assets/Login-Bpmhs4aZ.js
playground/static/assets/Onboarding-Bgh965d7.js
playground/static/assets/Playground-CKMnrGmv.js
playground/static/assets/Policies-Ch7Tw3md.js
playground/static/assets/PolicyDiffView-Cnp3h3R5.js
playground/static/assets/PolicyEditor-7vXRN9Xq.js
playground/static/assets/Replay-BZyrhOWp.js
playground/static/assets/Reports-B-v3YADT.js
playground/static/assets/ResetPassword-Wa4fRki_.js
playground/static/assets/RunDetail-j8lIwTuu.js
playground/static/assets/RunDetailDrawer-BZFNOkGB.js
playground/static/assets/RunsList-BQ_LU4yG.js
playground/static/assets/Setup-CIJI5Fu3.js
playground/static/assets/ShadowReport-DtzLz4XL.js
playground/static/assets/Signup-YkjIKKvz.js
playground/static/assets/Stress-5aWAznMM.js
playground/static/assets/ToolDetail-Dby7wMOt.js
playground/static/assets/ToolsList-D_k_ezRg.js
playground/static/assets/VerifyEmail-B2iFHmQX.js
playground/static/assets/alert-circle-D40HedAC.js
playground/static/assets/alert-triangle-Di8rb6j3.js
playground/static/assets/arrow-left-DSTZrAQG.js
playground/static/assets/arrow-right-DRp5wDox.js
playground/static/assets/bot-Dtlizwki.js
playground/static/assets/brain-Dpc2CXnS.js
playground/static/assets/check-CKXHlu-g.js
playground/static/assets/check-circle-2-C9jh9-Hy.js
playground/static/assets/check-circle-CsuUf47m.js
playground/static/assets/chevron-down-DJa77Zlw.js
playground/static/assets/client-Ds1NI9Ml.js
playground/static/assets/clock-DxCZeo6y.js
playground/static/assets/cloud-DxYo6AKw.js
playground/static/assets/copy-sfPvgyKG.js
playground/static/assets/database-CtNMbA3w.js
playground/static/assets/dist-BFB6Db1n.js
playground/static/assets/download-PrGIPWmz.js
playground/static/assets/file-text-DkLy_0e-.js
playground/static/assets/index-BceBWH5N.js
playground/static/assets/index-C2gWom57.css
playground/static/assets/jsx-runtime-BU6wmAC3.js
playground/static/assets/key-round-CeoR64ls.js
playground/static/assets/layers-DRmaW2jk.js
playground/static/assets/loader-2-YYv6562t.js
playground/static/assets/mail-Du_6RZu_.js
playground/static/assets/pencil-pWzohLYg.js
playground/static/assets/phone-uQT-EqcZ.js
playground/static/assets/play-DOuRLuVP.js
playground/static/assets/play-circle-wxLtx5O5.js
playground/static/assets/plus-cmyH4Byv.js
playground/static/assets/providerIntegration-DXgNjq0P.js
playground/static/assets/refresh-cw-DudUwkbR.js
playground/static/assets/rocket-Di5_QRUd.js
playground/static/assets/save-Cvn2GMXD.js
playground/static/assets/search-9-QTba10.js
playground/static/assets/send-lJ3Z3WXB.js
playground/static/assets/shield-alert-BBItAryi.js
playground/static/assets/shield-off-Cp6IY4Qa.js
playground/static/assets/sparkles-DZ63NdDt.js
playground/static/assets/trash-2-DQcluSqt.js
playground/static/assets/trending-up-nkcBcxd0.js
playground/static/assets/useDecisionEvents-BzFpflSQ.js
playground/static/assets/user-plus-BdbvXySN.js
playground/static/assets/x-circle-Buc7RYgn.js
playground/static/assets/zap-ByzA2Mn5.js
salus/__init__.py
salus/action_fingerprint.py
salus/action_gateway.py
salus/actions.py
salus/agent_protocol.py
salus/agentdojo_benchmark.py
salus/agentdojo_defense.py
salus/api.py
salus/budget.py
salus/carbench_runtime.py
salus/cloud_sdk.py
salus/control_plane.py
salus/controller_runtime.py
salus/conversation.py
salus/decision_envelope.py
salus/defaults.py
salus/evidence_compat.py
salus/features.py
salus/finish_attestation.py
salus/logging_utils.py
salus/mantra_guard.py
salus/mcpsafety_guard.py
salus/odcv_runtime_guard.py
salus/profiles.py
salus/realtime.py
salus/risk.py
salus/runtime_advice.py
salus/session.py
salus/trace_types.py
salus/types.py
salus/adapters/__init__.py
salus/adapters/autogen.py
salus/adapters/base.py
salus/adapters/crewai.py
salus/adapters/langchain.py
salus/adapters/langchain_deep.py
salus/adapters/langgraph.py
salus/adapters/openai_responses.py
salus/analysis/__init__.py
salus/analysis/clustering.py
salus/analysis/conversation_audit.py
salus/analysis/divergence.py
salus/analysis/minimization.py
salus/analysis/regression.py
salus/analysis/root_cause.py
salus/approvals/__init__.py
salus/approvals/callback.py
salus/approvals/delivery.py
salus/approvals/engine.py
salus/assertions/__init__.py
salus/assertions/base.py
salus/assertions/builtins.py
salus/assistance/__init__.py
salus/assistance/pipeline.py
salus/assistance/plugins.py
salus/assistance/types.py
salus/benchmarks/__init__.py
salus/benchmarks/adapters.py
salus/benchmarks/architecture_runner.py
salus/benchmarks/automation.py
salus/benchmarks/models.py
salus/benchmarks/nl_policy_converter.py
salus/benchmarks/service.py
salus/benchmarks/tau2_adapter.py
salus/cache/__init__.py
salus/cache/keys.py
salus/cache/provenance.py
salus/cache/sqlite_cache.py
salus/cache/store.py
salus/cache/tool_cache.py
salus/cache/tool_cache_config.py
salus/cache/tool_cache_key.py
salus/capture/__init__.py
salus/capture/decorator.py
salus/capture/registry.py
salus/capture/wrapper.py
salus/chaos/__init__.py
salus/chaos/engine.py
salus/chaos/faults.py
salus/chaos/injectors.py
salus/chaos/scenarios.py
salus/ci/__init__.py
salus/ci/gates.py
salus/ci/runner.py
salus/claims/__init__.py
salus/claims/extraction.py
salus/claims/grounding.py
salus/cli/__init__.py
salus/cli/agent_pack_cmd.py
salus/cli/agent_serve_cmd.py
salus/cli/approve_cmd.py
salus/cli/audit_cmd.py
salus/cli/auditpack_cmd.py
salus/cli/benchmark_cmd.py
salus/cli/cache_cmd.py
salus/cli/ci_cmd.py
salus/cli/cloud_export.py
salus/cli/compliance_cmd.py
salus/cli/contracts_cmd.py
salus/cli/counterfactual_cmd.py
salus/cli/dashboard_cmd.py
salus/cli/decision_report_cmd.py
salus/cli/demo_cmd.py
salus/cli/eval_cmd.py
salus/cli/evalgen_cmd.py
salus/cli/evalrun_cmd.py
salus/cli/evidence_cmd.py
salus/cli/explain_cmd.py
salus/cli/gold_cmd.py
salus/cli/guardrails_cmd.py
salus/cli/init_cmd.py
salus/cli/local_config.py
salus/cli/main.py
salus/cli/mutation_safety_cmd.py
salus/cli/policy_cmd.py
salus/cli/promote_cmd.py
salus/cli/purge_cmd.py
salus/cli/registry_cmd.py
salus/cli/replay_cmd.py
salus/cli/replay_v2_cmd.py
salus/cli/report_cmd.py
salus/cli/serve_cmd.py
salus/cli/shadow_report_cmd.py
salus/cli/simulate_cmd.py
salus/cli/suggest_cmd.py
salus/cli/usage_cmd.py
salus/cli/verify_cmd.py
salus/coding/__init__.py
salus/coding/constraints.py
salus/coding/dependency_delta.py
salus/coding/diff_scanner.py
salus/coding/enforcer.py
salus/coding/normalizer.py
salus/coding/paths.py
salus/coding/repo_snapshot.py
salus/coding/transaction.py
salus/coding/types.py
salus/coding/verification.py
salus/commits/__init__.py
salus/commits/preflight.py
salus/completion/__init__.py
salus/completion/claim_criteria.py
salus/completion/context.py
salus/completion/engine.py
salus/completion/finish.py
salus/completion/predicates.py
salus/completion/proofs.py
salus/completion/registry.py
salus/completion/types.py
salus/compliance/__init__.py
salus/compliance/events.py
salus/compliance/llm_disclosure.py
salus/compliance/redaction.py
salus/compliance/reports.py
salus/compliance/retention.py
salus/constraints/__init__.py
salus/contracts/__init__.py
salus/contracts/engine.py
salus/contracts/loader.py
salus/contracts/spec.py
salus/core/__init__.py
salus/core/config.py
salus/core/context.py
salus/core/controller.py
salus/core/errors.py
salus/core/replay.py
salus/core/scenario.py
salus/core/spec.py
salus/core/tracer.py
salus/core/versioning.py
salus/core/wrapper.py
salus/dashboard/__init__.py
salus/dashboard/server.py
salus/dashboard/studio_adapters.py
salus/dashboard/studio_jobs.py
salus/debug/__init__.py
salus/debug/fix_hints.py
salus/debug/transcript.py
salus/demo/__init__.py
salus/demo/data_gen.py
salus/demo/public_repo_catalog.py
salus/demo/public_repo_react_agent.py
salus/demo/replay_comparison.py
salus/demo/agents/__init__.py
salus/demo/agents/coding_agent.py
salus/demo/agents/support_agent.py
salus/demo/agents/voice_agent.py
salus/demo/policies/engineering_v1.yaml
salus/demo/policies/support_commerce_v1.yaml
salus/demo/policies/support_commerce_v2.yaml
salus/demo/policies/voice_v1.yaml
salus/demo/reports/v1_vs_v2_comparison.json
salus/demo/sandbox/__init__.py
salus/demo/sandbox/github_client.py
salus/demo/sandbox/shopify_client.py
salus/demo/sandbox/stripe_client.py
salus/demo/sandbox/tool_runner.py
salus/demo/sandbox/zendesk_client.py
salus/demo/scenarios/__init__.py
salus/demo/scenarios/hero_run_1.py
salus/demo/scenarios/hero_run_2.py
salus/demo/scenarios/hero_run_3.py
salus/demo/scenarios/hero_run_4.py
salus/demo/scenarios/hero_run_5.py
salus/enforcement/__init__.py
salus/enforcement/bypass.py
salus/enforcement/circuit_breaker.py
salus/enforcement/decision.py
salus/enforcement/decision_event.py
salus/enforcement/effect_class.py
salus/enforcement/effect_suggestions.py
salus/enforcement/enforcer.py
salus/enforcement/engine.py
salus/enforcement/pipeline.py
salus/enforcement/preflight.py
salus/enforcement/schema_validation.py
salus/enforcement/steps/__init__.py
salus/enforcement/steps/coding.py
salus/enforcement/steps/confirmation.py
salus/enforcement/steps/contract.py
salus/enforcement/steps/conversation.py
salus/enforcement/steps/default_allow.py
salus/enforcement/steps/evidence.py
salus/enforcement/steps/evidence_query.py
salus/enforcement/steps/guardrails.py
salus/enforcement/steps/policy.py
salus/enforcement/steps/postcondition.py
salus/enforcement/steps/preserve_policy.py
salus/enforcement/steps/quota.py
salus/enforcement/steps/session_integrity.py
salus/enforcement/steps/temporal.py
salus/enforcement/steps/voice.py
salus/enforcement/steps/workflow.py
salus/enforcement/stores/__init__.py
salus/enforcement/stores/protocols.py
salus/enforcement/stores/types.py
salus/enforcement/stores/postgres/__init__.py
salus/enforcement/stores/postgres/coding.py
salus/enforcement/stores/postgres/contracts.py
salus/enforcement/stores/postgres/conversation.py
salus/enforcement/stores/postgres/evidence.py
salus/enforcement/stores/postgres/guardrails.py
salus/enforcement/stores/postgres/kill_switch.py
salus/enforcement/stores/postgres/temporal.py
salus/enforcement/stores/postgres/workflow.py
salus/evals/__init__.py
salus/evals/autogen.py
salus/evals/case_schema.py
salus/evals/cli.py
salus/evals/comparison.py
salus/evals/constraint_generator.py
salus/evals/dataset.py
salus/evals/gold_dataset.py
salus/evals/gold_eval_runner.py
salus/evals/gold_runner.py
salus/evals/gold_spec.py
salus/evals/metrics.py
salus/evals/mutation_generator.py
salus/evals/prompt_generator.py
salus/evals/recovery_tests.py
salus/evals/runner.py
salus/evals/safety_pack.py
salus/evals/trace_eval_runner.py
salus/evals/trace_graders.py
salus/evals/trace_metrics.py
salus/evals/trace_oracle.py
salus/evals/trace_runner.py
salus/evals/trace_spec.py
salus/events/__init__.py
salus/events/correlation.py
salus/events/schema.py
salus/events/store.py
salus/events/streaming.py
salus/evidence/__init__.py
salus/evidence/admissibility.py
salus/evidence/carryover.py
salus/evidence/contradictions.py
salus/evidence/conversation.py
salus/evidence/conversation_store.py
salus/evidence/dependencies.py
salus/evidence/invalidation.py
salus/evidence/strength.py
salus/evidence/tool_extraction.py
salus/evidence/types_v2.py
salus/exports/__init__.py
salus/exports/otlp.py
salus/exports/prometheus.py
salus/exports/webhook.py
salus/extraction/__init__.py
salus/extraction/entity_store.py
salus/extraction/field_provenance.py
salus/extraction/invariants.py
salus/extraction/repair.py
salus/extraction/text_scan.py
salus/extraction/turn_extractor.py
salus/extraction/turn_fallback.py
salus/extraction/turn_model_caller.py
salus/extraction/turn_prompt.py
salus/extraction/turn_schema.py
salus/feedback/__init__.py
salus/feedback/engine.py
salus/feedback/labels.py
salus/feedback/queue.py
salus/generation/__init__.py
salus/generation/generator.py
salus/generation/patterns.py
salus/generation/templates.py
salus/guardrails/__init__.py
salus/guardrails/circuit_breaker.py
salus/guardrails/content_guard.py
salus/guardrails/cost_tracker.py
salus/guardrails/engine.py
salus/guardrails/injection_guard.py
salus/guardrails/intent_adjudicator.py
salus/guardrails/pii_guard.py
salus/guardrails/rate_limiter.py
salus/identity/__init__.py
salus/identity/roles.py
salus/integrations/__init__.py
salus/integrations/anthropic.py
salus/integrations/autogen.py
salus/integrations/base.py
salus/integrations/crewai.py
salus/integrations/gemini.py
salus/integrations/golden_path.py
salus/integrations/langchain.py
salus/integrations/langgraph.py
salus/integrations/openai.py
salus/integrations/self_check.py
salus/integrations/smolagents.py
salus/integrity/__init__.py
salus/integrity/claim_guard.py
salus/integrity/claim_rules.py
salus/integrity/completion_verifier.py
salus/integrity/confirmation_protocol.py
salus/integrity/conversation_extractor.py
salus/integrity/conversation_extractor_runner.py
salus/integrity/conversation_model_callers.py
salus/integrity/conversation_runtime.py
salus/integrity/registry.py
salus/integrity/risk_tag_policy.py
salus/integrity/risk_tag_schema.json
salus/integrity/risk_tags.py
salus/integrity/risk_tiering.py
salus/integrity/spans.py
salus/integrity/verification.py
salus/invariants/__init__.py
salus/invariants/base.py
salus/invariants/contract.py
salus/invariants/engine.py
salus/invariants/results.py
salus/invariants/catalog/__init__.py
salus/invariants/catalog/budgets.py
salus/invariants/catalog/channel_integrity.py
salus/invariants/catalog/evidence_scope.py
salus/invariants/catalog/idempotency.py
salus/invariants/catalog/tool_schema.py
salus/memory/__init__.py
salus/memory/store.py
salus/metering/__init__.py
salus/metering/export.py
salus/metering/licensing.py
salus/metering/persistent.py
salus/metering/provider.py
salus/metrics/__init__.py
salus/metrics/base.py
salus/metrics/engine.py
salus/metrics/results.py
salus/metrics/catalog/__init__.py
salus/metrics/catalog/citation.py
salus/metrics/catalog/format.py
salus/metrics/catalog/retrieval_overlap.py
salus/metrics/catalog/safety.py
salus/metrics/catalog/structural.py
salus/modes/__init__.py
salus/modes/ci_reliability.py
salus/modes/deep_stress.py
salus/modes/defaults.py
salus/modes/runtime_gate.py
salus/modes/types.py
salus/mutations/__init__.py
salus/mutations/base.py
salus/mutations/engine.py
salus/mutations/intelligent.py
salus/mutations/taxonomy.py
salus/mutations/catalog/__init__.py
salus/mutations/catalog/augmentations.py
salus/mutations/catalog/encoding.py
salus/mutations/catalog/format.py
salus/mutations/catalog/injection.py
salus/mutations/catalog/lexical.py
salus/mutations/catalog/unicode.py
salus/observability/__init__.py
salus/observability/alerts.py
salus/observability/decision_alerts.py
salus/observability/decision_fanout.py
salus/observability/decision_otel.py
salus/observability/hooks.py
salus/observability/tracer.py
salus/odcv/__init__.py
salus/odcv/cli.py
salus/odcv/counterfactual.py
salus/odcv/evaluator.py
salus/odcv/judge.py
salus/odcv/loader.py
salus/odcv/policy_extractor.py
salus/odcv/policy_generator.py
salus/odcv/real_evaluator.py
salus/odcv/results.py
salus/odcv/types.py
salus/osworld/__init__.py
salus/osworld/action_parser.py
salus/osworld/auto_policy.py
salus/osworld/benchmark_runner.py
salus/osworld/evidence_tracker.py
salus/osworld/policy_adapter.py
salus/osworld/salus_agent.py
salus/osworld/policies/behavioral.json
salus/osworld/policies/global_safety.json
salus/osworld/policies/domains/chrome.json
salus/osworld/policies/domains/gimp.json
salus/osworld/policies/domains/libreoffice.json
salus/osworld/policies/domains/multi_app.json
salus/osworld/policies/domains/os_utilities.json
salus/osworld/policies/domains/terminal.json
salus/osworld/policies/domains/thunderbird.json
salus/osworld/policies/domains/vlc.json
salus/osworld/policies/domains/vscode.json
salus/output/__init__.py
salus/policy/__init__.py
salus/policy/auto_policy.py
salus/policy/bundle.py
salus/policy/classification.py
salus/policy/cloud_sync.py
salus/policy/config.py
salus/policy/constants.py
salus/policy/context_aware_generator.py
salus/policy/counterfactual.py
salus/policy/decision.py
salus/policy/dsl.py
salus/policy/dsl_v2.py
salus/policy/entities.py
salus/policy/evaluator.py
salus/policy/evidence.py
salus/policy/evidence_policy.py
salus/policy/extremity.py
salus/policy/facts.py
salus/policy/flat_rules.py
salus/policy/idempotency.py
salus/policy/macros.py
salus/policy/nl_pipeline.py
salus/policy/nl_to_policy.py
salus/policy/permissions.py
salus/policy/postconditions.py
salus/policy/project_ingestor.py
salus/policy/promotion.py
salus/policy/promotion_log.py
salus/policy/registry.py
salus/policy/registry_store.py
salus/policy/schema.json
salus/policy/semantic_diff.py
salus/policy/shadow.py
salus/policy/simulator.py
salus/policy/storage_policy.py
salus/policy/templates.py
salus/policy/types.py
salus/policy/validator.py
salus/policy_intelligence/__init__.py
salus/policy_intelligence/judges.py
salus/policy_intelligence/rag.py
salus/preset_packs/__init__.py
salus/preset_packs/coding_guard.py
salus/preset_packs/transaction_guard.py
salus/preset_packs/autonomy_guard/__init__.py
salus/preset_packs/autonomy_guard/branching.py
salus/preset_packs/autonomy_guard/checkpoints.py
salus/preset_packs/autonomy_guard/critical_steps.py
salus/preset_packs/autonomy_guard/health.py
salus/preset_packs/autonomy_guard/mutations.py
salus/preset_packs/autonomy_guard/operations.py
salus/preset_packs/autonomy_guard/pack.py
salus/preset_packs/autonomy_guard/recovery.py
salus/preset_packs/workflow_guard/__init__.py
salus/preset_packs/workflow_guard/facts.py
salus/preset_packs/workflow_guard/pack.py
salus/preset_packs/workflow_guard/postconditions.py
salus/preset_packs/workflow_guard/rules.py
salus/preset_packs/workflow_guard/ui.py
salus/pricing/__init__.py
salus/privacy/__init__.py
salus/privacy/entity_policy.py
salus/privacy/model_detector.py
salus/privacy/policy_matrix.py
salus/privacy/redaction.py
salus/privacy/repeat_guard.py
salus/privacy/storage_filter.py
salus/privacy/visibility_filter.py
salus/properties/__init__.py
salus/properties/builtins.py
salus/properties/checkers.py
salus/properties/temporal.py
salus/quotas/__init__.py
salus/recovery/__init__.py
salus/recovery/compensation.py
salus/reducer/__init__.py
salus/reducer/core.py
salus/reducer/session_state.py
salus/repair/__init__.py
salus/repair/budget.py
salus/repair/ephemeral.py
salus/repair/fanout_detector.py
salus/repair/idempotency.py
salus/repair/instruction.py
salus/repair/loop.py
salus/repair/mutation_gate.py
salus/repair/preflight.py
salus/repair/strategy_shift.py
salus/repair/violation_category.py
salus/repair_v2/__init__.py
salus/repair_v2/adapters.py
salus/repair_v2/budget.py
salus/repair_v2/check.py
salus/repair_v2/envelope.py
salus/repair_v2/events.py
salus/repair_v2/loop.py
salus/repair_v2/policy.py
salus/repair_v2/recovery_hint.py
salus/replay/__init__.py
salus/replay/bundle.py
salus/replay/counterfactual.py
salus/replay/decision_diff.py
salus/replay/determinism.py
salus/replay/diff.py
salus/replay/engine.py
salus/replay/engine_v2.py
salus/replay/player.py
salus/replay/policy_replay.py
salus/replay/recorder.py
salus/replay/trace_format.py
salus/replay/trace_store.py
salus/reporting/__init__.py
salus/reporting/artifacts.py
salus/reporting/fleet.py
salus/reporting/formatter.py
salus/reporting/summary.py
salus/reporting/violation.py
salus/reports/__init__.py
salus/reports/decision_report.py
salus/resources/__init__.py
salus/resources/ref.py
salus/response_quality/__init__.py
salus/response_quality/compiler.py
salus/response_quality/completeness.py
salus/response_quality/detectors.py
salus/response_quality/enforcer.py
salus/response_quality/grounding.py
salus/response_quality/hybrid.py
salus/response_quality/origin.py
salus/response_quality/schema.json
salus/response_quality/types.py
salus/response_quality/default_policies/base.yaml
salus/runtime/__init__.py
salus/runtime/_legacy_compat.py
salus/runtime/budgets.py
salus/runtime/context.py
salus/runtime/context_store.py
salus/runtime/default_domain_manifest_v2.yaml
salus/runtime/default_runtime_manifest.yaml
salus/runtime/discriminating_read.py
salus/runtime/domain_manifest_v2.py
salus/runtime/domain_manifest_v3.py
salus/runtime/domain_plugins.py
salus/runtime/errors.py
salus/runtime/events.py
salus/runtime/gateway_tool_runner.py
salus/runtime/idempotency.py
salus/runtime/ir.py
salus/runtime/kernel.py
salus/runtime/manifest.py
salus/runtime/manifest_policy_kernel.py
salus/runtime/mutation_gate.py
salus/runtime/onboarding.py
salus/runtime/patch.py
salus/runtime/preflight.py
salus/runtime/reconciliation.py
salus/runtime/run_context.py
salus/runtime/run_events.py
salus/runtime/runner.py
salus/runtime/runtime.py
salus/runtime/tool_runtime.py
salus/runtime/transaction_lock.py
salus/runtime/types.py
salus/runtime/adapters/__init__.py
salus/runtime/adapters/llm_adapter.py
salus/runtime/adapters/memory_adapter.py
salus/runtime/adapters/retrieval_adapter.py
salus/runtime/adapters/tool_adapter.py
salus/runtime/kernel_steps/__init__.py
salus/runtime/kernel_steps/_base.py
salus/runtime/kernel_steps/_pipeline_adapter.py
salus/runtime/kernel_steps/controller.py
salus/runtime/kernel_steps/deny_debt.py
salus/runtime/kernel_steps/mutation_gate.py
salus/runtime/kernel_steps/sidecar_feedback.py
salus/runtime/kernel_steps/smart_repair.py
salus/server/__init__.py
salus/server/local_app.py
salus/server/run_store.py
salus/server/scenarios.py
salus/server/static_assets.py
salus/server/workspace_defaults.py
salus/sessions/__init__.py
salus/sessions/context.py
salus/sessions/store.py
salus/sidecar_feedback/__init__.py
salus/sidecar_feedback/engine.py
salus/sidecar_feedback/policy.py
salus/sidecar_feedback/prompts.py
salus/sidecar_feedback/types.py
salus/signals/__init__.py
salus/signals/fragility.py
salus/smart_repair/__init__.py
salus/smart_repair/engine.py
salus/smart_repair/policy.py
salus/smart_repair/prompts.py
salus/smart_repair/types.py
salus/st_webagentbench/__init__.py
salus/st_webagentbench/benchmark_runner.py
salus/st_webagentbench/evidence_tracker.py
salus/st_webagentbench/experiment.py
salus/st_webagentbench/policy_adapter.py
salus/st_webagentbench/salus_agent.py
salus/storage/__init__.py
salus/storage/backend.py
salus/storage/encryption.py
salus/storage/http_sink.py
salus/storage/retention.py
salus/storage/sink.py
salus/storage/sqlite_retry.py
salus/storage/sqlite_sink.py
salus/storage/workspace_query.py
salus/stress/__init__.py
salus/stress/attack_families.py
salus/subjects/__init__.py
salus/subjects/events.py
salus/subjects/resolver.py
salus/subjects/rule.py
salus/tau2/__init__.py
salus/tau2/airline_policy.py
salus/tau2/argument_verifier.py
salus/tau2/benchmark_viewer.py
salus/tau2/evidence_graph.py
salus/tau2/evidence_registry.py
salus/tau2/experiment.py
salus/tau2/generic_authorizer.py
salus/tau2/guardrail_profiles.py
salus/tau2/intent_splitter.py
salus/tau2/llm_policy_extractor.py
salus/tau2/policy_loader.py
salus/tau2/reference_resolution.py
salus/tau2/salus_policy.py
salus/tau2/shared_runtime_bridge.py
salus/tau2/manifests/airline_shared_runtime.yaml
salus/tau2/manifests/retail_shared_runtime.yaml
salus/tau2/manifests/telecom_shared_runtime.yaml
salus/tau2/policies/airline_policy.json
salus/tau2/policies/retail_policy.json
salus/tau2/policies/telecom_policy.json
salus/telemetry/__init__.py
salus/telemetry/collector.py
salus/temporal/__init__.py
salus/temporal/constraints.py
salus/temporal/enforcer.py
salus/tenancy/__init__.py
salus/tenancy/context.py
salus/tenancy/isolation.py
salus/tenancy/usage.py
salus/testing/__init__.py
salus/testing/report.py
salus/testing/scenarios.py
salus/testing/stress.py
salus/tools/__init__.py
salus/tools/decorator.py
salus/tools/exposure.py
salus/tools/policy.py
salus/tools/registry.py
salus/tools/replay.py
salus/tools/tracer.py
salus/trace/__init__.py
salus/trace/run_graph.py
salus/trace/span_model.py
salus/traces/__init__.py
salus/traces/decision_trace.py
salus/transitions/__init__.py
salus/transitions/cached_reducer.py
salus/transitions/reducer.py
salus/transitions/runtime.py
salus/transitions/types.py
salus/usage/__init__.py
salus/usage/billing.py
salus/usage/queries.py
salus/usage/store.py
salus/utils/__init__.py
salus/utils/hashing.py
salus/utils/timing.py
salus/verification/__init__.py
salus/verification/llm_grounding.py
salus/verification/prompts.py
salus/verification/spec.py
salus/verification/tool_verify.py
salus/verification/verifier.py
salus/voice/__init__.py
salus/voice/constraints.py
salus/voice/enforcer.py
salus/voice/pending_actions.py
salus/voice/speech_guard.py
salus/voice/stream_proxy.py
salus/voice/templates/__init__.py
salus/voice/templates/booking-policy.yaml
salus/voice/templates/crm-update-policy.yaml
salus/voice/templates/healthcare-intake-policy.yaml
salus/voice/templates/payment-policy.yaml
salus/voice/templates/refund-policy.yaml
salus/voice/templates/support-escalation-policy.yaml
salus/workflow/__init__.py
salus/workflow/constraints.py
salus/workflow/enforcer.py
salus_ai.egg-info/PKG-INFO
salus_ai.egg-info/SOURCES.txt
salus_ai.egg-info/dependency_links.txt
salus_ai.egg-info/entry_points.txt
salus_ai.egg-info/requires.txt
salus_ai.egg-info/top_level.txt
tests/test_action_gateway_conversation_evidence.py
tests/test_action_gateway_conversation_integrity.py
tests/test_action_gateway_deterministic_policy.py
tests/test_action_gateway_enforce_comprehensive.py
tests/test_action_gateway_evidence_cache_freshness.py
tests/test_action_gateway_evidence_cache_limit.py
tests/test_action_gateway_evidence_extraction.py
tests/test_action_gateway_policy_stress_helpers.py
tests/test_action_gateway_response_quality.py
tests/test_action_gateway_risk_tags.py
tests/test_action_gateway_schema.py
tests/test_action_gateway_studio_helpers.py
tests/test_action_gateway_tool_cache_defaults.py
tests/test_action_gateway_transitions.py
tests/test_action_gateway_workflow_integrity.py
tests/test_action_request_validation.py
tests/test_action_result_validation.py
tests/test_actions_evaluate_endpoint.py
tests/test_active_policy_merge.py
tests/test_adapter_block_contract.py
tests/test_adapter_contract.py
tests/test_adapter_gateway.py
tests/test_adapter_public_api.py
tests/test_adapter_version_compat.py
tests/test_agent_pack.py
tests/test_agent_serve_approvals.py
tests/test_agentdojo_defense.py
tests/test_api_key_expiry.py
tests/test_api_key_hashing.py
tests/test_api_key_rotation_atomic.py
tests/test_approval_engine.py
tests/test_approval_engine_storage.py
tests/test_approval_escalation_chain.py
tests/test_approval_polling_dos.py
tests/test_approvals_callback.py
tests/test_backup_restore_drill.py
tests/test_basic.py
tests/test_benchmark_architecture_runner.py
tests/test_budget_atomic.py
tests/test_bypass_tokens.py
tests/test_cache.py
tests/test_cache_keys.py
tests/test_cached_reducer.py
tests/test_carbench_runtime.py
tests/test_ci_quality_gates.py
tests/test_circuit_breaker.py
tests/test_claim_guard.py
tests/test_claims_grounding.py
tests/test_cli_high_impact_parity.py
tests/test_cloud_deploy_contract.py
tests/test_cloud_sdk_facade.py
tests/test_coding_agent.py
tests/test_coding_enforcer.py
tests/test_coding_hardening_v1.py
tests/test_commitment_gate_toggle.py
tests/test_compliance_disclosure.py
tests/test_config_repair_feedback.py
tests/test_confirmation_protocol.py
tests/test_confirmation_strict_binding.py
tests/test_context_aware_policy_gen.py
tests/test_contracts.py
tests/test_control_plane.py
tests/test_control_plane_extraction.py
tests/test_control_plane_identity.py
tests/test_control_plane_kernel_new_steps.py
tests/test_control_plane_subject_proofs.py
tests/test_control_plane_subject_proofs_e2e.py
tests/test_controller_observe_extraction.py
tests/test_controller_runtime_loop.py
tests/test_conversation.py
tests/test_conversation_audit.py
tests/test_conversation_evidence_extraction.py
tests/test_conversation_extractor.py
tests/test_conversation_extractor_runner.py
tests/test_conversation_extractor_strategy_wiring.py
tests/test_conversation_model_callers.py
tests/test_conversation_store.py
tests/test_cumulative_limit_period.py
tests/test_dashboard_cmd_hardening.py
tests/test_dashboard_generation_context.py
tests/test_dashboard_labs_endpoints.py
tests/test_dashboard_sdk_logs.py
tests/test_dashboard_studio_endpoints.py
tests/test_dashboard_studio_jobs.py
tests/test_data_gen.py
tests/test_decision_alerts.py
tests/test_decision_envelope.py
tests/test_decision_event_emit_parity.py
tests/test_decision_event_v2.py
tests/test_decision_events.py
tests/test_decision_fanout.py
tests/test_decision_otel.py
tests/test_decision_report_cmd.py
tests/test_demo_public_api.py
tests/test_demo_support_agent.py
tests/test_deploy_config_hardening.py
tests/test_deterministic_policy_evaluator.py
tests/test_docs_link_integrity.py
tests/test_doctor_cloud_readiness.py
tests/test_domain_manifest_v2.py
tests/test_domain_manifest_v3.py
tests/test_dsl_v2_grounding_predicate.py
tests/test_dsl_v2_regex_safety.py
tests/test_effect_class.py
tests/test_effect_suggestions.py
tests/test_encryption.py
tests/test_enforce.py
tests/test_enforce_coding.py
tests/test_enforce_temporal.py
tests/test_enforce_transition_resilience.py
tests/test_enforce_voice.py
tests/test_enforcement_engine.py
tests/test_enforcement_guardrails.py
tests/test_enforcement_pipeline.py
tests/test_enforcement_routing.py
tests/test_enforcement_steps.py
tests/test_enforcement_temporal_window.py
tests/test_enforcement_workflow.py
tests/test_enforcer_protocol.py
tests/test_entity_store.py
tests/test_evals.py
tests/test_event_streaming.py
tests/test_evidence.py
tests/test_evidence_policy.py
tests/test_evidence_query_engine.py
tests/test_exports.py
tests/test_field_provenance.py
tests/test_finish_attestation.py
tests/test_flat_rules_canonical.py
tests/test_frontend_operator_failure_states.py
tests/test_frontend_ux_accessibility.py
tests/test_gateway_active_features.py
tests/test_gateway_cloud_emitter.py
tests/test_gateway_decision_metrics.py
tests/test_guardrails_wiring.py
tests/test_hardening_batch4.py
tests/test_heading5_eval_stress.py
tests/test_heading6_security.py
tests/test_hero_runs.py
tests/test_http_sink_comprehensive.py
tests/test_init_cloud.py
tests/test_init_cmd.py
tests/test_integration_base_error_handling.py
tests/test_integration_bootstrap_openai.py
tests/test_integration_bootstrap_platforms.py
tests/test_integration_constructor_defaults.py
tests/test_integration_manual_tool_execution_hints.py
tests/test_integration_self_check.py
tests/test_integrations_base_session_id.py
tests/test_integrations_guarded_streaming.py
tests/test_integrations_rejection_feedback.py
tests/test_integrations_smoke.py
tests/test_integrations_stream_policy.py
tests/test_intent_adjudicator.py
tests/test_intent_confirmation.py
tests/test_kernel_all_steps.py
tests/test_kernel_step_base.py
tests/test_kernel_step_controller.py
tests/test_kernel_step_deny_debt.py
tests/test_kernel_step_mutation_gate.py
tests/test_kernel_step_sidecar_feedback.py
tests/test_kernel_step_smart_repair.py
tests/test_langchain_deep_integration.py
tests/test_lkg_fallback.py
tests/test_llm_verification.py
tests/test_local_server_contract.py
tests/test_logging_standardization.py
tests/test_manifest_policy_kernel_flat_rules.py
tests/test_manifest_v2_deprecation.py
tests/test_mantra_guard.py
tests/test_mcpsafety_guard.py
tests/test_metering_licensing.py
tests/test_metering_provider.py
tests/test_middleware_hsts_headers.py
tests/test_minimal_evaluator.py
tests/test_minimal_evaluator_invariant.py
tests/test_odcv_forbidden_pattern_failclosed.py
tests/test_odcv_loader_hardening.py
tests/test_odcv_module.py
tests/test_odcv_runtime_guard.py
tests/test_openai_responses_adapter.py
tests/test_openai_transition_adapters.py
tests/test_origin_attribution.py
tests/test_osworld_integration.py
tests/test_output_scorer.py
tests/test_output_scoring_api.py
tests/test_pipeline_adapter.py
tests/test_pipeline_full_evaluation.py
tests/test_playground.py
tests/test_playground_auth_helpers.py
tests/test_playground_auth_workspace.py
tests/test_playground_export_diff.py
tests/test_playground_redaction.py
tests/test_playground_route_contracts.py
tests/test_playground_run_helpers.py
tests/test_policy_cloud_sync.py
tests/test_policy_decision.py
tests/test_policy_engine_fail_closed.py
tests/test_policy_fail_closed.py
tests/test_policy_intelligence_judges.py
tests/test_policy_intelligence_rag.py
tests/test_policy_permissions.py
tests/test_policy_permissions_comprehensive.py
tests/test_policy_revision.py
tests/test_policy_router.py
tests/test_policy_validator.py
tests/test_postcondition.py
tests/test_postcondition_extensions.py
tests/test_preset_pack_registry.py
tests/test_privacy_entity_policy.py
tests/test_production_defaults.py
tests/test_production_hardening_batch6.py
tests/test_promote.py
tests/test_properties_eval.py
tests/test_provider_parity.py
tests/test_public_repo_react_agent_demo.py
tests/test_recovery_hint_unified.py
tests/test_redaction.py
tests/test_redaction_field_vocab.py
tests/test_reducer_metadata.py
tests/test_remote_ingest.py
tests/test_repair.py
tests/test_repair_agent_integration.py
tests/test_repair_budget_extended.py
tests/test_repair_ephemeral.py
tests/test_repair_idempotency.py
tests/test_replay_comparison.py
tests/test_replay_executor.py
tests/test_replay_public_api.py
tests/test_reporting.py
tests/test_resource_ref.py
tests/test_response_quality.py
tests/test_retention.py
tests/test_retry_budget_server_side.py
tests/test_risk_level_unified.py
tests/test_risk_tag_policy.py
tests/test_risk_tags.py
tests/test_run_graph_artifact.py
tests/test_run_sleep_matrix.py
tests/test_runtime_completion_gate.py
tests/test_runtime_errors.py
tests/test_runtime_heading3.py
tests/test_runtime_ir_kernel.py
tests/test_runtime_legacy_compat.py
tests/test_runtime_mutation_gate.py
tests/test_runtime_onboarding.py
tests/test_runtime_tool_runtime.py
tests/test_runtime_types.py
tests/test_sandbox_clients.py
tests/test_scenario.py
tests/test_scoped_fanout_binding.py
tests/test_sdk_server_import_contract.py
tests/test_security_policy_gates.py
tests/test_session_context.py
tests/test_session_context_workflow_state.py
tests/test_session_multiturn.py
tests/test_session_resolution_fallback.py
tests/test_session_runtime_surface.py
tests/test_session_subject_prereq.py
tests/test_shipcheck_cmd.py
tests/test_side_effect_classification.py
tests/test_sidecar_feedback.py
tests/test_smart_repair.py
tests/test_spec.py
tests/test_sqlite_error_narrowing.py
tests/test_sqlite_retry.py
tests/test_sqlite_sink_compliance_reraise.py
tests/test_sqlite_sink_transitions.py
tests/test_ssrf_guard_failclosed.py
tests/test_st_webagentbench_experiment.py
tests/test_st_webagentbench_integration.py
tests/test_storage_backend.py
tests/test_storage_backend_concurrent.py
tests/test_storage_sink_hardening.py
tests/test_stress_mutation_runner.py
tests/test_strict_subject_default.py
tests/test_support_agent.py
tests/test_support_agent_handoff.py
tests/test_tau2_adapter.py
tests/test_tau2_benchmark_viewer.py
tests/test_tau2_controller_tightening.py
tests/test_tau2_experiment.py
tests/test_tau2_generic_authorizer.py
tests/test_tau2_guardrail_profiles.py
tests/test_tau2_runtime_unification.py
tests/test_tau2_salus_runtime_unified.py
tests/test_tau2_shared_tool_runtime_domains.py
tests/test_temporal_enforcer.py
tests/test_tenancy.py
tests/test_tool_cache.py
tests/test_tool_llm_verify_wiring.py
tests/test_transaction_guard_templates.py
tests/test_transition_facade.py
tests/test_transition_runtime.py
tests/test_turn_extraction_schema.py
tests/test_turn_extractor.py
tests/test_turn_fallback.py
tests/test_turn_prompt.py
tests/test_usage.py
tests/test_usage_record_failure_observable.py
tests/test_usage_tracking.py
tests/test_view_tau2_case.py
tests/test_voice_agent.py
tests/test_voice_confirmation_handshake.py
tests/test_voice_enforcer.py
tests/test_voice_policy_templates.py
tests/test_voice_speech_guard.py
tests/test_voice_stream_proxy.py
tests/test_workflow_autonomy_replay.py
tests/test_workflow_enforcer.py
tests/test_workflow_integrity_performance.py
tests/test_workspace_query_injection.py
tests/test_write_pipeline_unification.py
tests/test_write_provenance_gating.py