agentblaster 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. agentblaster/__init__.py +3 -0
  2. agentblaster/adapters.py +1435 -0
  3. agentblaster/agent_profiles.py +420 -0
  4. agentblaster/audit.py +27 -0
  5. agentblaster/benchmark_kit.py +356 -0
  6. agentblaster/bundle.py +692 -0
  7. agentblaster/campaign.py +1031 -0
  8. agentblaster/campaign_preflight.py +647 -0
  9. agentblaster/capabilities.py +270 -0
  10. agentblaster/claim_readiness.py +3948 -0
  11. agentblaster/cleanup.py +226 -0
  12. agentblaster/cli.py +4202 -0
  13. agentblaster/compare.py +423 -0
  14. agentblaster/config.py +62 -0
  15. agentblaster/constants.py +8 -0
  16. agentblaster/contract_check.py +919 -0
  17. agentblaster/costs.py +74 -0
  18. agentblaster/dashboard.py +5974 -0
  19. agentblaster/engine_advisory.py +1045 -0
  20. agentblaster/engine_onboarding.py +224 -0
  21. agentblaster/engine_targets.py +545 -0
  22. agentblaster/environment.py +284 -0
  23. agentblaster/errors.py +21 -0
  24. agentblaster/evidence.py +188 -0
  25. agentblaster/evidence_index.py +1865 -0
  26. agentblaster/experiment.py +200 -0
  27. agentblaster/exports.py +158 -0
  28. agentblaster/failures.py +70 -0
  29. agentblaster/fixtures.py +775 -0
  30. agentblaster/harness.py +1254 -0
  31. agentblaster/implementation_status.py +719 -0
  32. agentblaster/integrity.py +161 -0
  33. agentblaster/launch_recipes.py +295 -0
  34. agentblaster/lcp.py +107 -0
  35. agentblaster/matrix.py +101 -0
  36. agentblaster/matrix_gate.py +565 -0
  37. agentblaster/matrix_pressure.py +187 -0
  38. agentblaster/matrix_saturation.py +601 -0
  39. agentblaster/mcp.py +187 -0
  40. agentblaster/metric_coverage.py +552 -0
  41. agentblaster/mock_provider.py +485 -0
  42. agentblaster/model_catalog.py +153 -0
  43. agentblaster/models.py +531 -0
  44. agentblaster/observability.py +110 -0
  45. agentblaster/planning.py +199 -0
  46. agentblaster/policy.py +635 -0
  47. agentblaster/presets.py +219 -0
  48. agentblaster/prompt_footprint.py +245 -0
  49. agentblaster/protocol_repair.py +431 -0
  50. agentblaster/provider_audit.py +210 -0
  51. agentblaster/publication_brief.py +893 -0
  52. agentblaster/quality.py +1142 -0
  53. agentblaster/rate_limits.py +74 -0
  54. agentblaster/readiness.py +241 -0
  55. agentblaster/redaction.py +58 -0
  56. agentblaster/redaction_scan.py +247 -0
  57. agentblaster/release.py +440 -0
  58. agentblaster/release_qualification.py +2248 -0
  59. agentblaster/remote_onboarding.py +308 -0
  60. agentblaster/reports.py +2245 -0
  61. agentblaster/runner.py +1677 -0
  62. agentblaster/schema_registry.py +1151 -0
  63. agentblaster/secrets.py +274 -0
  64. agentblaster/security_posture.py +492 -0
  65. agentblaster/skills.py +67 -0
  66. agentblaster/stress_matrix.py +113 -0
  67. agentblaster/suite_audit.py +259 -0
  68. agentblaster/suite_calibration.py +171 -0
  69. agentblaster/suites.py +805 -0
  70. agentblaster/telemetry.py +947 -0
  71. agentblaster/telemetry_audit.py +300 -0
  72. agentblaster/toolsim.py +193 -0
  73. agentblaster/workflow_readiness.py +570 -0
  74. agentblaster/workflow_surfaces.py +292 -0
  75. agentblaster-0.1.0.dist-info/METADATA +250 -0
  76. agentblaster-0.1.0.dist-info/RECORD +78 -0
  77. agentblaster-0.1.0.dist-info/WHEEL +4 -0
  78. agentblaster-0.1.0.dist-info/entry_points.txt +2 -0
@@ -0,0 +1,3 @@
1
+ """AgentBlaster benchmark package."""
2
+
3
+ __version__ = "0.1.0"