polyrob 0.5.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.
- agents/README.md +453 -0
- agents/__init__.py +164 -0
- agents/base_agent.py +743 -0
- agents/personality/character.py +119 -0
- agents/personality/character_manager.py +309 -0
- agents/personality/characters/rob.character.json +56 -0
- agents/personality/characters/trump.character.json +63 -0
- agents/personality/persona_render.py +78 -0
- agents/personality/persona_resolver.py +115 -0
- agents/prompt/__init__.py +58 -0
- agents/prompt/base_prompt.py +92 -0
- agents/prompt/system.py +417 -0
- agents/task/README_PATH_MANAGEMENT.md +141 -0
- agents/task/__init__.py +162 -0
- agents/task/agent/__init__.py +70 -0
- agents/task/agent/agent_state.py +408 -0
- agents/task/agent/async_delegation.py +274 -0
- agents/task/agent/autonomy_state.py +275 -0
- agents/task/agent/conversation.py +75 -0
- agents/task/agent/core/__init__.py +6 -0
- agents/task/agent/core/aux_metering.py +61 -0
- agents/task/agent/core/background_review.py +157 -0
- agents/task/agent/core/construction.py +1179 -0
- agents/task/agent/core/conversational_exit.py +49 -0
- agents/task/agent/core/correspondent_gate.py +227 -0
- agents/task/agent/core/curator.py +246 -0
- agents/task/agent/core/episodic_digest.py +103 -0
- agents/task/agent/core/error_recovery.py +480 -0
- agents/task/agent/core/history_io.py +257 -0
- agents/task/agent/core/llm_provisioning.py +287 -0
- agents/task/agent/core/llm_runner.py +547 -0
- agents/task/agent/core/logging_io.py +276 -0
- agents/task/agent/core/loop_detection.py +262 -0
- agents/task/agent/core/memory_prefetch.py +325 -0
- agents/task/agent/core/memory_writer.py +667 -0
- agents/task/agent/core/model_introspection.py +82 -0
- agents/task/agent/core/model_swap.py +177 -0
- agents/task/agent/core/next_action_internal.py +1331 -0
- agents/task/agent/core/output_validation.py +303 -0
- agents/task/agent/core/project_context.py +272 -0
- agents/task/agent/core/resources.py +93 -0
- agents/task/agent/core/result_processing.py +389 -0
- agents/task/agent/core/run_loop.py +661 -0
- agents/task/agent/core/safety_lifecycle.py +228 -0
- agents/task/agent/core/secret_guard.py +293 -0
- agents/task/agent/core/self_wake.py +280 -0
- agents/task/agent/core/session_metadata.py +104 -0
- agents/task/agent/core/step.py +781 -0
- agents/task/agent/core/step_execution.py +398 -0
- agents/task/agent/core/step_telemetry.py +222 -0
- agents/task/agent/core/test_aux_metering.py +50 -0
- agents/task/agent/core/test_billing_failover.py +68 -0
- agents/task/agent/core/test_fatal_error_classifier.py +38 -0
- agents/task/agent/core/test_judge_validation.py +275 -0
- agents/task/agent/core/test_model_swap.py +190 -0
- agents/task/agent/core/test_reflection_offload.py +54 -0
- agents/task/agent/core/turn_input.py +8 -0
- agents/task/agent/core/untrusted_wrap.py +103 -0
- agents/task/agent/core/user_ingress.py +228 -0
- agents/task/agent/hitl_manager.py +396 -0
- agents/task/agent/log_sanitize.py +36 -0
- agents/task/agent/message_manager/config.py +97 -0
- agents/task/agent/message_manager/service.py +758 -0
- agents/task/agent/message_manager/tests.py +305 -0
- agents/task/agent/message_manager/tool_call_builder.py +539 -0
- agents/task/agent/message_manager/tool_message_repair.py +364 -0
- agents/task/agent/message_manager/views.py +143 -0
- agents/task/agent/messages/__init__.py +8 -0
- agents/task/agent/messages/builders.py +309 -0
- agents/task/agent/messages/compactor.py +611 -0
- agents/task/agent/messages/context_references.py +271 -0
- agents/task/agent/messages/filters.py +333 -0
- agents/task/agent/messages/guidance.py +328 -0
- agents/task/agent/messages/persistence.py +448 -0
- agents/task/agent/messages/retrieval.py +506 -0
- agents/task/agent/messages/sqlite_persistence.py +85 -0
- agents/task/agent/messages/test_compaction_upgrade.py +349 -0
- agents/task/agent/messages/test_persistence_subdir_fix.py +28 -0
- agents/task/agent/messages/test_sqlite_persistence.py +54 -0
- agents/task/agent/messages/token_counter.py +532 -0
- agents/task/agent/orchestrator.py +776 -0
- agents/task/agent/profile_manager.py +105 -0
- agents/task/agent/profile_registry.py +173 -0
- agents/task/agent/prompts.py +1090 -0
- agents/task/agent/scenario_registry.py +226 -0
- agents/task/agent/service.py +509 -0
- agents/task/agent/session.py +984 -0
- agents/task/agent/skill_discovery.py +110 -0
- agents/task/agent/skill_frontmatter.py +94 -0
- agents/task/agent/skill_manager.py +1201 -0
- agents/task/agent/skill_store.py +627 -0
- agents/task/agent/skill_validation.py +56 -0
- agents/task/agent/skill_writer.py +492 -0
- agents/task/agent/sub_agent_manager.py +1137 -0
- agents/task/agent/test_session_disk_recovery.py +34 -0
- agents/task/agent/tests.py +513 -0
- agents/task/agent/tool_call_tracker.py +511 -0
- agents/task/agent/views.py +469 -0
- agents/task/config.py +432 -0
- agents/task/constants.py +1384 -0
- agents/task/flag_defaults.py +63 -0
- agents/task/goals/__init__.py +1 -0
- agents/task/goals/autonomy_marker.py +28 -0
- agents/task/goals/board.py +690 -0
- agents/task/goals/completion_judge.py +247 -0
- agents/task/goals/context.py +62 -0
- agents/task/goals/dispatcher.py +848 -0
- agents/task/goals/escalation.py +102 -0
- agents/task/goals/planner.py +114 -0
- agents/task/logging_config.py +155 -0
- agents/task/path.py +991 -0
- agents/task/robust_parse_config.py +400 -0
- agents/task/runtime/__init__.py +0 -0
- agents/task/runtime/run_as_session.py +130 -0
- agents/task/runtime_safety.py +308 -0
- agents/task/session/__init__.py +5 -0
- agents/task/session/browser_pool.py +130 -0
- agents/task/session/cleanup.py +612 -0
- agents/task/session/execution.py +397 -0
- agents/task/session/feed.py +200 -0
- agents/task/session/hitl_ingress.py +201 -0
- agents/task/session/hooks.py +83 -0
- agents/task/session/multi_agent.py +243 -0
- agents/task/session/workspace.py +91 -0
- agents/task/session_registry.py +91 -0
- agents/task/session_route.py +35 -0
- agents/task/sqlite_session_registry.py +261 -0
- agents/task/surface_config.py +185 -0
- agents/task/telemetry/__init__.py +58 -0
- agents/task/telemetry/event_log.py +180 -0
- agents/task/telemetry/formatters.py +642 -0
- agents/task/telemetry/manager.py +571 -0
- agents/task/telemetry/memory_events.py +66 -0
- agents/task/telemetry/self_events.py +53 -0
- agents/task/telemetry/sequence.py +160 -0
- agents/task/telemetry/service.py +1265 -0
- agents/task/telemetry/views.py +882 -0
- agents/task/templates.py +98 -0
- agents/task/test_aux_chain.py +151 -0
- agents/task/test_aux_router.py +41 -0
- agents/task/tests/test_parse_robustness.py +170 -0
- agents/task/tool_defaults.py +110 -0
- agents/task/utils.py +762 -0
- agents/task/utils_json.py +768 -0
- agents/task/utils_webview.py +86 -0
- agents/task/workspace_context.py +229 -0
- agents/task_agent_lite.py +2398 -0
- api/README.md +683 -0
- api/TASK_API_DOCS.md +151 -0
- api/__init__.py +0 -0
- api/a2a/__init__.py +37 -0
- api/a2a/agent_card.py +337 -0
- api/a2a/client.py +657 -0
- api/a2a/endpoints.py +375 -0
- api/a2a/models.py +268 -0
- api/a2a/streaming.py +419 -0
- api/a2a/task_handler.py +929 -0
- api/admin_endpoints.py +1584 -0
- api/app.py +923 -0
- api/auth_constants.py +28 -0
- api/auth_endpoints.py +402 -0
- api/auth_state.py +36 -0
- api/chat_via_task.py +42 -0
- api/conversation_manager.py +231 -0
- api/dependencies.py +186 -0
- api/eip8004_endpoints.py +452 -0
- api/hyperliquid_models.py +174 -0
- api/hyperliquid_routes.py +450 -0
- api/interfaces.py +207 -0
- api/jwt_middleware.py +83 -0
- api/kb/__init__.py +1 -0
- api/kb/endpoints.py +314 -0
- api/mcp_models.py +279 -0
- api/mcp_routes.py +438 -0
- api/middleware.py +526 -0
- api/models.py +176 -0
- api/openai_compat/__init__.py +0 -0
- api/openai_compat/model_map.py +25 -0
- api/openai_compat/models.py +59 -0
- api/openai_compat/router.py +140 -0
- api/payment_endpoints.py +444 -0
- api/payment_verification.py +138 -0
- api/polymarket_models.py +155 -0
- api/polymarket_routes.py +501 -0
- api/pricing_endpoints.py +89 -0
- api/session_routing.py +54 -0
- api/skill_endpoints.py +453 -0
- api/task_http_api.py +1856 -0
- api/webhooks.py +52 -0
- api/x402_endpoints.py +280 -0
- avatar/README.md +44 -0
- avatar/__init__.py +1 -0
- avatar/config/rob.json +7 -0
- avatar/mindprint.js +395 -0
- avatar/renders/rob.meta.json +20 -0
- avatar/renders/rob.png +0 -0
- avatar/studio.html +373 -0
- avatar/webview/avatar-live.js +44 -0
- cli/README.md +89 -0
- cli/__init__.py +0 -0
- cli/cli_surface.py +67 -0
- cli/commands/__init__.py +0 -0
- cli/commands/_bootstrap.py +49 -0
- cli/commands/_errors.py +53 -0
- cli/commands/chat.py +973 -0
- cli/commands/config.py +100 -0
- cli/commands/dashboard.py +103 -0
- cli/commands/doctor.py +222 -0
- cli/commands/email.py +174 -0
- cli/commands/gateway.py +346 -0
- cli/commands/goals.py +509 -0
- cli/commands/init.py +276 -0
- cli/commands/journey.py +30 -0
- cli/commands/kb.py +280 -0
- cli/commands/model.py +107 -0
- cli/commands/owner.py +431 -0
- cli/commands/pfp.py +232 -0
- cli/commands/run.py +414 -0
- cli/commands/serve.py +41 -0
- cli/commands/session.py +684 -0
- cli/commands/skill_install.py +786 -0
- cli/commands/skills.py +128 -0
- cli/commands/subagents.py +100 -0
- cli/commands/surface.py +81 -0
- cli/commands/telegram.py +185 -0
- cli/commands/todos.py +209 -0
- cli/commands/tools.py +102 -0
- cli/commands/update.py +316 -0
- cli/commands/whatsapp.py +175 -0
- cli/config_store.py +276 -0
- cli/gitignore.py +43 -0
- cli/inventory.py +46 -0
- cli/keys.py +101 -0
- cli/persona.py +17 -0
- cli/polyrob.py +137 -0
- cli/ui/__init__.py +64 -0
- cli/ui/activity.py +141 -0
- cli/ui/app.py +538 -0
- cli/ui/banner.py +233 -0
- cli/ui/blocks.py +534 -0
- cli/ui/bootstrap_notice.py +47 -0
- cli/ui/commands/__init__.py +41 -0
- cli/ui/commands/h_cron.py +64 -0
- cli/ui/commands/h_journey.py +164 -0
- cli/ui/commands/h_kb.py +121 -0
- cli/ui/commands/h_learn.py +100 -0
- cli/ui/commands/h_mcp.py +215 -0
- cli/ui/commands/h_self.py +113 -0
- cli/ui/commands/h_skills.py +314 -0
- cli/ui/commands/handlers.py +1672 -0
- cli/ui/commands/registry.py +426 -0
- cli/ui/dialog.py +425 -0
- cli/ui/event_registry.py +110 -0
- cli/ui/event_specs.py +45 -0
- cli/ui/events.py +433 -0
- cli/ui/identity.py +15 -0
- cli/ui/lifecycle.py +159 -0
- cli/ui/live_hooks.py +43 -0
- cli/ui/model_selector.py +532 -0
- cli/ui/persistent_loop.py +181 -0
- cli/ui/pick.py +113 -0
- cli/ui/plain_renderer.py +351 -0
- cli/ui/renderer.py +384 -0
- cli/ui/rich_renderer.py +533 -0
- cli/ui/secrets.py +115 -0
- cli/ui/state.py +376 -0
- cli/ui/statusbar.py +231 -0
- cli/ui/streaming.py +254 -0
- cli/ui/terminal_render.py +105 -0
- cli/ui/theme.py +132 -0
- cli/update/__init__.py +6 -0
- cli/update/context.py +121 -0
- cli/update/detect.py +176 -0
- cli/update/engine.py +95 -0
- cli/update/migrate_guarded.py +55 -0
- cli/update/process_guard.py +215 -0
- cli/update/runners.py +78 -0
- cli/update/snapshot.py +270 -0
- cli/update/versions.py +205 -0
- core/README.md +377 -0
- core/__init__.py +174 -0
- core/assets.py +87 -0
- core/async_bridge.py +76 -0
- core/autonomy_runtime.py +259 -0
- core/base_component.py +302 -0
- core/bootstrap.py +681 -0
- core/bot.py +310 -0
- core/config.py +833 -0
- core/constants.py +126 -0
- core/container.py +462 -0
- core/db_manifest.py +101 -0
- core/embedding.py +57 -0
- core/env.py +39 -0
- core/exceptions.py +287 -0
- core/flags.py +144 -0
- core/flags_catalog.py +345 -0
- core/home_migration.py +62 -0
- core/identity.py +118 -0
- core/initialization.py +1004 -0
- core/instance.py +537 -0
- core/interactive_gate.py +96 -0
- core/logging.py +436 -0
- core/owner_doc_writer.py +176 -0
- core/pairing.py +193 -0
- core/path_safety.py +20 -0
- core/paths.py +27 -0
- core/payment_config.py +21 -0
- core/permissions.py +322 -0
- core/runtime_config.py +96 -0
- core/runtime_paths.py +135 -0
- core/seams.py +35 -0
- core/secret_scan.py +25 -0
- core/secret_scrub.py +71 -0
- core/secrets.py +35 -0
- core/security_logging_filter.py +148 -0
- core/self_context_writer.py +333 -0
- core/self_evolution.py +294 -0
- core/session_context.py +47 -0
- core/sqlite_util.py +59 -0
- core/surfaces/__init__.py +16 -0
- core/surfaces/access.py +118 -0
- core/surfaces/binding.py +88 -0
- core/surfaces/bootstrap.py +78 -0
- core/surfaces/circuit.py +168 -0
- core/surfaces/continuity.py +77 -0
- core/surfaces/correspondents.py +228 -0
- core/surfaces/dispatcher.py +216 -0
- core/surfaces/envelopes.py +75 -0
- core/surfaces/gc.py +30 -0
- core/surfaces/idempotency.py +57 -0
- core/surfaces/inbound_webhook.py +124 -0
- core/surfaces/media.py +32 -0
- core/surfaces/message_router.py +91 -0
- core/surfaces/outbound_allowlist.py +80 -0
- core/surfaces/outbound_dispatcher.py +110 -0
- core/surfaces/outbound_mirror.py +37 -0
- core/surfaces/outbound_queue.py +107 -0
- core/surfaces/outbound_target.py +12 -0
- core/surfaces/owner_admin.py +29 -0
- core/surfaces/proactive.py +78 -0
- core/surfaces/progress.py +108 -0
- core/surfaces/rate_bucket.py +21 -0
- core/surfaces/registry.py +51 -0
- core/surfaces/rendering.py +53 -0
- core/surfaces/send_policy.py +14 -0
- core/surfaces/serialize.py +24 -0
- core/surfaces/session_chat_registry.py +112 -0
- core/surfaces/session_policy.py +60 -0
- core/surfaces/surface.py +288 -0
- core/surfaces/transcription.py +88 -0
- core/surfaces/voice_echo.py +26 -0
- core/surfaces/voice_guard.py +23 -0
- core/tickers.py +174 -0
- core/tool_catalog.py +192 -0
- core/version.py +75 -0
- core/wallet/__init__.py +5 -0
- core/wallet/agent_wallet.py +59 -0
- core/wallet/audit_sink.py +61 -0
- core/wallet/config.py +70 -0
- core/wallet/factory.py +87 -0
- core/wallet/policy.py +104 -0
- core/wallet/signer.py +51 -0
- cron/README.md +65 -0
- cron/__init__.py +0 -0
- cron/delivery.py +277 -0
- cron/digest.py +124 -0
- cron/jobs.py +207 -0
- cron/runner.py +297 -0
- cron/schedule.py +194 -0
- cron/scheduler.py +201 -0
- cron/service.py +57 -0
- cron/wake_gate.py +223 -0
- data/__init__.py +1 -0
- data/prompts/autov2_prompts.json +87 -0
- data/prompts/skills/browser-automation/SKILL.md +43 -0
- data/prompts/skills/coding-workflow/SKILL.md +36 -0
- data/prompts/skills/crypto-trading-safety/SKILL.md +53 -0
- data/prompts/skills/document-writing/SKILL.md +33 -0
- data/prompts/skills/email-comms/SKILL.md +33 -0
- data/prompts/skills/file-data-ops/SKILL.md +35 -0
- data/prompts/skills/hyperliquid-account-review/SKILL.md +48 -0
- data/prompts/skills/hyperliquid-market-data/SKILL.md +52 -0
- data/prompts/skills/hyperliquid-trading/SKILL.md +59 -0
- data/prompts/skills/lead-research/SKILL.md +86 -0
- data/prompts/skills/market-research-brief/SKILL.md +104 -0
- data/prompts/skills/person-analyzer/SKILL.md +124 -0
- data/prompts/skills/polymarket-market-research/SKILL.md +54 -0
- data/prompts/skills/polymarket-portfolio-review/SKILL.md +50 -0
- data/prompts/skills/polymarket-trading/SKILL.md +55 -0
- data/prompts/skills/presentation-creator/SKILL.md +36 -0
- data/prompts/skills/project-analyzer/SKILL.md +169 -0
- data/prompts/skills/rules.json +268 -0
- data/prompts/skills/secret-handling/SKILL.md +20 -0
- data/prompts/skills/skill-authoring/SKILL.md +31 -0
- data/prompts/skills/skill-security-review/SKILL.md +27 -0
- data/prompts/skills/social-discovery/SKILL.md +57 -0
- data/prompts/skills/task-planning/SKILL.md +33 -0
- data/prompts/skills/web-research/SKILL.md +39 -0
- data/prompts/skills/web-scraping/SKILL.md +73 -0
- data/prompts/skills/x-engagement/SKILL.md +69 -0
- data/prompts/system_prompts.json +4 -0
- data/subscription_channels.json +5 -0
- modules/README.md +503 -0
- modules/__init__.py +124 -0
- modules/auth/__init__.py +13 -0
- modules/auth/api_key_manager.py +157 -0
- modules/auth/identity_mapper.py +380 -0
- modules/auth/siwe_auth.py +273 -0
- modules/auth/tier_manager.py +173 -0
- modules/base_module.py +190 -0
- modules/credits/__init__.py +29 -0
- modules/credits/balance_manager.py +237 -0
- modules/credits/cost_utils.py +129 -0
- modules/credits/pricing.py +139 -0
- modules/credits/unified_ledger.py +148 -0
- modules/credits/usage_meter.py +310 -0
- modules/credits/usage_tracker.py +674 -0
- modules/database/__init__.py +33 -0
- modules/database/audit_log.py +322 -0
- modules/database/auth_tables.py +276 -0
- modules/database/connection.py +644 -0
- modules/database/connection_pool.py +305 -0
- modules/database/conversation_contexts.py +446 -0
- modules/database/database_manager.py +237 -0
- modules/database/hyperliquid.py +375 -0
- modules/database/polymarket.py +574 -0
- modules/database/user_mcp_servers.py +728 -0
- modules/database/user_profiles.py +562 -0
- modules/database/utils.py +107 -0
- modules/database/x402_tables.py +92 -0
- modules/eip8004/README.md +1069 -0
- modules/eip8004/__init__.py +65 -0
- modules/eip8004/contracts.py +498 -0
- modules/eip8004/models.py +271 -0
- modules/eip8004/registration.py +148 -0
- modules/eip8004/reputation.py +367 -0
- modules/eip8004/validation.py +277 -0
- modules/llm/__init__.py +97 -0
- modules/llm/adapters.py +963 -0
- modules/llm/anthropic_client.py +831 -0
- modules/llm/available_models.py +106 -0
- modules/llm/brain_scrubber.py +137 -0
- modules/llm/cache_hints.py +162 -0
- modules/llm/deepseek_client.py +562 -0
- modules/llm/gemini_client.py +1367 -0
- modules/llm/llm_client.py +1139 -0
- modules/llm/llm_client_registry.py +188 -0
- modules/llm/llm_factory.py +237 -0
- modules/llm/llm_manager.py +1036 -0
- modules/llm/messages.py +374 -0
- modules/llm/model_registry.py +1935 -0
- modules/llm/nvidia_client.py +125 -0
- modules/llm/openai_client.py +800 -0
- modules/llm/openrouter_client.py +969 -0
- modules/llm/profiles.py +178 -0
- modules/llm/test_anthropic_cache_capture.py +35 -0
- modules/llm/test_cached_pricing_derivation.py +24 -0
- modules/llm/think_scrubber.py +444 -0
- modules/llm/token_counter.py +268 -0
- modules/memory/__init__.py +35 -0
- modules/memory/backend_factory.py +83 -0
- modules/memory/cache_manager.py +186 -0
- modules/memory/episodic.py +108 -0
- modules/memory/local_vector_memory_provider.py +552 -0
- modules/memory/memory_manager.py +225 -0
- modules/memory/models.py +312 -0
- modules/memory/provider.py +210 -0
- modules/memory/registry.py +205 -0
- modules/memory/sqlite_memory_provider.py +767 -0
- modules/memory/task/__init__.py +52 -0
- modules/memory/task/compaction_manager.py +157 -0
- modules/memory/task/context_retriever.py +809 -0
- modules/memory/task/hierarchical_memory.py +1002 -0
- modules/memory/task/lexical_retriever.py +71 -0
- modules/memory/task/null_context_manager.py +213 -0
- modules/memory/task/phase_manager.py +625 -0
- modules/memory/task/reflection_service.py +157 -0
- modules/memory/task/semantic_retriever.py +218 -0
- modules/memory/task/task_context_manager.py +1165 -0
- modules/memory/task/test_forgetting_engages.py +24 -0
- modules/memory/task/test_reflection_llm.py +39 -0
- modules/memory/task/test_threat_scan.py +53 -0
- modules/memory/task/threat_scan.py +90 -0
- modules/memory/test_sqlite_memory_provider.py +106 -0
- modules/memory/user_profile_manager.py +527 -0
- modules/payments/__init__.py +11 -0
- modules/payments/deposit_monitor.py +478 -0
- modules/payments/price_oracle.py +70 -0
- modules/payments/treasury_sweeper.py +401 -0
- modules/payments/wallet_generator.py +145 -0
- modules/pfp/__init__.py +1 -0
- modules/pfp/config.py +92 -0
- modules/pfp/mesh.py +565 -0
- modules/pfp/push.py +69 -0
- modules/pfp/renderer.py +85 -0
- modules/pfp/store.py +82 -0
- modules/skills/__init__.py +1 -0
- modules/skills/skill_usage.py +248 -0
- modules/transcription/__init__.py +24 -0
- modules/transcription/base.py +20 -0
- modules/transcription/faster_whisper_transcriber.py +55 -0
- modules/x402/README.md +249 -0
- modules/x402/__init__.py +22 -0
- modules/x402/invoicing.py +416 -0
- modules/x402/middleware.py +364 -0
- modules/x402/settlement_watcher.py +145 -0
- modules/x402/x402_integration.py +344 -0
- polyrob-0.5.0.dist-info/METADATA +482 -0
- polyrob-0.5.0.dist-info/RECORD +745 -0
- polyrob-0.5.0.dist-info/WHEEL +5 -0
- polyrob-0.5.0.dist-info/entry_points.txt +2 -0
- polyrob-0.5.0.dist-info/licenses/LICENSE +21 -0
- polyrob-0.5.0.dist-info/top_level.txt +12 -0
- surfaces/README.md +70 -0
- surfaces/__init__.py +0 -0
- surfaces/email/__init__.py +0 -0
- surfaces/email/dedup.py +44 -0
- surfaces/email/harness.py +187 -0
- surfaces/email/inbound.py +159 -0
- surfaces/email/seed.py +60 -0
- surfaces/email/surface.py +105 -0
- surfaces/telegram/__init__.py +0 -0
- surfaces/telegram/dedup.py +83 -0
- surfaces/telegram/harness.py +886 -0
- surfaces/telegram/inbound.py +145 -0
- surfaces/telegram/interactive_tools.py +49 -0
- surfaces/telegram/markdown.py +347 -0
- surfaces/telegram/rate_limit.py +167 -0
- surfaces/telegram/surface.py +187 -0
- surfaces/telegram/voice.py +52 -0
- surfaces/whatsapp/__init__.py +0 -0
- surfaces/whatsapp/client.py +51 -0
- surfaces/whatsapp/harness.py +62 -0
- surfaces/whatsapp/inbound.py +132 -0
- surfaces/whatsapp/surface.py +64 -0
- surfaces/whatsapp/window.py +34 -0
- tools/README.md +578 -0
- tools/__init__.py +424 -0
- tools/alchemy/__init__.py +5 -0
- tools/alchemy/alchemy_tool.py +389 -0
- tools/anysite/__init__.py +17 -0
- tools/anysite/client.py +88 -0
- tools/anysite/tool.py +89 -0
- tools/base_tool.py +468 -0
- tools/browser/__init__.py +22 -0
- tools/browser/actions.py +118 -0
- tools/browser/browser.py +1457 -0
- tools/browser/browser_manager.py +690 -0
- tools/browser/context.py +1748 -0
- tools/browser/playwright_utils.py +137 -0
- tools/browser/views.py +56 -0
- tools/code_exec/SANDBOX_SECURITY.md +144 -0
- tools/code_exec/__init__.py +178 -0
- tools/code_exec/backend.py +73 -0
- tools/code_exec/backends/__init__.py +1 -0
- tools/code_exec/backends/docker.py +779 -0
- tools/code_exec/backends/local_subprocess.py +154 -0
- tools/code_exec/env_policy.py +45 -0
- tools/code_exec/result.py +42 -0
- tools/code_exec/sandbox_guard.py +59 -0
- tools/code_exec/tool.py +227 -0
- tools/coding/__init__.py +50 -0
- tools/coding/edit.py +107 -0
- tools/coding/search.py +113 -0
- tools/coding/tool.py +353 -0
- tools/collabland/__init__.py +5 -0
- tools/collabland/collabland_tool.py +471 -0
- tools/controller/__init__.py +0 -0
- tools/controller/_helpers.py +165 -0
- tools/controller/action_registration.py +1765 -0
- tools/controller/approval.py +244 -0
- tools/controller/approval_interactive.py +90 -0
- tools/controller/delegation.py +195 -0
- tools/controller/execution.py +797 -0
- tools/controller/execution_context.py +141 -0
- tools/controller/hooks.py +135 -0
- tools/controller/introspection.py +344 -0
- tools/controller/mcp_registrar.py +190 -0
- tools/controller/message_send.py +31 -0
- tools/controller/registry/__init__.py +4 -0
- tools/controller/registry/schema_generators.py +395 -0
- tools/controller/registry/schema_sanitizer.py +406 -0
- tools/controller/registry/service.py +1266 -0
- tools/controller/registry/views.py +151 -0
- tools/controller/service.py +409 -0
- tools/controller/tool_management.py +334 -0
- tools/controller/types.py +28 -0
- tools/controller/views.py +450 -0
- tools/cronjob_tools.py +166 -0
- tools/crypto_trade_gate.py +59 -0
- tools/descriptors.py +452 -0
- tools/dom/__init__.py +0 -0
- tools/dom/history_tree_processor/service.py +244 -0
- tools/dom/history_tree_processor/view.py +99 -0
- tools/dom/service.py +471 -0
- tools/dom/views.py +346 -0
- tools/email_tool.py +403 -0
- tools/exceptions.py +169 -0
- tools/filesystem.py +1038 -0
- tools/filesystem_docproc.py +331 -0
- tools/filesystem_pdf.py +755 -0
- tools/git/__init__.py +42 -0
- tools/git/tool.py +258 -0
- tools/github/__init__.py +33 -0
- tools/github/client.py +94 -0
- tools/github/tool.py +237 -0
- tools/goal_tools.py +309 -0
- tools/hyperliquid/__init__.py +56 -0
- tools/hyperliquid/models.py +233 -0
- tools/hyperliquid/service.py +1680 -0
- tools/knowledge_ingest.py +950 -0
- tools/mcp/README.md +535 -0
- tools/mcp/__init__.py +52 -0
- tools/mcp/catalog.py +115 -0
- tools/mcp/config.py +337 -0
- tools/mcp/mcp_tool.py +1415 -0
- tools/mcp/param_coercion.py +289 -0
- tools/mcp/protocol.py +1520 -0
- tools/mcp/rate_limit.py +50 -0
- tools/mcp/security.py +424 -0
- tools/mcp/self_install.py +111 -0
- tools/mcp/server_manager.py +829 -0
- tools/mcp/subscriptions.py +72 -0
- tools/mcp/user_mcp_service.py +899 -0
- tools/mcp/validation_tracker.py +89 -0
- tools/mcp/views.py +346 -0
- tools/oauth/__init__.py +17 -0
- tools/oauth/manager.py +75 -0
- tools/oauth/provider.py +69 -0
- tools/oauth/providers/__init__.py +1 -0
- tools/oauth/providers/generic_oauth2.py +96 -0
- tools/perplexity_tool.py +280 -0
- tools/polymarket/__init__.py +41 -0
- tools/polymarket/clob_adapter.py +76 -0
- tools/polymarket/models.py +182 -0
- tools/polymarket/service.py +2082 -0
- tools/self_env/__init__.py +61 -0
- tools/self_env/tool.py +274 -0
- tools/shell/__init__.py +80 -0
- tools/shell/backend_pool.py +118 -0
- tools/shell/discipline.py +62 -0
- tools/shell/executor.py +157 -0
- tools/shell/loopback_allow.py +87 -0
- tools/shell/process_registry.py +113 -0
- tools/shell/process_tool.py +131 -0
- tools/shell/state.py +129 -0
- tools/shell/tool.py +151 -0
- tools/task_tool.py +637 -0
- tools/twitter_tool.py +2086 -0
- tools/user_directory.py +179 -0
- tools/web_fetch/__init__.py +3 -0
- tools/web_fetch/fetcher.py +144 -0
- tools/web_fetch/render.py +44 -0
- tools/web_fetch/tool.py +60 -0
- tools/x402/__init__.py +60 -0
- tools/x402/client.py +47 -0
- tools/x402/invoice_tool.py +143 -0
- tools/x402/real_client.py +250 -0
- tools/x402/service.py +131 -0
- utils/README.md +498 -0
- utils/__init__.py +46 -0
- utils/auth_utils.py +114 -0
- utils/bounded_collections.py +162 -0
- utils/circuit_breaker.py +389 -0
- utils/gif_utils.py +435 -0
- utils/markdown_utils.py +291 -0
- utils/message_utils.py +147 -0
- utils/metrics.py +36 -0
- utils/path_validator.py +227 -0
- utils/rate_limit_manager.py +399 -0
- utils/result_size.py +296 -0
- utils/time_utils.py +206 -0
- utils/user_utils.py +188 -0
- webview/README.md +111 -0
- webview/RENAME_AND_ALIGN_HANDOFF.md +200 -0
- webview/__init__.py +8 -0
- webview/activity.py +636 -0
- webview/owner_auth.py +108 -0
- webview/pages.py +448 -0
- webview/repair_sessions.py +399 -0
- webview/server.py +4323 -0
- webview/server_launcher.py +112 -0
- webview/static/css/activity.css +89 -0
- webview/static/css/chat.css +1772 -0
- webview/static/css/components.css +1190 -0
- webview/static/css/config-panel.css +651 -0
- webview/static/css/pages/admin.css +766 -0
- webview/static/css/pages/profile.css +231 -0
- webview/static/css/pages/settings.css +297 -0
- webview/static/css/pages/signin.css +316 -0
- webview/static/css/style.css +4250 -0
- webview/static/css/variables.css +147 -0
- webview/static/css/workspace-fullwidth-fix.css +109 -0
- webview/static/img/favicon.ico +0 -0
- webview/static/js/activity.js +394 -0
- webview/static/js/admin/activity.js +186 -0
- webview/static/js/admin/dashboard.js +163 -0
- webview/static/js/admin/user_detail.js +400 -0
- webview/static/js/admin/users.js +174 -0
- webview/static/js/admin/utils.js +214 -0
- webview/static/js/chat.js +3178 -0
- webview/static/js/config-panel.js +522 -0
- webview/static/js/constants.js +20 -0
- webview/static/js/error-handler.js +226 -0
- webview/static/js/ethers.min.js +1 -0
- webview/static/js/event-filter.js +137 -0
- webview/static/js/event-store.js +351 -0
- webview/static/js/file-attachments.js +374 -0
- webview/static/js/file-loader.js +163 -0
- webview/static/js/index.js +103 -0
- webview/static/js/performance-utils.js +196 -0
- webview/static/js/profile.js +396 -0
- webview/static/js/screenshot.js +386 -0
- webview/static/js/session.js +1527 -0
- webview/static/js/settings.js +1288 -0
- webview/static/js/sidebar-data.js +766 -0
- webview/static/js/sidebar-toggle.js +296 -0
- webview/static/js/socket.io.min.js +7 -0
- webview/static/js/stats.js +355 -0
- webview/static/js/ui-utils.js +420 -0
- webview/static/js/workspace.js +966 -0
- webview/stats_service.py +613 -0
- webview/templates/__init__.py +1 -0
- webview/templates/__pycache__/__init__.cpython-311.pyc +0 -0
- webview/templates/activity.html +36 -0
- webview/templates/admin/activity.html +122 -0
- webview/templates/admin/dashboard.html +112 -0
- webview/templates/admin/user_detail.html +228 -0
- webview/templates/admin/users.html +105 -0
- webview/templates/autonomy.html +60 -0
- webview/templates/error.html +133 -0
- webview/templates/finance.html +90 -0
- webview/templates/identity.html +73 -0
- webview/templates/index.html +42 -0
- webview/templates/layout.html +125 -0
- webview/templates/memory.html +59 -0
- webview/templates/owner_login.html +15 -0
- webview/templates/profile.html +121 -0
- webview/templates/session.html +312 -0
- webview/templates/settings.html +534 -0
- webview/templates/sidebar.html +112 -0
- webview/templates/signin.html +213 -0
- webview/templates/status.html +14 -0
- webview/templates/system.html +45 -0
- webview/webgate.py +196 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"""ERC-8004: Trustless Agents Implementation.
|
|
2
|
+
|
|
3
|
+
This module implements the ERC-8004 standard for trustless agent discovery and trust.
|
|
4
|
+
https://eips.ethereum.org/EIPS/eip-8004
|
|
5
|
+
|
|
6
|
+
Components:
|
|
7
|
+
- Identity Registry: On-chain NFT identity (ERC-721) for agent registration
|
|
8
|
+
- Reputation Registry: On-chain feedback system for agent scoring
|
|
9
|
+
- Validation Registry: On-chain validation verification (zkML, TEE, stake-secured)
|
|
10
|
+
|
|
11
|
+
Integration with existing systems:
|
|
12
|
+
- A2A: Agent Card endpoint linked in registration file
|
|
13
|
+
- x402: Payment proofs can enrich feedback signals
|
|
14
|
+
- MCP: Tool capabilities exposed via registration
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
from .models import (
|
|
18
|
+
EIP8004Config,
|
|
19
|
+
RegistrationFile,
|
|
20
|
+
Endpoint,
|
|
21
|
+
Registration,
|
|
22
|
+
FeedbackAuth,
|
|
23
|
+
FeedbackEntry,
|
|
24
|
+
ValidationRequestModel,
|
|
25
|
+
ValidationResponseModel,
|
|
26
|
+
ValidationStatus,
|
|
27
|
+
ValidationSummary,
|
|
28
|
+
ProofOfPayment,
|
|
29
|
+
ReputationSummary,
|
|
30
|
+
)
|
|
31
|
+
from .registration import build_registration_file
|
|
32
|
+
from .reputation import ReputationManager
|
|
33
|
+
from .validation import ValidationManager
|
|
34
|
+
from .contracts import (
|
|
35
|
+
IdentityRegistryContract,
|
|
36
|
+
ReputationRegistryContract,
|
|
37
|
+
ValidationRegistryContract,
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
__all__ = [
|
|
41
|
+
# Config
|
|
42
|
+
'EIP8004Config',
|
|
43
|
+
# Models
|
|
44
|
+
'RegistrationFile',
|
|
45
|
+
'Endpoint',
|
|
46
|
+
'Registration',
|
|
47
|
+
'FeedbackAuth',
|
|
48
|
+
'FeedbackEntry',
|
|
49
|
+
'ValidationRequestModel',
|
|
50
|
+
'ValidationResponseModel',
|
|
51
|
+
'ValidationStatus',
|
|
52
|
+
'ValidationSummary',
|
|
53
|
+
'ProofOfPayment',
|
|
54
|
+
'ReputationSummary',
|
|
55
|
+
# Functions
|
|
56
|
+
'build_registration_file',
|
|
57
|
+
# Managers
|
|
58
|
+
'ReputationManager',
|
|
59
|
+
'ValidationManager',
|
|
60
|
+
# Contracts
|
|
61
|
+
'IdentityRegistryContract',
|
|
62
|
+
'ReputationRegistryContract',
|
|
63
|
+
'ValidationRegistryContract',
|
|
64
|
+
]
|
|
65
|
+
|
|
@@ -0,0 +1,498 @@
|
|
|
1
|
+
"""ERC-8004 Contract Interfaces.
|
|
2
|
+
|
|
3
|
+
Interface definitions for interacting with the on-chain registries.
|
|
4
|
+
Uses web3.py for contract interactions.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import os
|
|
8
|
+
import logging
|
|
9
|
+
from typing import Optional, Dict, Any, List
|
|
10
|
+
|
|
11
|
+
logger = logging.getLogger(__name__)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# =============================================================================
|
|
15
|
+
# Contract ABIs (Minimal for ERC-8004)
|
|
16
|
+
# =============================================================================
|
|
17
|
+
|
|
18
|
+
IDENTITY_REGISTRY_ABI = [
|
|
19
|
+
# ERC-721 standard
|
|
20
|
+
{
|
|
21
|
+
"inputs": [{"name": "tokenId", "type": "uint256"}],
|
|
22
|
+
"name": "tokenURI",
|
|
23
|
+
"outputs": [{"name": "", "type": "string"}],
|
|
24
|
+
"stateMutability": "view",
|
|
25
|
+
"type": "function"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [{"name": "tokenId", "type": "uint256"}],
|
|
29
|
+
"name": "ownerOf",
|
|
30
|
+
"outputs": [{"name": "", "type": "address"}],
|
|
31
|
+
"stateMutability": "view",
|
|
32
|
+
"type": "function"
|
|
33
|
+
},
|
|
34
|
+
# ERC-8004 extensions
|
|
35
|
+
{
|
|
36
|
+
"inputs": [
|
|
37
|
+
{"name": "agentId", "type": "uint256"},
|
|
38
|
+
{"name": "key", "type": "string"}
|
|
39
|
+
],
|
|
40
|
+
"name": "getMetadata",
|
|
41
|
+
"outputs": [{"name": "", "type": "bytes"}],
|
|
42
|
+
"stateMutability": "view",
|
|
43
|
+
"type": "function"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"inputs": [
|
|
47
|
+
{"name": "tokenURI", "type": "string"},
|
|
48
|
+
{"name": "metadata", "type": "tuple[]", "components": [
|
|
49
|
+
{"name": "key", "type": "string"},
|
|
50
|
+
{"name": "value", "type": "bytes"}
|
|
51
|
+
]}
|
|
52
|
+
],
|
|
53
|
+
"name": "register",
|
|
54
|
+
"outputs": [{"name": "agentId", "type": "uint256"}],
|
|
55
|
+
"stateMutability": "nonpayable",
|
|
56
|
+
"type": "function"
|
|
57
|
+
},
|
|
58
|
+
# Events
|
|
59
|
+
{
|
|
60
|
+
"anonymous": False,
|
|
61
|
+
"inputs": [
|
|
62
|
+
{"indexed": True, "name": "agentId", "type": "uint256"},
|
|
63
|
+
{"indexed": False, "name": "tokenURI", "type": "string"},
|
|
64
|
+
{"indexed": True, "name": "owner", "type": "address"}
|
|
65
|
+
],
|
|
66
|
+
"name": "Registered",
|
|
67
|
+
"type": "event"
|
|
68
|
+
},
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
REPUTATION_REGISTRY_ABI = [
|
|
72
|
+
{
|
|
73
|
+
"inputs": [],
|
|
74
|
+
"name": "getIdentityRegistry",
|
|
75
|
+
"outputs": [{"name": "identityRegistry", "type": "address"}],
|
|
76
|
+
"stateMutability": "view",
|
|
77
|
+
"type": "function"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"inputs": [
|
|
81
|
+
{"name": "agentId", "type": "uint256"},
|
|
82
|
+
{"name": "feedbackAuth", "type": "bytes"},
|
|
83
|
+
{"name": "score", "type": "uint8"},
|
|
84
|
+
{"name": "tag1", "type": "bytes32"},
|
|
85
|
+
{"name": "tag2", "type": "bytes32"},
|
|
86
|
+
{"name": "fileUri", "type": "string"},
|
|
87
|
+
{"name": "fileHash", "type": "bytes32"}
|
|
88
|
+
],
|
|
89
|
+
"name": "submitFeedback",
|
|
90
|
+
"outputs": [],
|
|
91
|
+
"stateMutability": "nonpayable",
|
|
92
|
+
"type": "function"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"inputs": [
|
|
96
|
+
{"name": "agentId", "type": "uint256"},
|
|
97
|
+
{"name": "clientAddress", "type": "address"},
|
|
98
|
+
{"name": "tag1", "type": "bytes32"},
|
|
99
|
+
{"name": "tag2", "type": "bytes32"}
|
|
100
|
+
],
|
|
101
|
+
"name": "getAggregatedFeedback",
|
|
102
|
+
"outputs": [
|
|
103
|
+
{"name": "count", "type": "uint64"},
|
|
104
|
+
{"name": "avgScore", "type": "uint8"},
|
|
105
|
+
{"name": "scores", "type": "uint8[]"},
|
|
106
|
+
{"name": "tag1s", "type": "bytes32[]"},
|
|
107
|
+
{"name": "tag2s", "type": "bytes32[]"},
|
|
108
|
+
{"name": "revokedStatuses", "type": "bool[]"}
|
|
109
|
+
],
|
|
110
|
+
"stateMutability": "view",
|
|
111
|
+
"type": "function"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"inputs": [{"name": "agentId", "type": "uint256"}],
|
|
115
|
+
"name": "getClients",
|
|
116
|
+
"outputs": [{"name": "", "type": "address[]"}],
|
|
117
|
+
"stateMutability": "view",
|
|
118
|
+
"type": "function"
|
|
119
|
+
},
|
|
120
|
+
# Events
|
|
121
|
+
{
|
|
122
|
+
"anonymous": False,
|
|
123
|
+
"inputs": [
|
|
124
|
+
{"indexed": True, "name": "agentId", "type": "uint256"},
|
|
125
|
+
{"indexed": True, "name": "clientAddress", "type": "address"},
|
|
126
|
+
{"indexed": False, "name": "score", "type": "uint8"},
|
|
127
|
+
{"indexed": True, "name": "feedbackIndex", "type": "uint64"}
|
|
128
|
+
],
|
|
129
|
+
"name": "FeedbackSubmitted",
|
|
130
|
+
"type": "event"
|
|
131
|
+
},
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
VALIDATION_REGISTRY_ABI = [
|
|
135
|
+
{
|
|
136
|
+
"inputs": [],
|
|
137
|
+
"name": "getIdentityRegistry",
|
|
138
|
+
"outputs": [{"name": "identityRegistry", "type": "address"}],
|
|
139
|
+
"stateMutability": "view",
|
|
140
|
+
"type": "function"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"inputs": [
|
|
144
|
+
{"name": "validatorAddress", "type": "address"},
|
|
145
|
+
{"name": "agentId", "type": "uint256"},
|
|
146
|
+
{"name": "requestUri", "type": "string"},
|
|
147
|
+
{"name": "requestHash", "type": "bytes32"}
|
|
148
|
+
],
|
|
149
|
+
"name": "validationRequest",
|
|
150
|
+
"outputs": [],
|
|
151
|
+
"stateMutability": "nonpayable",
|
|
152
|
+
"type": "function"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"inputs": [
|
|
156
|
+
{"name": "requestHash", "type": "bytes32"},
|
|
157
|
+
{"name": "response", "type": "uint8"},
|
|
158
|
+
{"name": "responseUri", "type": "string"},
|
|
159
|
+
{"name": "responseHash", "type": "bytes32"},
|
|
160
|
+
{"name": "tag", "type": "bytes32"}
|
|
161
|
+
],
|
|
162
|
+
"name": "validationResponse",
|
|
163
|
+
"outputs": [],
|
|
164
|
+
"stateMutability": "nonpayable",
|
|
165
|
+
"type": "function"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"inputs": [{"name": "requestHash", "type": "bytes32"}],
|
|
169
|
+
"name": "getValidationStatus",
|
|
170
|
+
"outputs": [
|
|
171
|
+
{"name": "validatorAddress", "type": "address"},
|
|
172
|
+
{"name": "agentId", "type": "uint256"},
|
|
173
|
+
{"name": "response", "type": "uint8"},
|
|
174
|
+
{"name": "tag", "type": "bytes32"},
|
|
175
|
+
{"name": "lastUpdate", "type": "uint256"}
|
|
176
|
+
],
|
|
177
|
+
"stateMutability": "view",
|
|
178
|
+
"type": "function"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"inputs": [
|
|
182
|
+
{"name": "agentId", "type": "uint256"},
|
|
183
|
+
{"name": "validatorAddresses", "type": "address[]"},
|
|
184
|
+
{"name": "tag", "type": "bytes32"}
|
|
185
|
+
],
|
|
186
|
+
"name": "getSummary",
|
|
187
|
+
"outputs": [
|
|
188
|
+
{"name": "count", "type": "uint64"},
|
|
189
|
+
{"name": "avgResponse", "type": "uint8"}
|
|
190
|
+
],
|
|
191
|
+
"stateMutability": "view",
|
|
192
|
+
"type": "function"
|
|
193
|
+
},
|
|
194
|
+
# Events
|
|
195
|
+
{
|
|
196
|
+
"anonymous": False,
|
|
197
|
+
"inputs": [
|
|
198
|
+
{"indexed": True, "name": "validatorAddress", "type": "address"},
|
|
199
|
+
{"indexed": True, "name": "agentId", "type": "uint256"},
|
|
200
|
+
{"indexed": False, "name": "requestUri", "type": "string"},
|
|
201
|
+
{"indexed": True, "name": "requestHash", "type": "bytes32"}
|
|
202
|
+
],
|
|
203
|
+
"name": "ValidationRequest",
|
|
204
|
+
"type": "event"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"anonymous": False,
|
|
208
|
+
"inputs": [
|
|
209
|
+
{"indexed": True, "name": "validatorAddress", "type": "address"},
|
|
210
|
+
{"indexed": True, "name": "agentId", "type": "uint256"},
|
|
211
|
+
{"indexed": True, "name": "requestHash", "type": "bytes32"},
|
|
212
|
+
{"indexed": False, "name": "response", "type": "uint8"},
|
|
213
|
+
{"indexed": False, "name": "responseUri", "type": "string"},
|
|
214
|
+
{"indexed": False, "name": "tag", "type": "bytes32"}
|
|
215
|
+
],
|
|
216
|
+
"name": "ValidationResponse",
|
|
217
|
+
"type": "event"
|
|
218
|
+
},
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
# =============================================================================
|
|
223
|
+
# Contract Interfaces
|
|
224
|
+
# =============================================================================
|
|
225
|
+
|
|
226
|
+
class BaseContract:
|
|
227
|
+
"""Base class for contract interactions."""
|
|
228
|
+
|
|
229
|
+
def __init__(self, address: str, abi: List[Dict], chain_id: int = 8453):
|
|
230
|
+
"""Initialize contract interface.
|
|
231
|
+
|
|
232
|
+
Args:
|
|
233
|
+
address: Contract address
|
|
234
|
+
abi: Contract ABI
|
|
235
|
+
chain_id: Chain ID (default: Base)
|
|
236
|
+
"""
|
|
237
|
+
self.address = address
|
|
238
|
+
self.abi = abi
|
|
239
|
+
self.chain_id = chain_id
|
|
240
|
+
self._web3 = None
|
|
241
|
+
self._contract = None
|
|
242
|
+
|
|
243
|
+
def _get_web3(self):
|
|
244
|
+
"""Get web3 instance lazily."""
|
|
245
|
+
if self._web3 is None:
|
|
246
|
+
try:
|
|
247
|
+
from web3 import Web3
|
|
248
|
+
|
|
249
|
+
# Get RPC URL based on chain
|
|
250
|
+
rpc_urls = {
|
|
251
|
+
1: os.environ.get("ETHEREUM_RPC_URL"),
|
|
252
|
+
8453: os.environ.get("BASE_RPC_URL"),
|
|
253
|
+
137: os.environ.get("POLYGON_RPC_URL"),
|
|
254
|
+
42161: os.environ.get("ARBITRUM_RPC_URL"),
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
rpc_url = rpc_urls.get(self.chain_id)
|
|
258
|
+
if not rpc_url:
|
|
259
|
+
raise ValueError(f"No RPC URL configured for chain {self.chain_id}")
|
|
260
|
+
|
|
261
|
+
self._web3 = Web3(Web3.HTTPProvider(rpc_url))
|
|
262
|
+
self._contract = self._web3.eth.contract(
|
|
263
|
+
address=Web3.to_checksum_address(self.address),
|
|
264
|
+
abi=self.abi
|
|
265
|
+
)
|
|
266
|
+
except ImportError:
|
|
267
|
+
logger.warning("web3 not installed, contract interactions disabled")
|
|
268
|
+
return None
|
|
269
|
+
|
|
270
|
+
return self._web3
|
|
271
|
+
|
|
272
|
+
def _get_contract(self):
|
|
273
|
+
"""Get contract instance."""
|
|
274
|
+
self._get_web3()
|
|
275
|
+
return self._contract
|
|
276
|
+
|
|
277
|
+
@property
|
|
278
|
+
def is_available(self) -> bool:
|
|
279
|
+
"""Check if contract interactions are available."""
|
|
280
|
+
return self._get_web3() is not None and self._contract is not None
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
class IdentityRegistryContract(BaseContract):
|
|
284
|
+
"""Interface for the ERC-8004 Identity Registry (ERC-721)."""
|
|
285
|
+
|
|
286
|
+
def __init__(self, address: str, chain_id: int = 8453):
|
|
287
|
+
super().__init__(address, IDENTITY_REGISTRY_ABI, chain_id)
|
|
288
|
+
|
|
289
|
+
async def get_token_uri(self, agent_id: int) -> Optional[str]:
|
|
290
|
+
"""Get the tokenURI for an agent.
|
|
291
|
+
|
|
292
|
+
Args:
|
|
293
|
+
agent_id: Agent's tokenId
|
|
294
|
+
|
|
295
|
+
Returns:
|
|
296
|
+
Token URI (points to registration file)
|
|
297
|
+
"""
|
|
298
|
+
contract = self._get_contract()
|
|
299
|
+
if not contract:
|
|
300
|
+
return None
|
|
301
|
+
|
|
302
|
+
try:
|
|
303
|
+
return contract.functions.tokenURI(agent_id).call()
|
|
304
|
+
except Exception as e:
|
|
305
|
+
logger.error(f"Failed to get tokenURI: {e}")
|
|
306
|
+
return None
|
|
307
|
+
|
|
308
|
+
async def get_owner(self, agent_id: int) -> Optional[str]:
|
|
309
|
+
"""Get the owner of an agent.
|
|
310
|
+
|
|
311
|
+
Args:
|
|
312
|
+
agent_id: Agent's tokenId
|
|
313
|
+
|
|
314
|
+
Returns:
|
|
315
|
+
Owner address
|
|
316
|
+
"""
|
|
317
|
+
contract = self._get_contract()
|
|
318
|
+
if not contract:
|
|
319
|
+
return None
|
|
320
|
+
|
|
321
|
+
try:
|
|
322
|
+
return contract.functions.ownerOf(agent_id).call()
|
|
323
|
+
except Exception as e:
|
|
324
|
+
logger.error(f"Failed to get owner: {e}")
|
|
325
|
+
return None
|
|
326
|
+
|
|
327
|
+
async def get_metadata(self, agent_id: int, key: str) -> Optional[bytes]:
|
|
328
|
+
"""Get on-chain metadata for an agent.
|
|
329
|
+
|
|
330
|
+
Args:
|
|
331
|
+
agent_id: Agent's tokenId
|
|
332
|
+
key: Metadata key (e.g., "agentWallet", "agentName")
|
|
333
|
+
|
|
334
|
+
Returns:
|
|
335
|
+
Metadata value as bytes
|
|
336
|
+
"""
|
|
337
|
+
contract = self._get_contract()
|
|
338
|
+
if not contract:
|
|
339
|
+
return None
|
|
340
|
+
|
|
341
|
+
try:
|
|
342
|
+
return contract.functions.getMetadata(agent_id, key).call()
|
|
343
|
+
except Exception as e:
|
|
344
|
+
logger.error(f"Failed to get metadata: {e}")
|
|
345
|
+
return None
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
class ReputationRegistryContract(BaseContract):
|
|
349
|
+
"""Interface for the ERC-8004 Reputation Registry."""
|
|
350
|
+
|
|
351
|
+
def __init__(self, address: str, chain_id: int = 8453):
|
|
352
|
+
super().__init__(address, REPUTATION_REGISTRY_ABI, chain_id)
|
|
353
|
+
|
|
354
|
+
async def get_aggregated_feedback(
|
|
355
|
+
self,
|
|
356
|
+
agent_id: int,
|
|
357
|
+
client_address: Optional[str] = None,
|
|
358
|
+
tag1: Optional[bytes] = None,
|
|
359
|
+
tag2: Optional[bytes] = None,
|
|
360
|
+
) -> Optional[Dict[str, Any]]:
|
|
361
|
+
"""Get aggregated feedback for an agent.
|
|
362
|
+
|
|
363
|
+
Args:
|
|
364
|
+
agent_id: Agent's tokenId
|
|
365
|
+
client_address: Filter by client
|
|
366
|
+
tag1: Filter by tag1
|
|
367
|
+
tag2: Filter by tag2
|
|
368
|
+
|
|
369
|
+
Returns:
|
|
370
|
+
Aggregated feedback data
|
|
371
|
+
"""
|
|
372
|
+
contract = self._get_contract()
|
|
373
|
+
if not contract:
|
|
374
|
+
return None
|
|
375
|
+
|
|
376
|
+
try:
|
|
377
|
+
from web3 import Web3
|
|
378
|
+
|
|
379
|
+
client = client_address or "0x0000000000000000000000000000000000000000"
|
|
380
|
+
t1 = tag1 or b'\x00' * 32
|
|
381
|
+
t2 = tag2 or b'\x00' * 32
|
|
382
|
+
|
|
383
|
+
result = contract.functions.getAggregatedFeedback(
|
|
384
|
+
agent_id,
|
|
385
|
+
Web3.to_checksum_address(client),
|
|
386
|
+
t1,
|
|
387
|
+
t2
|
|
388
|
+
).call()
|
|
389
|
+
|
|
390
|
+
return {
|
|
391
|
+
"count": result[0],
|
|
392
|
+
"avgScore": result[1],
|
|
393
|
+
"scores": list(result[2]),
|
|
394
|
+
"tag1s": list(result[3]),
|
|
395
|
+
"tag2s": list(result[4]),
|
|
396
|
+
"revokedStatuses": list(result[5]),
|
|
397
|
+
}
|
|
398
|
+
except Exception as e:
|
|
399
|
+
logger.error(f"Failed to get aggregated feedback: {e}")
|
|
400
|
+
return None
|
|
401
|
+
|
|
402
|
+
async def get_clients(self, agent_id: int) -> List[str]:
|
|
403
|
+
"""Get list of clients who provided feedback.
|
|
404
|
+
|
|
405
|
+
Args:
|
|
406
|
+
agent_id: Agent's tokenId
|
|
407
|
+
|
|
408
|
+
Returns:
|
|
409
|
+
List of client addresses
|
|
410
|
+
"""
|
|
411
|
+
contract = self._get_contract()
|
|
412
|
+
if not contract:
|
|
413
|
+
return []
|
|
414
|
+
|
|
415
|
+
try:
|
|
416
|
+
return contract.functions.getClients(agent_id).call()
|
|
417
|
+
except Exception as e:
|
|
418
|
+
logger.error(f"Failed to get clients: {e}")
|
|
419
|
+
return []
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
class ValidationRegistryContract(BaseContract):
|
|
423
|
+
"""Interface for the ERC-8004 Validation Registry."""
|
|
424
|
+
|
|
425
|
+
def __init__(self, address: str, chain_id: int = 8453):
|
|
426
|
+
super().__init__(address, VALIDATION_REGISTRY_ABI, chain_id)
|
|
427
|
+
|
|
428
|
+
async def get_validation_status(
|
|
429
|
+
self,
|
|
430
|
+
request_hash: bytes,
|
|
431
|
+
) -> Optional[Dict[str, Any]]:
|
|
432
|
+
"""Get validation status for a request.
|
|
433
|
+
|
|
434
|
+
Args:
|
|
435
|
+
request_hash: Hash of the validation request
|
|
436
|
+
|
|
437
|
+
Returns:
|
|
438
|
+
Validation status data
|
|
439
|
+
"""
|
|
440
|
+
contract = self._get_contract()
|
|
441
|
+
if not contract:
|
|
442
|
+
return None
|
|
443
|
+
|
|
444
|
+
try:
|
|
445
|
+
result = contract.functions.getValidationStatus(request_hash).call()
|
|
446
|
+
|
|
447
|
+
return {
|
|
448
|
+
"validatorAddress": result[0],
|
|
449
|
+
"agentId": result[1],
|
|
450
|
+
"response": result[2],
|
|
451
|
+
"tag": result[3],
|
|
452
|
+
"lastUpdate": result[4],
|
|
453
|
+
}
|
|
454
|
+
except Exception as e:
|
|
455
|
+
logger.error(f"Failed to get validation status: {e}")
|
|
456
|
+
return None
|
|
457
|
+
|
|
458
|
+
async def get_summary(
|
|
459
|
+
self,
|
|
460
|
+
agent_id: int,
|
|
461
|
+
validator_addresses: Optional[List[str]] = None,
|
|
462
|
+
tag: Optional[bytes] = None,
|
|
463
|
+
) -> Optional[Dict[str, Any]]:
|
|
464
|
+
"""Get validation summary for an agent.
|
|
465
|
+
|
|
466
|
+
Args:
|
|
467
|
+
agent_id: Agent's tokenId
|
|
468
|
+
validator_addresses: Filter by validators
|
|
469
|
+
tag: Filter by tag
|
|
470
|
+
|
|
471
|
+
Returns:
|
|
472
|
+
Summary with count and average response
|
|
473
|
+
"""
|
|
474
|
+
contract = self._get_contract()
|
|
475
|
+
if not contract:
|
|
476
|
+
return None
|
|
477
|
+
|
|
478
|
+
try:
|
|
479
|
+
from web3 import Web3
|
|
480
|
+
|
|
481
|
+
validators = validator_addresses or []
|
|
482
|
+
validators_checksum = [Web3.to_checksum_address(v) for v in validators]
|
|
483
|
+
t = tag or b'\x00' * 32
|
|
484
|
+
|
|
485
|
+
result = contract.functions.getSummary(
|
|
486
|
+
agent_id,
|
|
487
|
+
validators_checksum,
|
|
488
|
+
t
|
|
489
|
+
).call()
|
|
490
|
+
|
|
491
|
+
return {
|
|
492
|
+
"count": result[0],
|
|
493
|
+
"avgResponse": result[1],
|
|
494
|
+
}
|
|
495
|
+
except Exception as e:
|
|
496
|
+
logger.error(f"Failed to get validation summary: {e}")
|
|
497
|
+
return None
|
|
498
|
+
|