agentacct 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.
- agent_chronicle/__init__.py +0 -0
- agent_chronicle/activation.py +993 -0
- agent_chronicle/agent_capabilities.py +801 -0
- agent_chronicle/agent_loop.py +131 -0
- agent_chronicle/agent_smoke.py +173 -0
- agent_chronicle/api.py +15284 -0
- agent_chronicle/autostart.py +389 -0
- agent_chronicle/canonical/__init__.py +127 -0
- agent_chronicle/canonical/benchmark.py +1230 -0
- agent_chronicle/canonical/cutover.py +2602 -0
- agent_chronicle/canonical/lane_inventory.py +173 -0
- agent_chronicle/canonical/legacy_import.py +1529 -0
- agent_chronicle/canonical/legacy_recovery.py +1083 -0
- agent_chronicle/canonical/live_paths.py +119 -0
- agent_chronicle/canonical/migration_archive.py +1790 -0
- agent_chronicle/canonical/migration_disposition_policy.py +167 -0
- agent_chronicle/canonical/product_parity.py +2404 -0
- agent_chronicle/canonical/read_canary.py +1122 -0
- agent_chronicle/canonical/repository.py +129 -0
- agent_chronicle/canonical/safe_scratch.py +335 -0
- agent_chronicle/canonical/schema.sql +549 -0
- agent_chronicle/canonical/snapshot.py +1261 -0
- agent_chronicle/canonical/sqlite.py +3664 -0
- agent_chronicle/canonical/types.py +511 -0
- agent_chronicle/canonical/unsupported_legacy_routing.py +276 -0
- agent_chronicle/canonical/v1_events.py +369 -0
- agent_chronicle/canonical_day_cube.py +358 -0
- agent_chronicle/canonical_live.py +923 -0
- agent_chronicle/canonical_read.py +693 -0
- agent_chronicle/capture/__init__.py +38 -0
- agent_chronicle/capture/adapters.py +899 -0
- agent_chronicle/capture/base.py +328 -0
- agent_chronicle/capture/manifests.py +247 -0
- agent_chronicle/capture/registry.py +139 -0
- agent_chronicle/capture/service.py +233 -0
- agent_chronicle/capture_runtime.py +107 -0
- agent_chronicle/cli.py +8121 -0
- agent_chronicle/client_usage.py +7822 -0
- agent_chronicle/confidence.py +46 -0
- agent_chronicle/connector_runtime.py +134 -0
- agent_chronicle/connectors/__init__.py +47 -0
- agent_chronicle/connectors/base.py +355 -0
- agent_chronicle/connectors/control.py +344 -0
- agent_chronicle/connectors/entire.py +378 -0
- agent_chronicle/connectors/openlit.py +483 -0
- agent_chronicle/connectors/paperclip.py +319 -0
- agent_chronicle/connectors/registry.py +44 -0
- agent_chronicle/context_bridge.py +555 -0
- agent_chronicle/control_plane.py +2661 -0
- agent_chronicle/control_web.py +359 -0
- agent_chronicle/cost.py +870 -0
- agent_chronicle/deep_provider_validation.py +189 -0
- agent_chronicle/env_compat.py +48 -0
- agent_chronicle/evidence.py +1236 -0
- agent_chronicle/evidence_html.py +684 -0
- agent_chronicle/evidence_product.py +1031 -0
- agent_chronicle/evidence_rebuild_activation.py +2539 -0
- agent_chronicle/evidence_rebuild_candidate.py +2798 -0
- agent_chronicle/evidence_rebuild_snapshot.py +1840 -0
- agent_chronicle/evidence_runtime.py +744 -0
- agent_chronicle/evidence_store.py +2704 -0
- agent_chronicle/finding_disposition.py +358 -0
- agent_chronicle/hooks.py +1330 -0
- agent_chronicle/ingestion_health.py +1429 -0
- agent_chronicle/install_guide.py +616 -0
- agent_chronicle/join_rules.py +632 -0
- agent_chronicle/localhost_guard.py +175 -0
- agent_chronicle/log_evidence.py +991 -0
- agent_chronicle/mcp.py +1589 -0
- agent_chronicle/mcp_client_smoke.py +271 -0
- agent_chronicle/mechanical_checks.py +184 -0
- agent_chronicle/outcome.py +361 -0
- agent_chronicle/platform_support.py +28 -0
- agent_chronicle/policy.py +126 -0
- agent_chronicle/pricing_catalog.py +525 -0
- agent_chronicle/provider_smoke.py +222 -0
- agent_chronicle/proxy.py +418 -0
- agent_chronicle/refreshable_usage.py +683 -0
- agent_chronicle/reports.py +130 -0
- agent_chronicle/runner.py +357 -0
- agent_chronicle/service.py +1789 -0
- agent_chronicle/session_observations.py +431 -0
- agent_chronicle/source_discovery.py +543 -0
- agent_chronicle/source_paths.py +141 -0
- agent_chronicle/source_policy.py +455 -0
- agent_chronicle/storage.py +268 -0
- agent_chronicle/store_merge.py +520 -0
- agent_chronicle/store_resolution.py +259 -0
- agent_chronicle/supervisor.py +1177 -0
- agent_chronicle/task_continuations.py +976 -0
- agent_chronicle/task_identity.py +141 -0
- agent_chronicle/task_intelligence.py +463 -0
- agent_chronicle/task_outcome.py +327 -0
- agent_chronicle/task_projection.py +1016 -0
- agent_chronicle/usage_cube.py +547 -0
- agent_chronicle/usage_truth.py +1229 -0
- agent_chronicle/work_events.py +302 -0
- agent_chronicle/work_ledger.py +4667 -0
- agent_chronicle/wrappers.py +204 -0
- agentacct-0.1.0.dist-info/METADATA +497 -0
- agentacct-0.1.0.dist-info/RECORD +105 -0
- agentacct-0.1.0.dist-info/WHEEL +5 -0
- agentacct-0.1.0.dist-info/entry_points.txt +4 -0
- agentacct-0.1.0.dist-info/licenses/LICENSE +21 -0
- agentacct-0.1.0.dist-info/top_level.txt +1 -0
|
File without changes
|