Back to Hermes Agent

Plugin compatibility manifest (temporary)

COMPAT_MANIFEST.md

2026.9.7156.0 KB
Original Source

Plugin compatibility manifest (temporary)

The September 2026 decomposition (PR #102117) split the large modules of Hermes Agent into focused files. Internal import paths are not a stable API, and after that PR the names below are no longer defined where they used to be. To give external plugin authors time to update, every name is still importable from its OLD module through a PLUGIN-COMPAT block appended to that module.

This layer is temporary and removed on 2026-09-14. It was added as a single commit and is removed by reverting that commit. Update your plugin to import from the new location column now. Nothing inside this repository is allowed to use these pointers (scripts/check_compat_pointers.py fails CI if it does).

What happens to an affected plugin.

whenCLI banner / hermes doctor / hermes updateDesktopthe plugin
before 2026-09-14yellow notice naming the plugin, the date, and hermes plugins compatone-time modal (per set of affected plugins)loads; each old-path resolution emits HermesPluginCompatWarning once
from 2026-09-14red notice: plugin DISABLEDone-time modalnot loaded; hermes plugins list shows the reason
after the revert landssamesamenot loaded (the old paths no longer exist)

Escape hatch for users who cannot wait on an author: plugins.allow_deprecated_imports: true in config.yaml keeps affected plugins loading after the date, until the revert actually removes the paths.

For plugin authors: run hermes plugins compat <path-to-your-plugin> — it prints every file:line, old path → new path, and exits 1 while anything remains. Import from the new location column.

You will see a warning. The first time a process resolves a name through one of these blocks, Hermes emits a HermesPluginCompatWarning (a FutureWarning) naming the old path, the new path, and the removal target — once per name per process. Fix the import and it goes away. To silence during migration: python -W ignore::hermes_cli.plugin_compat.HermesPluginCompatWarning or warnings.filterwarnings("ignore", category=HermesPluginCompatWarning).

Scope. Only PUBLIC names (no leading underscore) that were defined or imported at module top level before the decomposition are covered. Private names (_foo, _TG_NAME_LIMIT, _clamp_telegram_names, ...) were never part of any surface and are NOT restored; a plugin that patched or imported one must move to the public equivalent or the new module. Test monkeypatch seams are likewise not preserved.

kindcountmeaning
moved0name now defined in new location; re-exported from the old module
moved-lazy1148same, resolved lazily via __getattr__ to avoid an import cycle
import592a third-party/stdlib name the old module used to expose; original import restored
restored-def290public name that was deleted as unused; its pre-decomposition definition is restored verbatim
restored-helper41private helper restored only because a restored-def above depends on it
restored-import17import re-added only because a restored-def above depends on it
module-stub3whole module deleted; stub re-exports from its replacement
unrestorable34not restorable (e.g. leaked loop variables); listed for completeness

Names by old module

acp_adapter.auth

namekindnew location
has_providerrestored-def(deleted; BASE body restored)

acp_adapter.edit_approval

namekindnew location
FutureTimeoutimportconcurrent.futures
clear_edit_approval_requesterrestored-def(deleted; BASE body restored)
get_edit_approval_requesterrestored-def(deleted; BASE body restored)

acp_adapter.events

namekindnew location
jsonimportjson

acp_adapter.server

namekindnew location
ACP_MAX_MODELS_PER_PROVIDERmoved-lazyacp_adapter.model_catalog
AgentThoughtChunkimportacp.schema
AudioContentBlockimportacp.schema
AvailableCommandimportacp.schema
AvailableCommandsUpdateimportacp.schema
BlobResourceContentsimportacp.schema
EmbeddedResourceContentBlockimportacp.schema
ImageContentBlockimportacp.schema
Pathimportpathlib
ResourceContentBlockimportacp.schema
TextResourceContentsimportacp.schema
UnstructuredCommandInputimportacp.schema
base64importbase64
jsonimportjson
unquoteimporturllib.parse
urlparseimporturllib.parse

acp_adapter.session

namekindnew location
Lockimportthreading

agent

namekindnew location
message_sanitizationunrestorableno top-level definition on BASE

agent.agent_init

namekindnew location
ToolGuardrailDecisionmoved-lazyagent.tool_guardrails

agent.agent_runtime_helpers

namekindnew location
agent_runtime_owns_post_tool_hookrestored-def(deleted; BASE body restored)
intent_ack_continuation_enabledrestored-def(deleted; BASE body restored)

agent.anthropic_adapter

namekindnew location
CredentialPersistErrormoved-lazyagent.anthropic_credentials
Pathimportpathlib
Tupleimporttyping
base_url_host_matchesmoved-lazyutils
base_url_hostnamemoved-lazyutils
claude_code_credentials_pathmoved-lazyagent.anthropic_credentials
copyimportcopy
get_hermes_homemoved-lazyhermes_constants
is_claude_code_token_validmoved-lazyagent.anthropic_credentials
is_rotation_consumed_uncommittedmoved-lazyagent.anthropic_credentials
jsonimportjson
mark_rotation_consumed_uncommittedmoved-lazyagent.anthropic_credentials
osimportos
platformimportplatform
read_claude_code_credentialsmoved-lazyagent.anthropic_credentials
read_hermes_oauth_credentialsmoved-lazyagent.anthropic_credentials
refresh_anthropic_oauth_puremoved-lazyagent.anthropic_credentials
resolve_anthropic_tokenmoved-lazyagent.anthropic_credentials
run_hermes_oauth_login_puremoved-lazyagent.anthropic_credentials
run_oauth_setup_tokenmoved-lazyagent.anthropic_credentials
secretsimportsecrets
statimportstat
urlparseimporturllib.parse

agent.aux_accounting

namekindnew location
get_accounting_contextrestored-def(deleted; BASE body restored)

agent.auxiliary_client

namekindnew location
NOUS_EXTRA_BODYrestored-def(deleted; BASE body restored)
Pathimportpathlib
copyimportcopy
get_async_text_auxiliary_clientrestored-def(deleted; BASE body restored)

agent.backend_identity

namekindnew location
_REASON_SCOPESrestored-helper(deleted; restored as a dependency of classify_failure_scope)
classify_failure_scoperestored-def(deleted; BASE body restored)

agent.background_review

namekindnew location
Pathimportpathlib
is_background_review_enabledrestored-def(deleted; BASE body restored)

agent.bedrock_adapter

namekindnew location
CONTEXT_OVERFLOW_PATTERNSrestored-def(deleted; BASE body restored)
OVERLOAD_PATTERNSrestored-def(deleted; BASE body restored)
THROTTLE_PATTERNSrestored-def(deleted; BASE body restored)
call_converse_streamrestored-def(deleted; BASE body restored)
classify_bedrock_errorrestored-def(deleted; BASE body restored)
is_context_overflow_errorrestored-helper(deleted; restored as a dependency of classify_bedrock_error)
is_context_overflow_errorrestored-def(deleted; BASE body restored)

agent.bounded_response

namekindnew location
Optionalimporttyping
read_error_body_or_defaultrestored-def(deleted; BASE body restored)

agent.browser_provider

namekindnew location
Anyimporttyping
Optionalimporttyping

agent.browser_registry

namekindnew location
Dictimporttyping
Listimporttyping
hermes_home_keymoved-lazyhermes_constants
threadingimportthreading

agent.codex_runtime

namekindnew location
run_codex_create_stream_fallbackrestored-def(deleted; BASE body restored)

agent.coding_context

namekindnew location
_PROFILESrestored-helper(deleted; restored as a dependency of get_profile)
coding_system_blocksrestored-def(deleted; BASE body restored)
get_profilerestored-def(deleted; BASE body restored)

agent.context_compressor

namekindnew location
tool_result_id_variantsmoved-lazyagent.message_sanitization

agent.conversation_compression

namekindnew location
CompressionExecutorSaturatedErrorrestored-def(deleted; BASE body restored)

agent.conversation_loop

namekindnew location
COMPRESSION_RETRY_CONTEXT_REDUCED_STATUS_TEMPLATEmoved-lazyagent.conversation_compression
COMPRESSION_RETRY_MESSAGES_STATUS_TEMPLATEmoved-lazyagent.conversation_compression
COMPRESSION_RETRY_TOKENS_STATUS_TEMPLATEmoved-lazyagent.conversation_compression
COMPRESSION_RETRY_TOO_LARGE_STATUS_TEMPLATEmoved-lazyagent.conversation_compression
FailoverReasonmoved-lazyagent.error_classifier
KawaiiSpinnermoved-lazyagent.display
PARTIAL_STREAM_STUB_IDmoved-lazyhermes_constants
PRE_API_COMPRESSION_STATUS_TEMPLATEmoved-lazyagent.conversation_compression
adaptive_rate_limit_backoffmoved-lazyagent.retry_utils
anchored_context_tokensmoved-lazyagent.model_metadata
automatic_compaction_status_messagemoved-lazyagent.context_engine
capture_usage_anchormoved-lazyagent.model_metadata
classify_api_errormoved-lazyagent.error_classifier
close_interrupted_tool_sequencemoved-lazyagent.message_sanitization
coalesce_tool_call_idmoved-lazyagent.message_sanitization
compose_user_api_contentmoved-lazyagent.turn_context
compression_blocked_transientlymoved-lazyagent.conversation_compression
compression_skipped_due_to_lockmoved-lazyagent.conversation_compression
context_compression_timed_outmoved-lazyagent.conversation_compression
conversation_history_after_compressionmoved-lazyagent.conversation_compression
env_var_enabledmoved-lazyutils
estimate_messages_tokens_roughmoved-lazyagent.model_metadata
estimate_request_tokens_roughmoved-lazyagent.model_metadata
estimate_usage_costmoved-lazyagent.usage_pricing
get_context_length_from_provider_errormoved-lazyagent.model_metadata
has_incomplete_scratchpadmoved-lazyagent.trajectory
is_output_cap_errormoved-lazyagent.model_metadata
is_repetition_dominatedmoved-lazyagent.repetition_guard
is_zai_coding_overload_errormoved-lazyagent.retry_utils
jittered_backoffmoved-lazyagent.retry_utils
normalize_usagemoved-lazyagent.usage_pricing
osimportos
parse_available_output_tokens_from_errormoved-lazyagent.model_metadata
randomimportrandom
reanchor_current_turn_user_idxmoved-lazyagent.turn_context
save_context_lengthmoved-lazyagent.model_metadata
serialized_messages_bytesmoved-lazyagent.message_sanitization
splice_provider_projectionmoved-lazyagent.provider_projection
sslimportssl
sysimportsys
zai_coding_overload_retry_ceilingmoved-lazyagent.retry_utils

agent.credential_sources

namekindnew location
registerrestored-def(deleted; BASE body restored)

agent.display

namekindnew location
get_friendly_tool_labelsrestored-def(deleted; BASE body restored)

agent.error_surface

namekindnew location
LAYER_RUNTIMErestored-def(deleted; BASE body restored)

agent.estop

namekindnew location
osimportos

agent.file_safety

namekindnew location
PROFILE_SCOPED_AREASrestored-def(deleted; BASE body restored)
classify_cross_profile_targetrestored-def(deleted; BASE body restored)
get_cross_profile_warningrestored-def(deleted; BASE body restored)

agent.image_gen_provider

namekindnew location
base64importbase64
datetimeimportdatetime
uuidimportuuid

agent.image_gen_registry

namekindnew location
Dictimporttyping
Listimporttyping
hermes_home_keymoved-lazyhermes_constants
threadingimportthreading

agent.learning_graph_render

namekindnew location
Gridrestored-def(deleted; BASE body restored)
Runrestored-def(deleted; BASE body restored)

agent.lsp.eventlog

namekindnew location
_announce_oncerestored-helper(deleted; restored as a dependency of log_no_server_configured)
_announced_no_serverrestored-helper(deleted; restored as a dependency of log_no_server_configured)
log_no_server_configuredrestored-def(deleted; BASE body restored)

agent.lsp.protocol

namekindnew location
ERROR_REQUEST_CANCELLEDrestored-def(deleted; BASE body restored)

agent.monitoring.cron_health

namekindnew location
GatewayHealthSnapshotmoved-lazyagent.monitoring.gateway_health
hashlibimporthashlib

agent.monitoring.emitter

namekindnew location
TelemetryEmitterrestored-def(deleted; BASE body restored)

agent.monitoring.gateway_health

namekindnew location
redact_gateway_messagerestored-def(deleted; BASE body restored)

agent.monitoring.gateway_health_export

namekindnew location
reimportre

agent.nous_rate_guard

namekindnew location
atomic_replacemoved-lazyutils
tempfileimporttempfile

agent.outbound_webhooks

namekindnew location
Pathimportpathlib
datetimeimportdatetime
timezoneimportdatetime

agent.pet.generate.atlas

namekindnew location
COLUMNSrestored-def(deleted; BASE body restored)
FRAME_COUNTSrestored-def(deleted; BASE body restored)
ROWSrestored-def(deleted; BASE body restored)
atlas_to_webp_bytesrestored-def(deleted; BASE body restored)
iorestored-importio
ioimportio

agent.prompt_builder

namekindnew location
Listimporttyping
org_id_of_pathmoved-lazyagent.skill_utils

agent.prompt_cache_boundary

namekindnew location
clear_stable_prefixesrestored-def(deleted; BASE body restored)

agent.proxy_sources.iron_proxy

namekindnew location
statimportstat

agent.reasoning_effort

namekindnew location
CODEX_RESPONSES_EFFORTSrestored-def(deleted; BASE body restored)

agent.relay_llm

namekindnew location
dataclassimportdataclasses

agent.relay_runtime

namekindnew location
autoimportenum
emit_markrestored-def(deleted; BASE body restored)
ensure_sessionrestored-def(deleted; BASE body restored)
get_hostrestored-def(deleted; BASE body restored)
get_session_handlerestored-def(deleted; BASE body restored)
run_in_sessionrestored-def(deleted; BASE body restored)
run_in_session_asyncrestored-def(deleted; BASE body restored)

agent.relay_tools

namekindnew location
asyncioimportasyncio
inspectimportinspect

agent.review_idle_queue

namekindnew location
Listimporttyping

agent.secret_sources._cache

namekindnew location
FetchResultmoved-lazyagent.secret_sources.base
is_valid_env_namemoved-lazyagent.secret_sources.base

agent.secret_sources.bitwarden

namekindnew location
DiskCachemoved-lazyagent.secret_sources._cache
apply_bitwarden_secretsrestored-def(deleted; BASE body restored)
statimportstat

agent.secret_sources.command

namekindnew location
apply_command_secretsrestored-def(deleted; BASE body restored)
get_command_secretrestored-def(deleted; BASE body restored)
get_source_environmentmoved-lazyagent.secret_sources.base
list_command_secretsrestored-def(deleted; BASE body restored)
parse_secret_outputrestored-helper(deleted; restored as a dependency of get_command_secret)
parse_secret_outputrestored-def(deleted; BASE body restored)

agent.secret_sources.onepassword

namekindnew location
DiskCachemoved-lazyagent.secret_sources._cache
hashlibimporthashlib

agent.shell_hooks

namekindnew location
shleximportshlex

agent.skill_bundles

namekindnew location
reimportre

agent.skill_utils

namekindnew location
get_scan_ordered_skills_dirsrestored-def(deleted; BASE body restored)

agent.ssl_guard

namekindnew location
verify_ca_bundle_with_fallbackrestored-def(deleted; BASE body restored)

agent.system_prompt

namekindnew location
OPENAI_MODEL_EXECUTION_GUIDANCEmoved-lazyagent.prompt_builder

agent.terminal_env_registry

namekindnew location
Dictimporttyping
hermes_home_keymoved-lazyhermes_constants
threadingimportthreading

agent.transcript_repair

namekindnew location
Optionalimporttyping

agent.transcription_provider

namekindnew location
Listimporttyping
loggermoved-lazyagent.i18n
loggingimportlogging

agent.transcription_registry

namekindnew location
Dictimporttyping
Listimporttyping
Optionalimporttyping
hermes_home_keymoved-lazyhermes_constants
threadingimportthreading

agent.transports.chat_completions

namekindnew location
Dictimporttyping

agent.transports.codex

namekindnew location
Dictimporttyping
Listimporttyping
Tupleimporttyping

agent.transports.codex_app_server

namekindnew location
fieldimportdataclasses
timeimporttime

agent.tts_registry

namekindnew location
Dictimporttyping
Listimporttyping
Optionalimporttyping
hermes_home_keymoved-lazyhermes_constants
threadingimportthreading

agent.turn_context

namekindnew location
IDLE_COMPACTION_STATUS_TEMPLATEmoved-lazyagent.conversation_compression
PREFLIGHT_COMPRESSION_STATUS_TEMPLATEmoved-lazyagent.conversation_compression
automatic_compaction_status_messagemoved-lazyagent.context_engine
compression_skipped_due_to_lockmoved-lazyagent.conversation_compression
conversation_history_after_compressionmoved-lazyagent.conversation_compression

agent.turn_retry_state

namekindnew location
fieldsimportdataclasses

agent.usage_pricing

namekindnew location
DEFAULT_PRICINGrestored-def(deleted; BASE body restored)

agent.video_gen_provider

namekindnew location
base64importbase64
datetimeimportdatetime
uuidimportuuid

agent.video_gen_registry

namekindnew location
Dictimporttyping
Listimporttyping
hermes_home_keymoved-lazyhermes_constants
threadingimportthreading

agent.web_search_provider

namekindnew location
Optionalimporttyping

agent.web_search_registry

namekindnew location
Dictimporttyping
Listimporttyping
hermes_home_keymoved-lazyhermes_constants
threadingimportthreading

cli

namekindnew location
AIAgentrestored-def(deleted; BASE body restored)
CanonicalUsagerestored-def(deleted; BASE body restored)
CompletionsMenuimportprompt_toolkit.layout.menus
Conditionimportprompt_toolkit.filters
ConditionalContainerimportprompt_toolkit.layout
ConditionalProcessorimportprompt_toolkit.layout.processors
DEFAULT_BROWSER_CDP_URLmoved-lazyhermes_cli.browser_connect
Dimensionimportprompt_toolkit.layout.dimension
FileHistoryimportprompt_toolkit.history
FormattedTextControlimportprompt_toolkit.layout
HERMES_AGENT_LOGOmoved-lazyhermes_cli.banner
HERMES_CADUCEUSmoved-lazyhermes_cli.banner
HSplitimportprompt_toolkit.layout
KeyBindingsimportprompt_toolkit.key_binding
Layoutimportprompt_toolkit.layout
PTStyleimportprompt_toolkit.styles
Panelimportrich.panel
PasswordProcessorimportprompt_toolkit.layout.processors
Processorimportprompt_toolkit.layout.processors
SlashCommandAutoSuggestmoved-lazyhermes_cli.commands_completion
SlashCommandCompletermoved-lazyhermes_cli.commands_completion
TextAreaimportprompt_toolkit.widgets
Transformationimportprompt_toolkit.layout.processors
Windowimportprompt_toolkit.layout
WindowAlignimportprompt_toolkit.layout
base64importbase64
build_welcome_bannermoved-lazyhermes_cli.banner
concurrentimportconcurrent.futures
copyimportcopy
display_hermes_homemoved-lazyhermes_constants
estimate_usage_costmoved-lazyagent.usage_pricing
get_all_toolsetsmoved-lazytoolsets
get_jobmoved-lazycron.jobs
get_toolset_for_toolmoved-lazymodel_tools
get_toolset_infomoved-lazytoolsets
init_skin_from_configmoved-lazyhermes_cli.skin_engine
is_browser_debug_readymoved-lazyhermes_cli.browser_connect
is_table_dividermoved-lazyagent.markdown_tables
looks_like_table_rowmoved-lazyagent.markdown_tables
manual_chrome_debug_commandmoved-lazyhermes_cli.browser_connect
print_config_warningsmoved-lazyhermes_cli.config
prompt_for_secretmoved-lazyhermes_cli.callbacks
rich_boximportrich
set_friendly_tool_labelsmoved-lazyagent.display
set_tool_preview_max_lenmoved-lazyagent.display
setup_loggingmoved-lazyhermes_logging
tempfileimporttempfile
try_launch_chrome_debugunrestorableno top-level definition on BASE

cron.jobs

namekindnew location
clear_drift_alertedrestored-def(deleted; BASE body restored)

cron.scheduler

namekindnew location
BOT_CHAT_PLATFORMmoved-lazycron.scheduler_delivery
SharedRouteAdaptersmoved-lazycron.scheduler_preflight
asyncioimportasyncio
cron_delivery_targetsmoved-lazycron.scheduler_delivery
parse_bot_chat_deliver_tokenmoved-lazycron.scheduler_delivery
shutilimportshutil
signalimportsignal

cron.scheduler_provider

namekindnew location
provider_supports_fire_cancelrestored-def(deleted; BASE body restored)

gateway.browser_control_artifacts

namekindnew location
ArtifactOverwriterestored-def(deleted; BASE body restored)

gateway.browser_control_broker

namekindnew location
BROWSER_CONTROL_ALL_CAPABILITIESrestored-def(deleted; BASE body restored)

gateway.config

namekindnew location
jsonimportjson

gateway.delivery_ledger

namekindnew location
debug_rowsrestored-def(deleted; BASE body restored)
jsonrestored-importjson
jsonimportjson

gateway.disk_status

namekindnew location
loggermoved-lazygateway.run
loggingimportlogging

gateway.hosted_room_discussion

namekindnew location
jsonimportjson

gateway.hosted_room_driver

namekindnew location
Iteratorimporttyping
Pathimportpathlib
contextmanagerimportcontextlib
reimportre

gateway.hosted_room_execution_policy

namekindnew location
jsonimportjson
reimportre

gateway.hosted_room_peer

namekindnew location
RoomLinkProberestored-def(deleted; BASE body restored)
RoomLinkProberestored-helper(deleted; restored as a dependency of select_room_link)
_LINK_PRIORITYrestored-helper(deleted; restored as a dependency of select_room_link)
select_room_linkrestored-def(deleted; BASE body restored)
timeimporttime

gateway.hosted_room_replicas

namekindnew location
MAX_EVENT_JSON_BYTESmoved-lazygateway.hosted_rooms
MAX_ROOM_ID_CHARSmoved-lazygateway.hosted_rooms
Pathimportpathlib
timeimporttime

gateway.hosted_rooms

namekindnew location
Iteratorimporttyping
NoReturnimporttyping
contextmanagerimportcontextlib
timeimporttime

gateway.kanban_watchers

namekindnew location
Callableimporttyping
Contextimportcontextvars
loggingimportlogging
reimportre
sqlite3importsqlite3
tmoved-lazyagent.i18n

gateway.memory_status

namekindnew location
loggermoved-lazygateway.run
loggingimportlogging

gateway.platforms.helpers

namekindnew location
Dictimporttyping
TYPE_CHECKINGimporttyping
TextBatchAggregatorrestored-def(deleted; BASE body restored)
asynciorestored-importasyncio
asyncioimportasyncio

gateway.platforms.qqbot

namekindnew location
ApprovalSenderunrestorableno top-level definition on BASE

gateway.platforms.qqbot.adapter

namekindnew location
base64importbase64
mimetypesimportmimetypes

gateway.platforms.qqbot.chunked_upload

namekindnew location
ApiRequestFnrestored-def(deleted; BASE body restored)
Optionalimporttyping
functoolsimportfunctools

gateway.platforms.qqbot.keyboards

namekindnew location
ApprovalSenderrestored-def(deleted; BASE body restored)
Awaitablerestored-importtyping
Awaitableimporttyping
Callablerestored-importtyping
Callableimporttyping
PostMessageFnrestored-helper(deleted; restored as a dependency of ApprovalSender)
PostMessageFnrestored-def(deleted; BASE body restored)
loggerrestored-helper(deleted; restored as a dependency of ApprovalSender)
loggermoved-lazygateway.platforms.qqbot.adapter
loggingrestored-importlogging
loggingimportlogging

gateway.platforms.signal

namekindnew location
DEFAULT_EXT_TO_MIMEmoved-lazygateway.platforms.media_cache
TYPING_INTERVALrestored-def(deleted; BASE body restored)

gateway.platforms.weixin

namekindnew location
MSG_TYPE_USERrestored-def(deleted; BASE body restored)
structimportstruct

gateway.platforms.yuanbao

namekindnew location
AUTH_FAILED_CODESrestored-def(deleted; BASE body restored)
AUTH_RETRYABLE_CODESrestored-def(deleted; BASE body restored)
FileUrlHandlerrestored-def(deleted; BASE body restored)
GroupQueryServicerestored-def(deleted; BASE body restored)
REPLY_REF_TTL_Srestored-def(deleted; BASE body restored)
get_active_adapterrestored-def(deleted; BASE body restored)
send_yuanbao_directrestored-def(deleted; BASE body restored)

gateway.platforms.yuanbao_media

namekindnew location
COS_USE_ACCELERATErestored-def(deleted; BASE body restored)

gateway.platforms.yuanbao_proto

namekindnew location
DEBUG_MODErestored-def(deleted; BASE body restored)
_encode_forward_msgrestored-helper(deleted; restored as a dependency of encode_forward_msg_data)
_encode_forward_msg_contentrestored-helper(deleted; restored as a dependency of encode_forward_msg_data)
_encode_forward_multimediarestored-helper(deleted; restored as a dependency of encode_forward_msg_data)
encode_forward_msg_datarestored-def(deleted; BASE body restored)
loggermoved-lazygateway.platforms.base
loggingimportlogging

gateway.relay

namekindnew location
relay_bot_usernamerestored-def(deleted; BASE body restored)

gateway.relay.adapter

namekindnew location
castimporttyping

gateway.relay.auth

namekindnew location
DELIVERY_SIG_HEADERrestored-def(deleted; BASE body restored)
DELIVERY_TS_HEADERrestored-def(deleted; BASE body restored)
Optionalimporttyping
Sequenceimporttyping
_DEFAULT_MAX_SKEW_SECONDSrestored-helper(deleted; restored as a dependency of verify_delivery_signature)
_delivery_payloadrestored-helper(deleted; restored as a dependency of verify_delivery_signature)
_hmac_hexrestored-helper(deleted; restored as a dependency of verify_delivery_signature)
verify_delivery_signaturerestored-def(deleted; BASE body restored)
verify_signaturerestored-helper(deleted; restored as a dependency of verify_delivery_signature)
verify_signaturerestored-def(deleted; BASE body restored)
verify_tokenrestored-def(deleted; BASE body restored)

gateway.response_filters

namekindnew location
SILENT_REPLY_TOKENrestored-def(deleted; BASE body restored)

gateway.restart_loop_guard

namekindnew location
is_restart_loop_trippedrestored-def(deleted; BASE body restored)

gateway.run

namekindnew location
Awaitableimporttyping
Contextimportcontextvars
DEFAULT_GATEWAY_POST_INTERRUPT_GRACE_TIMEOUTmoved-lazygateway.restart
DEFAULT_HEARTBEAT_INTERVAL_Smoved-lazygateway.shutdown_watchdog
DEFAULT_LEASE_WAITmoved-lazygateway.turn_lease
DEFAULT_LOOP_WATCHDOG_INTERVAL_Smoved-lazygateway.shutdown_watchdog
DEFAULT_LOOP_WATCHDOG_MAX_STRIKESmoved-lazygateway.shutdown_watchdog
DEFAULT_LOOP_WATCHDOG_TIMEOUT_Smoved-lazygateway.shutdown_watchdog
EphemeralReplymoved-lazygateway.platforms.base
GATEWAY_FATAL_CONFIG_EXIT_CODEmoved-lazygateway.restart
GATEWAY_SERVICE_RESTART_EXIT_CODEmoved-lazygateway.restart
SessionEntrymoved-lazygateway.session
TranscriptReadErrormoved-lazygateway.session_transcript
TurnContextmoved-lazygateway.turn_context
TurnLeaseTimeoutErrormoved-lazygateway.turn_lease
TurnRunnermoved-lazygateway.run_turn_runner
Unionimporttyping
arm_shutdown_watchdogmoved-lazygateway.shutdown_watchdog
atomic_json_writemoved-lazyutils
base_url_hostnamemoved-lazyutils
build_auto_tts_output_pathmoved-lazygateway.platforms.base
build_channel_continuity_notemoved-lazygateway.session
build_session_contextmoved-lazygateway.session
build_session_context_promptmoved-lazygateway.session
consume_detached_task_resultmoved-lazyagent.async_utils
faulthandlerimportfaulthandler
functoolsimportfunctools
inspectimportinspect
is_global_startup_conflictmoved-lazygateway.restart
is_shared_multi_user_sessionmoved-lazygateway.session
is_truthy_valuemoved-lazyutils
load_dotenvimportdotenv
looks_like_telegram_private_chat_idmoved-lazygateway.delivery
loop_heartbeat_forevermoved-lazygateway.shutdown_watchdog
merge_pending_message_eventmoved-lazygateway.platforms.base
neutralize_untrusted_inline_textmoved-lazygateway.session
parse_cron_drain_timeoutmoved-lazygateway.restart
parse_restart_after_turn_timeoutmoved-lazygateway.restart
parse_restart_drain_timeoutmoved-lazygateway.restart
parse_signal_interrupt_grace_timeoutmoved-lazygateway.restart
project_compaction_message_for_displaymoved-lazyagent.compaction_display
queueimportqueue
repair_explicit_computer_use_media_pathsmoved-lazygateway.media_repair
resolve_cron_drain_budgetmoved-lazygateway.restart
resolve_delivery_transportmoved-lazygateway.delivery
resolve_shutdown_watchdog_delaymoved-lazygateway.shutdown_watchdog
start_loop_liveness_watchdogmoved-lazygateway.shutdown_watchdog
tmoved-lazyagent.i18n
timedeltaimportdatetime
timezoneimportdatetime
utf16_lenmoved-lazygateway.platforms.base

gateway.session

namekindnew location
SessionResetPolicymoved-lazygateway.config
TranscriptReadErrormoved-lazygateway.session_transcript
atomic_replacemoved-lazyutils
auto_continue_freshness_windowmoved-lazygateway.session_lifecycle
extract_api_content_sidecarmoved-lazyagent.turn_context
normalize_whatsapp_identifiermoved-lazygateway.whatsapp_identity
replaceimportdataclasses
uuidimportuuid

gateway.slash_access

namekindnew location
Tupleimporttyping

gateway.slash_commands

namekindnew location
Anyimporttyping
HISTORY_UNREADABLEmoved-lazygateway.slash_commands_status
MessageTypemoved-lazygateway.platforms.event
SessionSourcemoved-lazygateway.session
base_url_host_matchesmoved-lazyutils
build_session_keymoved-lazygateway.session
clear_model_endpoint_credentialsmoved-lazyhermes_cli.config
extract_api_content_sidecarmoved-lazyagent.turn_context
fetch_account_usagemoved-lazyagent.account_usage
hashlibimporthashlib
is_shared_multi_user_sessionmoved-lazygateway.session
render_account_usage_linesmoved-lazyagent.account_usage

gateway.startup_watchdog

namekindnew location
*module-stubgateway.shutdown_watchdog

gateway.status

namekindnew location
clear_planned_stop_markerrestored-def(deleted; BASE body restored)
is_gateway_runningrestored-def(deleted; BASE body restored)

gateway.sticker_cache

namekindnew location
osimportos
tempfileimporttempfile

gateway.stream_consumer

namekindnew location
MEDIA_TAG_CLEANUP_REmoved-lazygateway.platforms.base
escape_code_fences_for_displaymoved-lazygateway.stream_consumer_fences

gateway.stream_dispatch

namekindnew location
ToolCallFinishedmoved-lazygateway.stream_events

gateway.systemd_notify

namekindnew location
Optionalimporttyping

hermes_cli.agent_import

namekindnew location
backup_memory_filerestored-def(deleted; BASE body restored)
default_source_dirrestored-def(deleted; BASE body restored)

hermes_cli.auth

namekindnew location
BaseHTTPRequestHandlerimporthttp.server
CODEX_OAUTH_USER_AGENTmoved-lazyhermes_cli.auth_constants
CODEX_QUOTA_PROBE_MIN_INTERVAL_SECONDSmoved-lazyhermes_cli.auth_codex
DEFAULT_SPOTIFY_REDIRECT_URImoved-lazyhermes_cli.auth_constants
DEVICE_AUTH_POLL_INTERVAL_CAP_SECONDSmoved-lazyhermes_cli.auth_constants
HTTPServerimporthttp.server
MINIMAX_OAUTH_GRANT_TYPEmoved-lazyhermes_cli.auth_constants
NOUS_INFERENCE_INVOKE_SCOPEmoved-lazyhermes_cli.auth_constants
NOUS_SHARED_STORE_FILENAMEmoved-lazyhermes_cli.auth_nous
OAUTH_OVER_SSH_DOCS_URLmoved-lazyhermes_cli.auth_constants
QWEN_OAUTH_CLIENT_IDmoved-lazyhermes_cli.auth_constants
QWEN_OAUTH_TOKEN_URLmoved-lazyhermes_cli.auth_constants
SINGLE_USE_OAUTH_SINGLETON_FILESmoved-lazyhermes_cli.auth_oauth_grants
SPOTIFY_ACCESS_TOKEN_REFRESH_SKEW_SECONDSmoved-lazyhermes_cli.auth_constants
SPOTIFY_DASHBOARD_URLmoved-lazyhermes_cli.auth_constants
TYPE_CHECKINGimporttyping
XAI_OAUTH_DEVICE_CODE_URLmoved-lazyhermes_cli.auth_constants
XAI_OAUTH_DISCOVERY_URLmoved-lazyhermes_cli.auth_constants
XAI_OAUTH_ISSUERmoved-lazyhermes_cli.auth_constants
base64importbase64
hashlibimporthashlib
parse_qsimporturllib.parse
refresh_nous_oauth_puremoved-lazyhermes_cli.auth_nous
sslimportssl
subprocessimportsubprocess
sysimportsys
urlencodeimporturllib.parse

hermes_cli.backup

namekindnew location
copy_db_and_verifyrestored-def(deleted; BASE body restored)

hermes_cli.browser_connect

namekindnew location
try_launch_chrome_debugrestored-def(deleted; BASE body restored)

hermes_cli.callbacks

namekindnew location
approval_callbackrestored-def(deleted; BASE body restored)
clarify_callbackrestored-def(deleted; BASE body restored)

hermes_cli.checkpoints

namekindnew location
cmd_listmoved-lazyhermes_cli.plugins_cmd
datetimeimportdatetime

hermes_cli.commands

namekindnew location
Anyimporttyping
AutoSuggestunrestorableno top-level definition on BASE
Callableimportcollections.abc
Completerunrestorableno top-level definition on BASE
Completionunrestorableno top-level definition on BASE
Dictimporttyping
Mappingimportcollections.abc
Optionalimporttyping
Sequenceimportcollections.abc
SlashCommandAutoSuggestmoved-lazyhermes_cli.commands_completion
SlashCommandCompletermoved-lazyhermes_cli.commands_completion
Suggestionunrestorableno top-level definition on BASE
Tupleimporttyping
_CMD_NAME_LIMITrestored-helper(deleted; restored as a dependency of discord_skill_commands)
_clamp_command_namesrestored-helper(deleted; restored as a dependency of discord_skill_commands)
_collect_gateway_skill_entriesrestored-helper(deleted; restored as a dependency of discord_skill_commands)
_requires_argumentrestored-helper(deleted; restored as a dependency of discord_skill_commands)
discord_skill_commandsrestored-def(deleted; BASE body restored)
discord_skill_commands_by_categorymoved-lazyhermes_cli.commands_platforms
fieldimportdataclasses
keyunrestorableno top-level definition on BASE
munrestorableno top-level definition on BASE
osimportos
shutilimportshutil
slack_app_manifestmoved-lazyhermes_cli.commands_platforms
slack_native_slashesmoved-lazyhermes_cli.commands_platforms
slack_subcommand_mapmoved-lazyhermes_cli.commands_platforms
subprocessimportsubprocess
telegram_bot_commandsmoved-lazyhermes_cli.commands_platforms
telegram_menu_commandsmoved-lazyhermes_cli.commands_platforms
telegram_menu_max_commandsmoved-lazyhermes_cli.commands_platforms
timeimporttime

hermes_cli.config

namekindnew location
_install_method_project_rootrestored-helper(deleted; restored as a dependency of stamp_install_method)
normalize_route_base_urlmoved-lazyhermes_cli.route_identity
stamp_install_methodrestored-def(deleted; BASE body restored)

hermes_cli.console_engine

namekindnew location
shleximportshlex

hermes_cli.curses_ui

namekindnew location
Protocolimporttyping

hermes_cli.dashboard_auth.audit

namekindnew location
osimportos

hermes_cli.dashboard_auth.middleware

namekindnew location
DashboardAuthProvidermoved-lazyhermes_cli.dashboard_auth.base

hermes_cli.dingtalk_auth

namekindnew location
loggermoved-lazyhermes_cli.auth
loggingimportlogging

hermes_cli.doctor

namekindnew location
FTS_STORAGE_VERSIONmoved-lazyhermes_state_common
OPENROUTER_MODELS_URLmoved-lazyhermes_constants
Pathimportpathlib
STATE_DB_SIZE_WARN_BYTESmoved-lazyhermes_cli.doctor_state
agent_browser_runnablemoved-lazyhermes_constants
base_url_host_matchesmoved-lazyutils
check_certificatesmoved-lazyhermes_cli.doctor_platform
check_failrestored-def(deleted; BASE body restored)
check_macos_full_disk_accessmoved-lazyhermes_cli.doctor_platform
check_macos_tcc_anchormoved-lazyhermes_cli.doctor_platform
check_macos_tcc_grantsmoved-lazyhermes_cli.doctor_platform
check_okrestored-def(deleted; BASE body restored)
check_warnrestored-def(deleted; BASE body restored)
collect_deprecated_config_keysmoved-lazyhermes_cli.doctor_config
collect_deprecated_env_varsmoved-lazyhermes_cli.doctor_config
collect_relay_plugin_cutover_findingsmoved-lazyhermes_cli.doctor_config
describe_vercel_authmoved-lazyhermes_cli.vercel_auth
detect_install_methodmoved-lazyhermes_cli.config
importlibimportimportlib.util
is_nix_install_methodmoved-lazyhermes_cli.config
managed_scope_checkmoved-lazyhermes_cli.doctor_config
recommended_update_command_for_methodmoved-lazyhermes_cli.config
report_deprecated_config_and_envmoved-lazyhermes_cli.doctor_config
shutilimportshutil
subprocessimportsubprocess

hermes_cli.doctor_live

namekindnew location
ELEVENLABS_VOICES_URLrestored-def(deleted; BASE body restored)
FAL_MODELS_URLrestored-def(deleted; BASE body restored)
FIRECRAWL_HEALTH_URLrestored-def(deleted; BASE body restored)
GROQ_MODELS_URLrestored-def(deleted; BASE body restored)
OPENAI_MODELS_URLrestored-def(deleted; BASE body restored)

hermes_cli.focus_view

namekindnew location
FOCUS_USAGErestored-def(deleted; BASE body restored)
effective_tool_progress_moderestored-def(deleted; BASE body restored)

hermes_cli.foreign_sessions

namekindnew location
list_claude_sessionsrestored-def(deleted; BASE body restored)
list_codex_sessionsrestored-def(deleted; BASE body restored)

hermes_cli.gateway

namekindnew location
DEFAULT_GATEWAY_RESTART_AFTER_TURN_TIMEOUTmoved-lazygateway.restart
print_systemd_linger_guidancerestored-def(deleted; BASE body restored)

hermes_cli.gitlock

namekindnew location
is_ancestor_of_headrestored-def(deleted; BASE body restored)

hermes_cli.heartbeat

namekindnew location
Dictimporttyping

hermes_cli.journey

namekindnew location
cmd_journeyrestored-def(deleted; BASE body restored)

hermes_cli.kanban

namekindnew location
Anyimporttyping

hermes_cli.kanban_db

namekindnew location
DEFAULT_BUSY_TIMEOUT_MSmoved-lazyhermes_cli.kanban_db_connect
DEFAULT_LOG_BACKUP_COUNTmoved-lazyhermes_cli.kanban_db_dispatch
DEFAULT_LOG_ROTATE_BYTESmoved-lazyhermes_cli.kanban_db_dispatch
DEFAULT_SPAWN_FAILURE_LIMITrestored-def(deleted; BASE body restored)
DERIVED_MAX_IN_PROGRESS_CEILINGmoved-lazyhermes_cli.kanban_db_dispatch
DERIVED_MAX_IN_PROGRESS_FLOORmoved-lazyhermes_cli.kanban_db_dispatch
KANBAN_TERMINAL_TIMEOUT_GRACE_SECONDSmoved-lazyhermes_cli.kanban_db_dispatch
KanbanDbCorruptErrormoved-lazyhermes_cli.kanban_db_connect
MEMORY_GUARD_MB_PER_WORKERmoved-lazyhermes_cli.kanban_db_dispatch
Mappingimporttyping
RepairResultmoved-lazyhermes_cli.kanban_db_connect
add_notify_submoved-lazyhermes_cli.kanban_db_notify
advance_notify_cursormoved-lazyhermes_cli.kanban_db_notify
check_respawn_guardmoved-lazyhermes_cli.kanban_db_dispatch
claim_unseen_events_for_submoved-lazyhermes_cli.kanban_db_notify
configured_max_in_progressmoved-lazyhermes_cli.kanban_db_dispatch
connectmoved-lazyhermes_cli.kanban_db_connect
connect_closingmoved-lazyhermes_cli.kanban_db_connect
count_notify_subsmoved-lazyhermes_cli.kanban_db_notify
count_running_tasksmoved-lazyhermes_cli.kanban_db_dispatch
count_running_tasks_other_boardsmoved-lazyhermes_cli.kanban_db_dispatch
derive_default_max_in_progressmoved-lazyhermes_cli.kanban_db_dispatch
detect_crashed_workersmoved-lazyhermes_cli.kanban_db_dispatch
detect_stale_runningmoved-lazyhermes_cli.kanban_db_dispatch
dispatch_oncemoved-lazyhermes_cli.kanban_db_dispatch
enforce_max_runtimemoved-lazyhermes_cli.kanban_db_dispatch
fieldimportdataclasses
has_spawnable_readymoved-lazyhermes_cli.kanban_db_dispatch
has_spawnable_reviewmoved-lazyhermes_cli.kanban_db_dispatch
hashlibimporthashlib
heartbeat_workermoved-lazyhermes_cli.kanban_db_dispatch
list_notify_subsmoved-lazyhermes_cli.kanban_db_notify
parent_resultsrestored-def(deleted; BASE body restored)
purge_stale_done_notify_subsmoved-lazyhermes_cli.kanban_db_notify
randomimportrandom
reap_worker_zombiesmoved-lazyhermes_cli.kanban_db_dispatch
reconcile_orphaned_runningmoved-lazyhermes_cli.kanban_db_dispatch
remove_notify_submoved-lazyhermes_cli.kanban_db_notify
repair_dbmoved-lazyhermes_cli.kanban_db_connect
resolve_max_in_progressmoved-lazyhermes_cli.kanban_db_dispatch
resolve_workspacemoved-lazyhermes_cli.kanban_db_workspace
review_dispatch_enabledmoved-lazyhermes_cli.kanban_db_dispatch
rewind_notify_cursormoved-lazyhermes_cli.kanban_db_notify
run_daemonmoved-lazyhermes_cli.kanban_db_dispatch
set_branch_namemoved-lazyhermes_cli.kanban_db_workspace
set_workspace_pathmoved-lazyhermes_cli.kanban_db_workspace
shutilimportshutil
threadingimportthreading
unseen_events_for_submoved-lazyhermes_cli.kanban_db_notify
worker_log_rotation_configmoved-lazyhermes_cli.kanban_db_dispatch

hermes_cli.kanban_decompose

namekindnew location
jsonimportjson
osimportos

hermes_cli.kanban_diagnostics

namekindnew location
DIAGNOSTIC_KINDSrestored-def(deleted; BASE body restored)

hermes_cli.local_runtime.binaries

namekindnew location
get_hermes_homemoved-lazyhermes_constants

hermes_cli.local_runtime.bootstrap

namekindnew location
get_hermes_homemoved-lazyhermes_constants

hermes_cli.local_runtime.capabilities

namekindnew location
jsonimportjson
urllibimporturllib.request

hermes_cli.local_runtime.catalog

namekindnew location
find_variantrestored-def(deleted; BASE body restored)
reimportre
recommended_idrestored-def(deleted; BASE body restored)

hermes_cli.local_runtime.hf_browse

namekindnew location
fieldimportdataclasses

hermes_cli.main

namekindnew location
hashlibimporthashlib
line_inputmoved-lazyhermes_cli.cli_output
shleximportshlex
statimportstat
tempfileimporttempfile

hermes_cli.mcp_picker

namekindnew location
colormoved-lazyhermes_cli.colors

hermes_cli.mcp_security

namekindnew location
is_mcp_server_entry_suspiciousrestored-def(deleted; BASE body restored)

hermes_cli.middleware

namekindnew location
API_EXECUTION_MIDDLEWARErestored-def(deleted; BASE body restored)
API_REQUEST_MIDDLEWARErestored-def(deleted; BASE body restored)
apply_api_request_middlewarerestored-def(deleted; BASE body restored)
run_api_execution_middlewarerestored-def(deleted; BASE body restored)

hermes_cli.moa_config

namekindnew location
build_moa_turn_promptrestored-def(deleted; BASE body restored)
encode_moa_turnrestored-helper(deleted; restored as a dependency of build_moa_turn_prompt)
encode_moa_turnrestored-def(deleted; BASE body restored)
list_moa_presetsrestored-def(deleted; BASE body restored)
set_active_moa_presetrestored-def(deleted; BASE body restored)

hermes_cli.model_setup_flows

namekindnew location
BEDROCK_GEO_PREFIXESmoved-lazyhermes_cli.model_setup_flows_bedrock
bedrock_model_routable_from_regionmoved-lazyhermes_cli.model_setup_flows_bedrock
bedrock_region_geo_prefixmoved-lazyhermes_cli.model_setup_flows_bedrock
custom_provider_slugmoved-lazyhermes_cli.providers
line_inputmoved-lazyhermes_cli.cli_output
subprocessimportsubprocess
urllibimporturllib.parse

hermes_cli.model_switch

namekindnew location
Listimporttyping
base_url_host_matchesmoved-lazyutils
custom_provider_slugmoved-lazyhermes_cli.providers
httpimporthttp.client
list_picker_providersmoved-lazyhermes_cli.model_switch_providers
prewarm_picker_cache_asyncmoved-lazyhermes_cli.model_switch_providers
timeimporttime

hermes_cli.models

namekindnew location
LMStudioLoadResultmoved-lazyhermes_cli.models_local
NamedTupleimporttyping
PROVIDER_GROUPSmoved-lazyhermes_cli.models_catalog_static
ProviderEntrymoved-lazyhermes_cli.models_catalog_static
_OPENCODE_KEYLESS_EXTRA_SLUGSrestored-helper(deleted; restored as a dependency of is_opencode_zen_free_model)
atomic_json_writemoved-lazyutils
base_url_host_matchesmoved-lazyutils
compute_sale_discountmoved-lazyhermes_cli.models_pricing
ensure_lmstudio_model_loadedmoved-lazyhermes_cli.models_local
fetch_ai_gateway_pricingmoved-lazyhermes_cli.models_pricing
fetch_lmstudio_modelsmoved-lazyhermes_cli.models_local
fetch_models_with_pricingmoved-lazyhermes_cli.models_pricing
fetch_ollama_local_modelsmoved-lazyhermes_cli.models_local
get_cached_nous_inference_base_urlmoved-lazyhermes_cli.models_pricing
get_close_matchesimportdifflib
get_pricing_for_providermoved-lazyhermes_cli.models_pricing
group_providersmoved-lazyhermes_cli.models_catalog_static
httpimporthttp.client
is_nous_free_tierrestored-def(deleted; BASE body restored)
is_opencode_zen_free_modelrestored-def(deleted; BASE body restored)
lmstudio_model_reasoning_optionsmoved-lazyhermes_cli.models_local
nous_catalog_urlmoved-lazyhermes_cli.models_reasoning_caps
nous_model_reasoning_capabilitiesmoved-lazyhermes_cli.models_reasoning_caps
nous_policy_allowed_idsmoved-lazyhermes_cli.models_pricing
ollama_model_supports_thinkingmoved-lazyhermes_cli.models_local
openrouter_model_reasoning_capabilitiesmoved-lazyhermes_cli.models_reasoning_caps
parse_openrouter_reasoning_capabilitiesmoved-lazyhermes_cli.models_reasoning_caps
peek_cached_pricingmoved-lazyhermes_cli.models_pricing
pricing_cache_scopemoved-lazyhermes_cli.models_pricing
probe_lmstudio_modelsmoved-lazyhermes_cli.models_local
probe_ollama_local_modelsmoved-lazyhermes_cli.models_local
provider_group_for_slugmoved-lazyhermes_cli.models_catalog_static
refresh_reasoning_caps_asyncmoved-lazyhermes_cli.models_reasoning_caps
restrict_to_nous_policymoved-lazyhermes_cli.models_pricing
should_use_ollama_native_catalogmoved-lazyhermes_cli.models_local
url_originmoved-lazyhermes_cli.urllib_security
validate_requested_modelmoved-lazyhermes_cli.models_validate
warm_nous_reasoning_caps_asyncmoved-lazyhermes_cli.models_reasoning_caps
warm_openrouter_reasoning_caps_asyncmoved-lazyhermes_cli.models_reasoning_caps

hermes_cli.nous_billing

namekindnew location
BILLING_MANAGE_SCOPErestored-def(deleted; BASE body restored)

hermes_cli.nous_subscription

namekindnew location
managed_nous_tools_enabledmoved-lazytools.tool_backend_helpers

hermes_cli.observability.relay_runtime

namekindnew location
*module-stubagent.relay_runtime

hermes_cli.observability.relay_shared_metrics

namekindnew location
CLIENT_ACTIVE_MARKmoved-lazyhermes_cli.observability.shared_metrics_contract
MODEL_CALL_PROFILE_MODELmoved-lazyhermes_cli.observability.shared_metrics_contract
SCHEMA_KEYmoved-lazyhermes_cli.observability.shared_metrics_contract
SCHEMA_VERSIONmoved-lazyhermes_cli.observability.shared_metrics_contract
SKILL_LIFECYCLE_MARKmoved-lazyhermes_cli.observability.shared_metrics_contract
SKILL_LOAD_MARKmoved-lazyhermes_cli.observability.shared_metrics_contract
TOOL_APPROVAL_MARKmoved-lazyhermes_cli.observability.shared_metrics_contract
TOOL_CALL_SCOPEmoved-lazyhermes_cli.observability.shared_metrics_contract
model_call_fieldsmoved-lazyhermes_cli.observability.shared_metrics_contract
prepare_session_startrestored-def(deleted; BASE body restored)
skill_lifecycle_fieldsmoved-lazyhermes_cli.observability.shared_metrics_contract
skill_load_fieldsmoved-lazyhermes_cli.observability.shared_metrics_contract
task_start_fieldsmoved-lazyhermes_cli.observability.shared_metrics_contract
task_terminal_fieldsmoved-lazyhermes_cli.observability.shared_metrics_contract
task_terminal_statemoved-lazyhermes_cli.observability.shared_metrics_contract
tool_approval_outcomemoved-lazyhermes_cli.observability.shared_metrics_contract
tool_categorymoved-lazyhermes_cli.observability.shared_metrics_contract
tool_terminal_fieldsmoved-lazyhermes_cli.observability.shared_metrics_contract

hermes_cli.onepassword_secrets_cli

namekindnew location
Tableimportrich.table
masked_secret_promptmoved-lazyhermes_cli.secret_prompt
sysimportsys

hermes_cli.platform_actions

namekindnew location
Optionalimporttyping

hermes_cli.plugins

namekindnew location
CAPABILITY_REGISTRYmoved-lazyhermes_cli.plugin_capabilities
ENTRY_POINT_CAPABILITIES_GROUPmoved-lazyhermes_cli.plugins_discovery
Iterableimporttyping
LEGACY_RELAY_PLUGIN_KEYSmoved-lazyhermes_cli.relay_plugin_cutover
MAX_SYSTEM_PROMPT_SECTIONSmoved-lazyhermes_cli.plugins_dispatch
OBSERVER_SCHEMA_VERSIONmoved-lazyhermes_cli.middleware
Typeimporttyping
VALID_CAPABILITY_IDSmoved-lazyhermes_cli.plugin_capabilities
cfg_getmoved-lazyhermes_cli.config
contextmanagerimportcontextlib
contextvarsimportcontextvars
copyimportcopy
fast_safe_loadmoved-lazyutils
format_system_prompt_sectionmoved-lazyhermes_cli.plugins_dispatch
get_plugin_subscriptionsrestored-def(deleted; BASE body restored)
hashlibimporthashlib
reset_hermes_home_overridemoved-lazyhermes_constants
set_hermes_home_overridemoved-lazyhermes_constants
timeimporttime
unload_pluginsrestored-def(deleted; BASE body restored)
wrapsimportfunctools
yamlunrestorableno top-level definition on BASE

hermes_cli.plugins_cmd

namekindnew location
importlibimportimportlib.metadata

hermes_cli.profile_describer

namekindnew location
jsonimportjson

hermes_cli.profile_distribution

namekindnew location
is_excluded_skill_pathmoved-lazyagent.skill_utils

hermes_cli.profiles

namekindnew location
has_bundled_skills_opt_outrestored-def(deleted; BASE body restored)

hermes_cli.runtime_provider

namekindnew location
custom_provider_aliasesmoved-lazyhermes_cli.providers
custom_provider_slugmoved-lazyhermes_cli.providers
osimportos

hermes_cli.security_advisories

namekindnew location
render_doctor_sectionrestored-def(deleted; BASE body restored)

hermes_cli.setup

namekindnew location
Anyimporttyping
Dictimporttyping
Optionalimporttyping
get_nous_subscription_featuresmoved-lazyhermes_cli.nous_subscription
get_optional_skills_dirmoved-lazyhermes_constants
jsonimportjson
managed_nous_tools_enabledmoved-lazytools.tool_backend_helpers
shutilimportshutil

hermes_cli.slack_cli

namekindnew location
osimportos

hermes_cli.sqlite_safe_read

namekindnew location
SQLITE_HEADER_MAGICrestored-def(deleted; BASE body restored)

hermes_cli.status

namekindnew location
format_nous_portal_entitlement_messagemoved-lazyhermes_cli.nous_account
get_nous_portal_account_infomoved-lazyhermes_cli.nous_account
get_nous_subscription_featuresmoved-lazyhermes_cli.nous_subscription
managed_nous_tools_enabledmoved-lazytools.tool_backend_helpers
redact_keymoved-lazyhermes_cli.config
subprocessimportsubprocess

hermes_cli.telegram_managed_bot

namekindnew location
DEFAULT_MANAGER_BOTrestored-def(deleted; BASE body restored)
_USERNAME_SLUG_ALPHABETrestored-helper(deleted; restored as a dependency of generate_bot_username)
auto_setup_telegram_botrestored-def(deleted; BASE body restored)
generate_bot_usernamerestored-def(deleted; BASE body restored)
generate_deep_linkrestored-def(deleted; BASE body restored)
generate_pairing_noncerestored-def(deleted; BASE body restored)
generate_username_slugrestored-helper(deleted; restored as a dependency of generate_bot_username)
generate_username_slugrestored-def(deleted; BASE body restored)
poll_for_tokenrestored-def(deleted; BASE body restored)
poll_pairing_oncerestored-def(deleted; BASE body restored)
secretsrestored-importsecrets
secretsimportsecrets
urllibrestored-importurllib.parse
urllibimporturllib.parse

hermes_cli.tools_config

namekindnew location
MANAGED_FEATURE_COVERAGE_CATEGORYmoved-lazyhermes_cli.nous_subscription
NOUS_MANAGED_PROVIDERmoved-lazytools.tool_backend_helpers
base_url_hostnamemoved-lazyutils
fal_key_is_configuredmoved-lazytools.tool_backend_helpers
format_nous_portal_entitlement_messagemoved-lazyhermes_cli.nous_account
is_truthy_valuemoved-lazyutils
save_env_valuemoved-lazyhermes_cli.config
shutilimportshutil
subprocessimportsubprocess
sysimportsys

hermes_cli.uninstall

namekindnew location
find_shell_configsrestored-def(deleted; BASE body restored)

hermes_cli.update_cmd

namekindnew location
Optionalimporttyping
datetimeimportdatetime
hashlibimporthashlib
jsonimportjson

hermes_cli.update_inventory

namekindnew location
Pathimportpathlib
osimportos

hermes_cli.web_deps

namekindnew location
get_dashboard_healthrestored-def(deleted; BASE body restored)
get_session_tokenrestored-def(deleted; BASE body restored)
has_valid_session_tokenrestored-def(deleted; BASE body restored)
late_attrrestored-def(deleted; BASE body restored)

hermes_cli.web_routers.cron

namekindnew location
loggingimportlogging

hermes_cli.web_routers.mcp

namekindnew location
loggingimportlogging

hermes_cli.web_routers.sessions

namekindnew location
Anyimporttyping
Dictimporttyping
loggingimportlogging

hermes_cli.web_routers.skills

namekindnew location
LateStatemoved-lazyhermes_cli.web_deps
loggingimportlogging

hermes_cli.web_routers.tools

namekindnew location
LateStatemoved-lazyhermes_cli.web_deps
loggingimportlogging

hermes_cli.web_server

namekindnew location
AudioTranscriptionRequestmoved-lazyhermes_cli.web_models
AutomationBlueprintInstantiatemoved-lazyhermes_cli.web_models
BackupRequestmoved-lazyhermes_cli.web_models
BaseModelunrestorableno top-level definition on BASE
BulkDeleteSessionsmoved-lazyhermes_cli.web_models
CONFIG_SCHEMAmoved-lazyhermes_cli.web_server_config
ChatImageUploadmoved-lazyhermes_cli.web_models
ConfigUpdatemoved-lazyhermes_cli.web_models
CredentialPoolAddmoved-lazyhermes_cli.web_models
CronJobCreatemoved-lazyhermes_cli.web_models
CronJobUpdatemoved-lazyhermes_cli.web_models
CuratorPausemoved-lazyhermes_cli.web_models
CustomEndpointUpdatemoved-lazyhermes_cli.web_models
DEFAULT_CONFIGmoved-lazyhermes_cli.config
DebugShareRequestmoved-lazyhermes_cli.web_models
EnvVarDeletemoved-lazyhermes_cli.web_models
EnvVarRevealmoved-lazyhermes_cli.web_models
EnvVarUpdatemoved-lazyhermes_cli.web_models
Fileunrestorableno top-level definition on BASE
FileResponseunrestorableno top-level definition on BASE
FontSetBodymoved-lazyhermes_cli.web_models
Formunrestorableno top-level definition on BASE
FsWriteTextmoved-lazyhermes_cli.web_models
GitBranchSwitchBodymoved-lazyhermes_cli.web_models
GitCommitBodymoved-lazyhermes_cli.web_models
GitFileBodymoved-lazyhermes_cli.web_models
GitPathBodymoved-lazyhermes_cli.web_models
GitWorktreeAddBodymoved-lazyhermes_cli.web_models
GitWorktreeRemoveBodymoved-lazyhermes_cli.web_models
HTMLResponseunrestorableno top-level definition on BASE
HookCreatemoved-lazyhermes_cli.web_models
HookDeletemoved-lazyhermes_cli.web_models
ImportRequestmoved-lazyhermes_cli.web_models
LearningNodeEditmoved-lazyhermes_cli.web_models
LearningNodeRefmoved-lazyhermes_cli.web_models
Listimporttyping
Literalimporttyping
MCPCatalogInstallmoved-lazyhermes_cli.web_models
MCPEnabledTogglemoved-lazyhermes_cli.web_models
MCPServerCreatemoved-lazyhermes_cli.web_models
MCPServersReplacemoved-lazyhermes_cli.web_models
ManagedDirectoryCreatemoved-lazyhermes_cli.web_models
ManagedFileDeletemoved-lazyhermes_cli.web_models
ManagedFileUploadmoved-lazyhermes_cli.web_models
ManagedFilesPolicymoved-lazyhermes_cli.web_server_files
MemoryProviderConfigUpdatemoved-lazyhermes_cli.web_models
MemoryProviderSelectmoved-lazyhermes_cli.web_models
MemoryProviderSetupRequestmoved-lazyhermes_cli.web_models
MemoryResetmoved-lazyhermes_cli.web_models
MessagingPlatformUpdatemoved-lazyhermes_cli.web_models
MoaConfigPayloadmoved-lazyhermes_cli.web_models
MoaModelSlotmoved-lazyhermes_cli.web_models
MoaPresetPayloadmoved-lazyhermes_cli.web_models
ModelAssignmentmoved-lazyhermes_cli.web_models
OAuthSubmitBodymoved-lazyhermes_cli.web_models
OPTIONAL_ENV_VARSmoved-lazyhermes_cli.config
PairingApprovemoved-lazyhermes_cli.web_models
PairingRevokemoved-lazyhermes_cli.web_models
ProfileActiveUpdatemoved-lazyhermes_cli.web_models
ProfileCreatemoved-lazyhermes_cli.web_models
ProfileDescribeAutomoved-lazyhermes_cli.web_models
ProfileDescriptionUpdatemoved-lazyhermes_cli.web_models
ProfileModelUpdatemoved-lazyhermes_cli.web_models
ProfileRenamemoved-lazyhermes_cli.web_models
ProfileSoulUpdatemoved-lazyhermes_cli.web_models
ProviderConfigSchemamoved-lazyplugins.memory.config_schema
ProviderFieldmoved-lazyplugins.memory.config_schema
PtyBridgemoved-lazyhermes_cli.pty_bridge
PtySessionRegistrymoved-lazyhermes_cli.pty_session
PtyUnavailableErrormoved-lazyhermes_cli.pty_bridge
Queryunrestorableno top-level definition on BASE
RawConfigUpdatemoved-lazyhermes_cli.web_models
RegistryFullmoved-lazyhermes_cli.pty_session
Responseunrestorableno top-level definition on BASE
STORAGE_HONCHO_HOST_BLOCKmoved-lazyplugins.memory.config_schema
SecretStrunrestorableno top-level definition on BASE
SessionImportmoved-lazyhermes_cli.web_models
SessionPrunemoved-lazyhermes_cli.web_models
SessionRenamemoved-lazyhermes_cli.web_models
SkillContentUpdatemoved-lazyhermes_cli.web_models
SkillCreatemoved-lazyhermes_cli.web_models
SkillInstallRequestmoved-lazyhermes_cli.web_models
SkillTogglemoved-lazyhermes_cli.web_models
SkillUninstallRequestmoved-lazyhermes_cli.web_models
SkillsUpdateRequestmoved-lazyhermes_cli.web_models
StaticFilesunrestorableno top-level definition on BASE
TTSLeaseRequestmoved-lazyhermes_cli.web_models
TTSSpeakRequestmoved-lazyhermes_cli.web_models
TelegramOnboardingApplymoved-lazyhermes_cli.web_models
TelegramOnboardingStartmoved-lazyhermes_cli.web_models
TerminalBackendSelectmoved-lazyhermes_cli.web_models
ThemeSetBodymoved-lazyhermes_cli.web_models
ToolsetEnvUpdatemoved-lazyhermes_cli.web_models
ToolsetModelSelectmoved-lazyhermes_cli.web_models
ToolsetPostSetupmoved-lazyhermes_cli.web_models
ToolsetProviderSelectmoved-lazyhermes_cli.web_models
ToolsetTogglemoved-lazyhermes_cli.web_models
UploadFileunrestorableno top-level definition on BASE
WebSocketunrestorableno top-level definition on BASE
WebSocketDisconnectunrestorableno top-level definition on BASE
WebhookCreatemoved-lazyhermes_cli.web_models
WebhookEnabledTogglemoved-lazyhermes_cli.web_models
WhatsAppOnboardingApplymoved-lazyhermes_cli.web_models
WhatsAppOnboardingStartmoved-lazyhermes_cli.web_models
activate_custom_endpointmoved-lazyhermes_cli.web_routers.config_env
add_credential_pool_entrymoved-lazyhermes_cli.web_routers.ops
add_mcp_servermoved-lazyhermes_cli.web_routers.mcp
apply_telegram_onboardingmoved-lazyhermes_cli.web_routers.messaging
apply_whatsapp_onboardingmoved-lazyhermes_cli.web_routers.messaging
approve_pairingmoved-lazyhermes_cli.web_routers.ops
atexitimportatexit
auth_mcp_servermoved-lazyhermes_cli.web_routers.mcp
base64importbase64
binasciiimportbinascii
build_cron_model_impactmoved-lazyhermes_cli.config
bulk_delete_sessions_endpointmoved-lazyhermes_cli.web_routers.sessions
cancel_oauth_sessionmoved-lazyhermes_cli.web_routers.oauth
cancel_telegram_onboardingmoved-lazyhermes_cli.web_routers.messaging
cancel_whatsapp_onboardingmoved-lazyhermes_cli.web_routers.messaging
cfg_getmoved-lazyhermes_cli.config
check_config_versionmoved-lazyhermes_cli.config
check_hermes_updatemoved-lazyhermes_cli.web_routers.actions
clear_model_endpoint_credentialsmoved-lazyhermes_cli.config
clear_pending_pairingmoved-lazyhermes_cli.web_routers.ops
coerce_provider_idmoved-lazyhermes_cli.config
concurrentimportconcurrent.futures
console_wsmoved-lazyhermes_cli.web_routers.chat_ws
contextlibimportcontextlib
contextmanagerimportcontextlib
count_empty_sessions_endpointmoved-lazyhermes_cli.web_routers.sessions
create_cron_jobmoved-lazyhermes_cli.web_routers.cron
create_hookmoved-lazyhermes_cli.web_routers.ops
create_managed_directorymoved-lazyhermes_cli.web_routers.files
create_profile_endpointmoved-lazyhermes_cli.web_routers.profiles
create_skillmoved-lazyhermes_cli.web_routers.skills
create_webhookmoved-lazyhermes_cli.web_routers.ops
cron_fire_webhookmoved-lazyhermes_cli.web_routers.cron
custom_endpoint_key_envmoved-lazyhermes_cli.config
dataclassimportdataclasses
datetimeimportdatetime
delete_agent_pluginmoved-lazyhermes_cli.web_routers.dashboard_ui
delete_cron_jobmoved-lazyhermes_cli.web_routers.cron
delete_custom_endpointmoved-lazyhermes_cli.web_routers.config_env
delete_empty_sessions_endpointmoved-lazyhermes_cli.web_routers.sessions
delete_hookmoved-lazyhermes_cli.web_routers.ops
delete_learning_nodemoved-lazyhermes_cli.web_routers.status
delete_managed_filemoved-lazyhermes_cli.web_routers.files
delete_profile_endpointmoved-lazyhermes_cli.web_routers.profiles
delete_session_endpointmoved-lazyhermes_cli.web_routers.sessions
delete_webhookmoved-lazyhermes_cli.web_routers.ops
derive_gateway_busymoved-lazygateway.status
derive_gateway_drainablemoved-lazygateway.status
describe_profile_auto_endpointmoved-lazyhermes_cli.web_routers.profiles
detect_install_methodmoved-lazyhermes_cli.config
disconnect_oauth_providermoved-lazyhermes_cli.web_routers.oauth
download_dashboard_backupmoved-lazyhermes_cli.web_routers.ops
download_managed_filemoved-lazyhermes_cli.web_routers.files
enable_webhooksmoved-lazyhermes_cli.web_routers.ops
env_var_enabledmoved-lazyutils
events_wsmoved-lazyhermes_cli.web_routers.chat_ws
export_session_endpointmoved-lazyhermes_cli.web_routers.sessions
field_validatorunrestorableno top-level definition on BASE
find_provider_entrymoved-lazyhermes_cli.config
format_docker_update_messagemoved-lazyhermes_cli.config
fs_default_cwdmoved-lazyhermes_cli.web_routers.files
fs_downloadmoved-lazyhermes_cli.web_routers.files
fs_git_rootmoved-lazyhermes_cli.web_routers.files
fs_listmoved-lazyhermes_cli.web_routers.files
fs_read_data_urlmoved-lazyhermes_cli.web_routers.files
fs_read_textmoved-lazyhermes_cli.web_routers.files
fs_write_textmoved-lazyhermes_cli.web_routers.files
functoolsimportfunctools
gateway_drainmoved-lazyhermes_cli.web_routers.actions
gateway_wsmoved-lazyhermes_cli.web_routers.chat_ws
get_action_statusmoved-lazyhermes_cli.web_routers.actions
get_active_profile_endpointmoved-lazyhermes_cli.web_routers.profiles
get_auxiliary_modelsmoved-lazyhermes_cli.web_routers.models
get_client_voice_configmoved-lazyhermes_cli.web_routers.audio
get_computer_use_statusmoved-lazyhermes_cli.web_routers.tools
get_configmoved-lazyhermes_cli.web_routers.config_env
get_config_pathmoved-lazyhermes_cli.config
get_config_rawmoved-lazyhermes_cli.web_routers.analytics
get_cron_delivery_targetsmoved-lazyhermes_cli.web_routers.cron
get_cron_jobmoved-lazyhermes_cli.web_routers.cron
get_curator_statusmoved-lazyhermes_cli.web_routers.status
get_dashboard_fontmoved-lazyhermes_cli.web_routers.dashboard_ui
get_dashboard_pluginsmoved-lazyhermes_cli.web_routers.dashboard_ui
get_dashboard_themesmoved-lazyhermes_cli.web_routers.dashboard_ui
get_defaultsmoved-lazyhermes_cli.web_routers.config_env
get_egress_statusmoved-lazyhermes_cli.web_routers.config_env
get_elevenlabs_voicesmoved-lazyhermes_cli.web_routers.audio
get_env_pathmoved-lazyhermes_cli.config
get_env_varsmoved-lazyhermes_cli.web_routers.config_env
get_healthmoved-lazyhermes_cli.web_routers.status
get_hermes_homemoved-lazyhermes_cli.config
get_learning_graphmoved-lazyhermes_cli.web_routers.status
get_learning_nodemoved-lazyhermes_cli.web_routers.status
get_logsmoved-lazyhermes_cli.web_routers.status
get_mediamoved-lazyhermes_cli.web_routers.files
get_memory_provider_configmoved-lazyhermes_cli.web_routers.memory_providers
get_memory_statusmoved-lazyhermes_cli.web_routers.ops
get_messaging_platformsmoved-lazyhermes_cli.web_routers.messaging
get_moa_modelsmoved-lazyhermes_cli.web_routers.models
get_model_infomoved-lazyhermes_cli.web_routers.models
get_model_optionsmoved-lazyhermes_cli.web_routers.models
get_models_analyticsmoved-lazyhermes_cli.web_routers.analytics
get_plugins_hubmoved-lazyhermes_cli.web_routers.dashboard_ui
get_portal_statusmoved-lazyhermes_cli.web_routers.status
get_process_hermes_homemoved-lazyhermes_cli.config
get_profile_setup_commandmoved-lazyhermes_cli.web_routers.profiles
get_profile_soulmoved-lazyhermes_cli.web_routers.profiles
get_profiles_sessionsmoved-lazyhermes_cli.web_routers.profiles
get_profiles_sessions_sidebarmoved-lazyhermes_cli.web_routers.profiles
get_provider_config_schemamoved-lazyplugins.memory.config_schema
get_recommended_default_modelmoved-lazyhermes_cli.web_routers.models
get_running_pidmoved-lazygateway.status
get_running_pid_cachedmoved-lazygateway.status
get_runtime_status_running_pidmoved-lazygateway.status
get_schemamoved-lazyhermes_cli.web_routers.config_env
get_session_detailmoved-lazyhermes_cli.web_routers.sessions
get_session_latest_descendantmoved-lazyhermes_cli.web_routers.sessions
get_session_messagesmoved-lazyhermes_cli.web_routers.sessions
get_session_statsmoved-lazyhermes_cli.web_routers.sessions
get_sessionsmoved-lazyhermes_cli.web_routers.sessions
get_skill_contentmoved-lazyhermes_cli.web_routers.skills
get_skillsmoved-lazyhermes_cli.web_routers.skills
get_ssh_ownershipmoved-lazyhermes_cli.web_routers.status
get_statusmoved-lazyhermes_cli.web_routers.status
get_system_statsmoved-lazyhermes_cli.web_routers.status
get_telegram_onboarding_statusmoved-lazyhermes_cli.web_routers.messaging
get_terminal_backendsmoved-lazyhermes_cli.web_routers.tools
get_toolset_configmoved-lazyhermes_cli.web_routers.tools
get_toolset_modelsmoved-lazyhermes_cli.web_routers.tools
get_toolsetsmoved-lazyhermes_cli.web_routers.tools
get_update_receiptmoved-lazyhermes_cli.web_routers.actions
get_usage_analyticsmoved-lazyhermes_cli.web_routers.analytics
get_whatsapp_onboarding_statusmoved-lazyhermes_cli.web_routers.messaging
git_base_branches_routemoved-lazyhermes_cli.web_routers.git
git_branch_switch_routemoved-lazyhermes_cli.web_routers.git
git_branches_routemoved-lazyhermes_cli.web_routers.git
git_commit_context_routemoved-lazyhermes_cli.web_routers.git
git_commit_routemoved-lazyhermes_cli.web_routers.git
git_create_pr_routemoved-lazyhermes_cli.web_routers.git
git_file_diff_routemoved-lazyhermes_cli.web_routers.git
git_push_routemoved-lazyhermes_cli.web_routers.git
git_rev_parse_routemoved-lazyhermes_cli.web_routers.git
git_revert_routemoved-lazyhermes_cli.web_routers.git
git_review_diff_routemoved-lazyhermes_cli.web_routers.git
git_review_list_routemoved-lazyhermes_cli.web_routers.git
git_ship_info_routemoved-lazyhermes_cli.web_routers.git
git_stage_routemoved-lazyhermes_cli.web_routers.git
git_status_routemoved-lazyhermes_cli.web_routers.git
git_unstage_routemoved-lazyhermes_cli.web_routers.git
git_worktree_add_routemoved-lazyhermes_cli.web_routers.git
git_worktree_remove_routemoved-lazyhermes_cli.web_routers.git
git_worktrees_routemoved-lazyhermes_cli.web_routers.git
grant_computer_use_permissionsmoved-lazyhermes_cli.web_routers.tools
hashlibimporthashlib
import_sessions_endpointmoved-lazyhermes_cli.web_routers.sessions
importlibimportimportlib.util
inspectimportinspect
install_mcp_catalog_entrymoved-lazyhermes_cli.web_routers.mcp
install_skill_hubmoved-lazyhermes_cli.web_routers.skills
instantiate_blueprintmoved-lazyhermes_cli.web_routers.cron
ipaddressimportipaddress
is_nix_install_methodmoved-lazyhermes_cli.config
jsonimportjson
list_checkpointsmoved-lazyhermes_cli.web_routers.ops
list_credential_poolmoved-lazyhermes_cli.web_routers.ops
list_cron_blueprintsmoved-lazyhermes_cli.web_routers.cron
list_cron_job_runsmoved-lazyhermes_cli.web_routers.cron
list_cron_jobsmoved-lazyhermes_cli.web_routers.cron
list_custom_endpointsmoved-lazyhermes_cli.web_routers.config_env
list_hooksmoved-lazyhermes_cli.web_routers.ops
list_managed_filesmoved-lazyhermes_cli.web_routers.files
list_mcp_catalogmoved-lazyhermes_cli.web_routers.mcp
list_mcp_serversmoved-lazyhermes_cli.web_routers.mcp
list_oauth_providersmoved-lazyhermes_cli.web_routers.oauth
list_pairingmoved-lazyhermes_cli.web_routers.ops
list_profiles_endpointmoved-lazyhermes_cli.web_routers.profiles
list_skills_hub_sourcesmoved-lazyhermes_cli.web_routers.skills
list_webhooksmoved-lazyhermes_cli.web_routers.ops
load_envmoved-lazyhermes_cli.config
mathimportmath
mcp_oauth_callbackmoved-lazyhermes_cli.web_routers.mcp
mcp_oauth_flow_statusmoved-lazyhermes_cli.web_routers.mcp
mimetypesimportmimetypes
normalize_updated_atmoved-lazygateway.status
open_profile_terminal_endpointmoved-lazyhermes_cli.web_routers.profiles
parse_active_agentsmoved-lazygateway.status
pause_cron_jobmoved-lazyhermes_cli.web_routers.cron
poll_oauth_sessionmoved-lazyhermes_cli.web_routers.oauth
post_agent_plugin_disablemoved-lazyhermes_cli.web_routers.dashboard_ui
post_agent_plugin_enablemoved-lazyhermes_cli.web_routers.dashboard_ui
post_agent_plugin_installmoved-lazyhermes_cli.web_routers.dashboard_ui
post_agent_plugin_updatemoved-lazyhermes_cli.web_routers.dashboard_ui
post_plugin_visibilitymoved-lazyhermes_cli.web_routers.dashboard_ui
preview_skill_hubmoved-lazyhermes_cli.web_routers.skills
prune_checkpointsmoved-lazyhermes_cli.web_routers.ops
prune_sessions_endpointmoved-lazyhermes_cli.web_routers.sessions
pty_wsmoved-lazyhermes_cli.web_routers.chat_ws
pub_wsmoved-lazyhermes_cli.web_routers.chat_ws
put_plugin_providersmoved-lazyhermes_cli.web_routers.dashboard_ui
queueimportqueue
read_managed_filemoved-lazyhermes_cli.web_routers.files
read_raw_configmoved-lazyhermes_cli.config
read_runtime_statusmoved-lazygateway.status
recommended_update_command_for_methodmoved-lazyhermes_cli.config
redact_keymoved-lazyhermes_cli.config
remove_credential_pool_entrymoved-lazyhermes_cli.web_routers.ops
remove_env_valuemoved-lazyhermes_cli.config
remove_env_varmoved-lazyhermes_cli.web_routers.config_env
remove_mcp_servermoved-lazyhermes_cli.web_routers.mcp
rename_profile_endpointmoved-lazyhermes_cli.web_routers.profiles
rename_session_endpointmoved-lazyhermes_cli.web_routers.sessions
replace_mcp_serversmoved-lazyhermes_cli.web_routers.mcp
rescan_dashboard_pluginsmoved-lazyhermes_cli.web_routers.dashboard_ui
reset_memorymoved-lazyhermes_cli.web_routers.ops
resolve_cron_model_drift_defaultsmoved-lazyhermes_cli.config
resolve_gateway_livenessmoved-lazygateway.status
restart_gatewaymoved-lazyhermes_cli.web_routers.actions
resume_cron_jobmoved-lazyhermes_cli.web_routers.cron
reveal_env_varmoved-lazyhermes_cli.web_routers.config_env
revoke_pairingmoved-lazyhermes_cli.web_routers.ops
run_backupmoved-lazyhermes_cli.web_routers.ops
run_config_migratemoved-lazyhermes_cli.web_routers.status
run_curatormoved-lazyhermes_cli.web_routers.status
run_debug_share_endpointmoved-lazyhermes_cli.web_routers.status
run_doctormoved-lazyhermes_cli.doctor
run_dumpmoved-lazyhermes_cli.dump
run_importmoved-lazyhermes_cli.web_routers.ops
run_import_uploadmoved-lazyhermes_cli.web_routers.ops
run_in_threadpoolunrestorableno top-level definition on BASE
run_prompt_sizemoved-lazyhermes_cli.web_routers.status
run_security_auditmoved-lazyhermes_cli.web_routers.ops
run_toolset_post_setupmoved-lazyhermes_cli.web_routers.tools
save_configmoved-lazyhermes_cli.config
save_env_valuemoved-lazyhermes_cli.config
save_toolset_envmoved-lazyhermes_cli.web_routers.tools
scan_skill_hubmoved-lazyhermes_cli.web_routers.skills
search_sessionsmoved-lazyhermes_cli.web_routers.sessions
search_skills_hubmoved-lazyhermes_cli.web_routers.skills
select_terminal_backendmoved-lazyhermes_cli.web_routers.tools
select_toolset_modelmoved-lazyhermes_cli.web_routers.tools
select_toolset_providermoved-lazyhermes_cli.web_routers.tools
serve_plugin_assetmoved-lazyhermes_cli.web_routers.dashboard_ui
set_active_profile_endpointmoved-lazyhermes_cli.web_routers.profiles
set_curator_pausedmoved-lazyhermes_cli.web_routers.status
set_dashboard_fontmoved-lazyhermes_cli.web_routers.dashboard_ui
set_dashboard_thememoved-lazyhermes_cli.web_routers.dashboard_ui
set_env_varmoved-lazyhermes_cli.web_routers.config_env
set_mcp_server_enabledmoved-lazyhermes_cli.web_routers.mcp
set_memory_providermoved-lazyhermes_cli.web_routers.ops
set_moa_modelsmoved-lazyhermes_cli.web_routers.models
set_model_assignmentmoved-lazyhermes_cli.web_routers.models
set_webhook_enabledmoved-lazyhermes_cli.web_routers.ops
setup_memory_providermoved-lazyhermes_cli.web_routers.memory_providers
shleximportshlex
shutilimportshutil
speak_stream_wsmoved-lazyhermes_cli.web_routers.audio
speak_textmoved-lazyhermes_cli.web_routers.audio
start_gatewaymoved-lazyhermes_cli.web_routers.ops
start_oauth_loginmoved-lazyhermes_cli.web_routers.oauth
start_telegram_onboardingmoved-lazyhermes_cli.web_routers.messaging
start_whatsapp_onboardingmoved-lazyhermes_cli.web_routers.messaging
statimportstat
stop_gatewaymoved-lazyhermes_cli.web_routers.ops
stream_managed_filemoved-lazyhermes_cli.web_routers.files
submit_oauth_codemoved-lazyhermes_cli.web_routers.oauth
tempfileimporttempfile
test_mcp_servermoved-lazyhermes_cli.web_routers.mcp
test_messaging_platformmoved-lazyhermes_cli.web_routers.messaging
timezoneimportdatetime
toggle_skillmoved-lazyhermes_cli.web_routers.skills
toggle_toolsetmoved-lazyhermes_cli.web_routers.tools
transcribe_audio_uploadmoved-lazyhermes_cli.web_routers.audio
trigger_cron_jobmoved-lazyhermes_cli.web_routers.cron
tts_leasemoved-lazyhermes_cli.web_routers.audio
uninstall_skill_hubmoved-lazyhermes_cli.web_routers.skills
update_configmoved-lazyhermes_cli.web_routers.config_env
update_config_rawmoved-lazyhermes_cli.web_routers.analytics
update_cron_jobmoved-lazyhermes_cli.web_routers.cron
update_hermesmoved-lazyhermes_cli.web_routers.actions
update_learning_nodemoved-lazyhermes_cli.web_routers.status
update_memory_provider_configmoved-lazyhermes_cli.web_routers.memory_providers
update_messaging_platformmoved-lazyhermes_cli.web_routers.messaging
update_profile_description_endpointmoved-lazyhermes_cli.web_routers.profiles
update_profile_model_endpointmoved-lazyhermes_cli.web_routers.profiles
update_profile_soulmoved-lazyhermes_cli.web_routers.profiles
update_skill_contentmoved-lazyhermes_cli.web_routers.skills
update_skills_hubmoved-lazyhermes_cli.web_routers.skills
upload_chat_imagemoved-lazyhermes_cli.web_routers.files
upload_managed_filemoved-lazyhermes_cli.web_routers.files
upload_managed_file_streammoved-lazyhermes_cli.web_routers.files
upsert_custom_endpointmoved-lazyhermes_cli.web_routers.config_env
validate_custom_endpointmoved-lazyhermes_cli.web_routers.config_env
validate_provider_credentialmoved-lazyhermes_cli.web_routers.config_env
windows_detach_flagsmoved-lazyhermes_cli._subprocess_compat
windows_hide_flagsmoved-lazyhermes_cli._subprocess_compat
write_platform_config_fieldmoved-lazyhermes_cli.config
yamlimportyaml
zipfileimportzipfile

hermes_cli.webhook

namekindnew location
atomic_replacemoved-lazyutils
osimportos
tempfileimporttempfile

hermes_cli.win_pty_bridge

namekindnew location
osimportos

hermes_logging

namekindnew location
rotating_file_handlersrestored-def(deleted; BASE body restored)

hermes_state

namekindnew location
AUTO_VACUUM_MIN_FREELIST_RATIOmoved-lazyhermes_state_common
ActivityProvenancemoved-lazyagent.session_activity
CompressionSessionBusyErrormoved-lazyhermes_state_errors
CompressionSessionClosedErrormoved-lazyhermes_state_errors
DEFERRED_INDEX_SQLmoved-lazyhermes_state_common
FTS_CJK_STALE_KEYmoved-lazyhermes_state_common
FTS_CJK_TABLE_SQLmoved-lazyhermes_state_fts
FTS_CJK_TRIGGER_SQLmoved-lazyhermes_state_fts
FTS_REBUILD_DEFERRAL_KEYmoved-lazyhermes_state_common
FTS_SQLmoved-lazyhermes_state_common
FTS_STALE_KEYmoved-lazyhermes_state_common
FTS_STORAGE_VERSIONmoved-lazyhermes_state_common
FTS_TRIGRAM_SQLmoved-lazyhermes_state_common
LEGACY_FTS_SQLmoved-lazyhermes_state_common
LEGACY_FTS_TRIGRAM_SQLmoved-lazyhermes_state_common
MAX_FTS5_QUERY_CHARSmoved-lazyhermes_state_common
MAX_SAFE_EXPORT_MESSAGESrestored-def(deleted; BASE body restored)
MAX_SAFE_RESUME_MESSAGESrestored-def(deleted; BASE body restored)
PERSISTENCE_ERROR_CAUSESmoved-lazyhermes_state_errors
SCHEMA_SQLmoved-lazyhermes_state_common
SCHEMA_VERSIONmoved-lazyhermes_state_common
SESSION_STATUS_COMPLETEmoved-lazyhermes_state_sessions
SESSION_STATUS_EMPTYmoved-lazyhermes_state_sessions
SESSION_STATUS_ERRORmoved-lazyhermes_state_sessions
SESSION_STATUS_INTERRUPTEDmoved-lazyhermes_state_sessions
SKILL_EXCERPT_JOINTmoved-lazyagent.skill_commands
SKILL_SCAFFOLD_SQL_LIKEmoved-lazyagent.skill_commands
SessionTurnLeaseLostErrormoved-lazyhermes_state_errors
Setimporttyping
WalUnsupportedErrormoved-lazyhermes_state_wal
apply_durability_barriersmoved-lazyhermes_state_repair
classify_session_statusmoved-lazyhermes_state_sessions
close_shared_session_dbsunrestorableno top-level definition on BASE
collect_state_db_statsmoved-lazyhermes_state_dbfile
contextlibimportcontextlib
count_db_holdersmoved-lazyhermes_state_dbfile
describe_skill_invocationmoved-lazyagent.skill_commands
errnoimporterrno
fts5_cjk_so_pathmoved-lazyhermes_state_fts
get_shared_session_dbunrestorableno top-level definition on BASE
is_advisory_lock_contentionmoved-lazyhermes_state_common
is_automatic_end_reasonmoved-lazyhermes_state_common
is_disk_full_errormoved-lazyhermes_state_errors
is_sqlite_wal_reset_vulnerablemoved-lazyhermes_state_wal
is_transient_sqlite_errormoved-lazyhermes_state_errors
iter_deleted_sqlite_sidecar_holdersmoved-lazyhermes_state_dbfile
release_or_closemoved-lazyhermes_state_registry
release_shared_session_dbunrestorableno top-level definition on BASE
report_startup_progressmoved-lazyhermes_startup_watchdog
resolve_journal_modemoved-lazyhermes_state_wal
resolve_synchronous_levelmoved-lazyhermes_state_wal
sanitize_contextmoved-lazyagent.memory_manager
sqlite_source_idmoved-lazyhermes_state_wal
structimportstruct
weakrefimportweakref
workspace_keymoved-lazyhermes_state_sessions

hermes_state_registry

namekindnew location
close_shared_session_dbsrestored-def(deleted; BASE body restored)
get_shared_session_dbrestored-def(deleted; BASE body restored)
release_shared_session_dbrestored-def(deleted; BASE body restored)
namekindnew location
jsonimportjson
osimportos

plugins.browser.browser_use.provider

namekindnew location
BrowserProvidermoved-lazyagent.browser_provider
osimportos

plugins.browser.browserbase.provider

namekindnew location
BrowserProvidermoved-lazyagent.browser_provider
requestsimportrequests
uuidimportuuid

plugins.browser.firecrawl.provider

namekindnew location
BrowserProvidermoved-lazyagent.browser_provider
requestsimportrequests
uuidimportuuid

plugins.context_engine

namekindnew location
importlibimportimportlib.util
sysimportsys

plugins.cron_providers

namekindnew location
importlibimportimportlib.util
sysimportsys

plugins.cron_providers.chronos

namekindnew location
Optionalimporttyping

plugins.cron_providers.chronos._nas_client

namekindnew location
Optionalimporttyping

plugins.dashboard_auth.basic

namekindnew location
Anyimporttyping
LoginStartmoved-lazyhermes_cli.dashboard_auth

plugins.dashboard_auth.drain

namekindnew location
LoginStartmoved-lazyhermes_cli.dashboard_auth

plugins.dashboard_auth.nous

namekindnew location
DashboardAuthProvidermoved-lazyhermes_cli.dashboard_auth
InvalidCodeErrormoved-lazyhermes_cli.dashboard_auth
RefreshExpiredErrormoved-lazyhermes_cli.dashboard_auth
base64importbase64
classify_jwks_lookup_errormoved-lazyhermes_cli.dashboard_auth
hashlibimporthashlib
httpximporthttpx
osimportos
secretsimportsecrets
urllibimporturllib.parse

plugins.dashboard_auth.self_hosted

namekindnew location
DashboardAuthProvidermoved-lazyhermes_cli.dashboard_auth
InvalidCodeErrormoved-lazyhermes_cli.dashboard_auth
RefreshExpiredErrormoved-lazyhermes_cli.dashboard_auth
classify_jwks_lookup_errormoved-lazyhermes_cli.dashboard_auth
hashlibimporthashlib
osimportos
secretsimportsecrets

plugins.google_meet.audio_bridge

namekindnew location
chrome_fake_audio_flagsrestored-def(deleted; BASE body restored)

plugins.google_meet.meet_bot

namekindnew location
SAY_PCM_FILENAMErestored-def(deleted; BASE body restored)
SAY_QUEUE_FILENAMErestored-def(deleted; BASE body restored)
jsonimportjson

plugins.google_meet.node.cli

namekindnew location
Anyimporttyping

plugins.google_meet.node.registry

namekindnew location
jsonimportjson

plugins.image_gen.deepinfra

namekindnew location
ImageGenProvidermoved-lazyagent.image_gen_provider
error_responsemoved-lazyagent.image_gen_provider
save_b64_imagemoved-lazyagent.image_gen_provider
save_url_imagemoved-lazyagent.image_gen_provider

plugins.image_gen.fal

namekindnew location
ImageGenProvidermoved-lazyagent.image_gen_provider
osimportos

plugins.image_gen.krea

namekindnew location
ImageGenProvidermoved-lazyagent.image_gen_provider
error_responsemoved-lazyagent.image_gen_provider
normalize_reference_imagesmoved-lazyagent.image_gen_provider
osimportos

plugins.image_gen.openai

namekindnew location
ImageGenProvidermoved-lazyagent.image_gen_provider
error_responsemoved-lazyagent.image_gen_provider
normalize_reference_imagesmoved-lazyagent.image_gen_provider
save_b64_imagemoved-lazyagent.image_gen_provider
save_url_imagemoved-lazyagent.image_gen_provider

plugins.image_gen.xai

namekindnew location
ImageGenProvidermoved-lazyagent.image_gen_provider
error_responsemoved-lazyagent.image_gen_provider
normalize_reference_imagesmoved-lazyagent.image_gen_provider
save_b64_imagemoved-lazyagent.image_gen_provider
save_url_imagemoved-lazyagent.image_gen_provider

plugins.memory.hindsight

namekindnew location
dataclassimportdataclasses
importlibimportimportlib

plugins.memory.honcho

namekindnew location
CONCLUDE_SCHEMArestored-def(deleted; BASE body restored)
CONTEXT_SCHEMArestored-def(deleted; BASE body restored)
PROFILE_SCHEMArestored-def(deleted; BASE body restored)
REASONING_SCHEMArestored-def(deleted; BASE body restored)
SEARCH_SCHEMArestored-def(deleted; BASE body restored)
TRIVIAL_PROMPT_REmoved-lazyagent.memory_provider

plugins.memory.honcho.client

namekindnew location
SingletonSlotmoved-lazyplugins.plugin_utils

plugins.memory.honcho.oauth

namekindnew location
Callableimporttyping

plugins.memory.honcho.session

namekindnew location
Callableimporttyping
Pathimportpathlib
hashlibimporthashlib
reimportre

plugins.memory.mem0

namekindnew location
ADD_SCHEMArestored-def(deleted; BASE body restored)
DELETE_SCHEMArestored-def(deleted; BASE body restored)
SEARCH_SCHEMArestored-def(deleted; BASE body restored)
UPDATE_SCHEMArestored-def(deleted; BASE body restored)

plugins.memory.mem0._setup

namekindnew location
has_oss_flagsrestored-def(deleted; BASE body restored)

plugins.memory.retaindb

namekindnew location
CONTEXT_SCHEMArestored-def(deleted; BASE body restored)
Dictimporttyping
FILE_DELETE_SCHEMArestored-def(deleted; BASE body restored)
FILE_INGEST_SCHEMArestored-def(deleted; BASE body restored)
FILE_LIST_SCHEMArestored-def(deleted; BASE body restored)
FILE_READ_SCHEMArestored-def(deleted; BASE body restored)
FILE_UPLOAD_SCHEMArestored-def(deleted; BASE body restored)
FORGET_SCHEMArestored-def(deleted; BASE body restored)
Listimporttyping
PROFILE_SCHEMArestored-def(deleted; BASE body restored)
REMEMBER_SCHEMArestored-def(deleted; BASE body restored)
SEARCH_SCHEMArestored-def(deleted; BASE body restored)

plugins.memory.supermemory

namekindnew location
FORGET_SCHEMArestored-def(deleted; BASE body restored)
PROFILE_SCHEMArestored-def(deleted; BASE body restored)
SEARCH_SCHEMArestored-def(deleted; BASE body restored)
STORE_SCHEMArestored-def(deleted; BASE body restored)

plugins.platforms.a2a.protocol

namekindnew location
ERR_PUSH_NOT_SUPPORTEDrestored-def(deleted; BASE body restored)
STATE_AUTH_REQUIREDrestored-def(deleted; BASE body restored)
copyimportcopy
data_partrestored-def(deleted; BASE body restored)
file_partrestored-def(deleted; BASE body restored)
message_with_partsrestored-def(deleted; BASE body restored)
stream_messagerestored-def(deleted; BASE body restored)

plugins.platforms.a2a.security

namekindnew location
Pathimportpathlib
authenticaterestored-def(deleted; BASE body restored)
get_bearer_tokenrestored-def(deleted; BASE body restored)
get_peer_tokensrestored-def(deleted; BASE body restored)
get_push_secretrestored-def(deleted; BASE body restored)
get_trusted_peersrestored-def(deleted; BASE body restored)
is_trusted_peerrestored-def(deleted; BASE body restored)
resolve_bind_hostrestored-def(deleted; BASE body restored)
sign_push_payloadrestored-def(deleted; BASE body restored)

plugins.platforms.a2a.tools

namekindnew location
TypedDictimporttyping

plugins.platforms.dingtalk.adapter

namekindnew location
DINGTALK_TYPE_MAPPINGmoved-lazyplugins.platforms.dingtalk.inbound
EXT_MAPrestored-def(deleted; BASE body restored)
MessageTypemoved-lazygateway.platforms.event

plugins.platforms.discord.adapter

namekindnew location
env_intmoved-lazyutils

plugins.platforms.feishu.feishu_comment

namekindnew location
add_comment_reactionrestored-def(deleted; BASE body restored)
delete_comment_reactionrestored-def(deleted; BASE body restored)

plugins.platforms.google_chat.oauth

namekindnew location
atomic_replacemoved-lazyutils
secretsimportsecrets
subprocessimportsubprocess

plugins.platforms.irc.adapter

namekindnew location
osimportos

plugins.platforms.line.adapter

namekindnew location
fieldimportdataclasses

plugins.platforms.matrix.adapter

namekindnew location
MAX_MESSAGE_LENGTHrestored-def(deleted; BASE body restored)
PaginationDirectionunrestorableno top-level definition on BASE
SyncTokenunrestorableno top-level definition on BASE
_MATRIX_CAPABILITIESrestored-helper(deleted; restored as a dependency of get_matrix_capabilities)
get_matrix_capabilitiesrestored-def(deleted; BASE body restored)

plugins.platforms.ntfy.adapter

namekindnew location
osimportos

plugins.platforms.photon.adapter

namekindnew location
ProcessingOutcomemoved-lazygateway.platforms.event
resolve_sidecar_dirmoved-lazyplugins.platforms.photon.sidecar_paths

plugins.platforms.photon.auth

namekindnew location
credential_summaryrestored-def(deleted; BASE body restored)
get_sessionrestored-def(deleted; BASE body restored)

plugins.platforms.photon.cli

namekindnew location
Pathimportpathlib
resolve_sidecar_dirmoved-lazyplugins.platforms.photon.sidecar_paths

plugins.platforms.raft.adapter

namekindnew location
asyncioimportasyncio

plugins.platforms.teams.adapter

namekindnew location
TeamsSummaryWritermoved-lazyplugins.platforms.teams.summary_writer
htmlimporthtml
quoteimporturllib.parse

plugins.platforms.telegram.adapter

namekindnew location
atomic_replacemoved-lazyutils
cache_document_from_bytesmoved-lazygateway.platforms.base
threadingimportthreading

plugins.platforms.telegram.telegram_ids

namekindnew location
telegram_chat_id_keyrestored-def(deleted; BASE body restored)

plugins.platforms.wecom.adapter

namekindnew location
ABSOLUTE_MAX_BYTESmoved-lazyplugins.platforms.wecom.media
APP_CMD_UPLOAD_MEDIA_CHUNKmoved-lazyplugins.platforms.wecom.media
APP_CMD_UPLOAD_MEDIA_FINISHmoved-lazyplugins.platforms.wecom.media
APP_CMD_UPLOAD_MEDIA_INITmoved-lazyplugins.platforms.wecom.media
FILE_MAX_BYTESmoved-lazyplugins.platforms.wecom.media
IMAGE_MAX_BYTESmoved-lazyplugins.platforms.wecom.media
MAX_INTERMEDIATE_FRAMESmoved-lazyplugins.platforms.wecom.streaming
MAX_UPLOAD_CHUNKSmoved-lazyplugins.platforms.wecom.media
Pathimportpathlib
ReplyFramemoved-lazyplugins.platforms.wecom.streaming
STREAM_EXPIRED_ERRCODEmoved-lazyplugins.platforms.wecom.streaming
STREAM_REQUEST_EXPIRED_ERRCODEmoved-lazyplugins.platforms.wecom.streaming
STREAM_VERSION_CONFLICT_ERRCODEmoved-lazyplugins.platforms.wecom.streaming
UPLOAD_CHUNK_SIZEmoved-lazyplugins.platforms.wecom.media
VIDEO_MAX_BYTESmoved-lazyplugins.platforms.wecom.media
VOICE_MAX_BYTESmoved-lazyplugins.platforms.wecom.media
VOICE_SUPPORTED_MIMESmoved-lazyplugins.platforms.wecom.media
WeComStreamExpiredErrormoved-lazyplugins.platforms.wecom.streaming
base64importbase64
cache_document_from_bytes_asyncmoved-lazygateway.platforms.base
cache_image_from_bytes_asyncmoved-lazygateway.platforms.base
dataclassimportdataclasses
dequeimportcollections
hashlibimporthashlib
mimetypesimportmimetypes
osimportos
unquoteimporturllib.parse
urlparseimporturllib.parse

plugins.spotify

namekindnew location
SPOTIFY_ALBUMS_SCHEMAmoved-lazyplugins.spotify.tools
SPOTIFY_DEVICES_SCHEMAmoved-lazyplugins.spotify.tools
SPOTIFY_LIBRARY_SCHEMAmoved-lazyplugins.spotify.tools
SPOTIFY_PLAYBACK_SCHEMAmoved-lazyplugins.spotify.tools
SPOTIFY_PLAYLISTS_SCHEMAmoved-lazyplugins.spotify.tools
SPOTIFY_QUEUE_SCHEMAmoved-lazyplugins.spotify.tools
SPOTIFY_SEARCH_SCHEMAmoved-lazyplugins.spotify.tools

plugins.spotify.client

namekindnew location
compact_jsonrestored-def(deleted; BASE body restored)
jsonrestored-importjson
jsonimportjson

plugins.spotify.tools

namekindnew location
SpotifyAPIErrormoved-lazyplugins.spotify.client
SpotifyAuthRequiredErrormoved-lazyplugins.spotify.client

plugins.teams_pipeline.cli

namekindnew location
GraphSubscriptionmoved-lazyplugins.teams_pipeline.models
Pathimportpathlib
datetimeimportdatetime
timedeltaimportdatetime
timezoneimportdatetime

plugins.teams_pipeline.meetings

namekindnew location
fetch_call_record_artifactrestored-def(deleted; BASE body restored)

plugins.teams_pipeline.pipeline

namekindnew location
osimportos

plugins.teams_pipeline.subscriptions

namekindnew location
build_storerestored-def(deleted; BASE body restored)
resolve_store_pathrestored-helper(deleted; restored as a dependency of build_store)
resolve_store_pathrestored-def(deleted; BASE body restored)
resolve_teams_pipeline_store_pathrestored-importplugins.teams_pipeline.store
resolve_teams_pipeline_store_pathmoved-lazyplugins.teams_pipeline.store

plugins.video_gen.fal

namekindnew location
osimportos

plugins.video_gen.xai

namekindnew location
_run_xai_video_coroutinerestored-helper(deleted; restored as a dependency of run_xai_video_generation)
run_xai_video_generationrestored-def(deleted; BASE body restored)

plugins.web.brave_free.provider

namekindnew location
WebSearchProvidermoved-lazyagent.web_search_provider
osimportos

plugins.web.ddgs.provider

namekindnew location
WebSearchProvidermoved-lazyagent.web_search_provider

plugins.web.exa.provider

namekindnew location
WebSearchProvidermoved-lazyagent.web_search_provider
osimportos

plugins.web.firecrawl.provider

namekindnew location
NoReturnimporttyping
TYPE_CHECKINGimporttyping
WebSearchProvidermoved-lazyagent.web_search_provider
osimportos

plugins.web.keenable.provider

namekindnew location
WebSearchProvidermoved-lazyagent.web_search_provider

plugins.web.parallel.provider

namekindnew location
WebSearchProvidermoved-lazyagent.web_search_provider

plugins.web.searxng.provider

namekindnew location
WebSearchProvidermoved-lazyagent.web_search_provider
osimportos

plugins.web.tavily.provider

namekindnew location
WebSearchProvidermoved-lazyagent.web_search_provider

plugins.web.xai.provider

namekindnew location
WebSearchProvidermoved-lazyagent.web_search_provider

providers

namekindnew location
OMIT_TEMPERATUREmoved-lazyproviders.base

run_agent

namekindnew location
COMPRESSED_SUMMARY_METADATA_KEYmoved-lazyagent.context_compressor
ContextCompressormoved-lazyagent.context_compressor
DEFAULT_AGENT_IDENTITYmoved-lazyagent.prompt_builder
FailoverReasonmoved-lazyagent.error_classifier
OpenAImoved-lazyagent.process_bootstrap
SimpleNamespaceimporttypes
asyncioimportasyncio
atomic_json_writemoved-lazyutils
base64importbase64
build_context_files_promptmoved-lazyagent.prompt_builder
build_environment_hintsmoved-lazyagent.prompt_builder
build_skills_system_promptmoved-lazyagent.prompt_builder
check_toolset_requirementsmoved-lazymodel_tools
convert_scratchpad_to_thinkmoved-lazyagent.trajectory
copyimportcopy
estimate_request_tokens_roughmoved-lazyagent.model_metadata
file_mutation_result_landedmoved-lazyagent.tool_result_classification
flatten_message_textmoved-lazyagent.message_content
get_tool_definitionsmoved-lazymodel_tools
handle_function_callmoved-lazymodel_tools
hashlibimporthashlib
is_truthy_valuemoved-lazyutils
jittered_backoffmoved-lazyagent.retry_utils
load_soul_mdmoved-lazyagent.prompt_builder
normalize_usagemoved-lazyagent.usage_pricing
redact_sensitive_textmoved-lazyagent.redact
request_hard_interruptmoved-lazyagent.interrupt_compat
sanitize_contextmoved-lazyagent.memory_manager
tempfileimporttempfile
user_originated_turn_viewmoved-lazyagent.context_compressor

tools

namekindnew location
mcp_toolunrestorableno top-level definition on BASE

tools.apply_layout_tool

namekindnew location
jsonimportjson

tools.approval

namekindnew location
DANGEROUS_PATTERNSmoved-lazytools.approval_detection
DANGEROUS_PATTERNS_COMPILEDmoved-lazytools.approval_detection
HARDLINE_PATTERNSmoved-lazytools.approval_detection
HARDLINE_PATTERNS_COMPILEDmoved-lazytools.approval_detection
HUMAN_WAIT_MARGIN_Smoved-lazytools.approval_human_wait
cfg_getmoved-lazyhermes_cli.config
contextlibimportcontextlib
contextvarsimportcontextvars
fnmatchimportfnmatch
functoolsimportfunctools
get_plugin_managermoved-lazytools.approval_prompt
human_wait_ceilingmoved-lazytools.approval_human_wait
human_wait_secondsmoved-lazytools.approval_human_wait
human_wait_windowmoved-lazytools.approval_human_wait
is_interruptedmoved-lazytools.interrupt
reimportre
request_elicitation_consentmoved-lazytools.approval_prompt
reset_current_observability_contextmoved-lazytools.approval_context
reset_current_session_keymoved-lazytools.approval_context
reset_hermes_interactive_contextmoved-lazytools.approval_context
set_current_observability_contextmoved-lazytools.approval_context
set_current_session_keymoved-lazytools.approval_context
set_hermes_interactive_contextmoved-lazytools.approval_context
shleximportshlex
sysimportsys
tempfileimporttempfile
timeimporttime
unicodedataimportunicodedata
uuidimportuuid

tools.async_delegation

namekindnew location
active_for_sessionrestored-def(deleted; BASE body restored)

tools.browser_camofox_state

namekindnew location
CAMOFOX_STATE_DIR_NAMErestored-def(deleted; BASE body restored)
CAMOFOX_STATE_SUBDIRrestored-def(deleted; BASE body restored)

tools.browser_dialog_tool

namekindnew location
loggermoved-lazytools.approval
loggingimportlogging

tools.browser_supervisor

namekindnew location
CONSOLE_HISTORY_MAXrestored-def(deleted; BASE body restored)
ConsoleEventrestored-def(deleted; BASE body restored)
DIALOG_BRIDGE_HOSTmoved-lazytools.browser_supervisor_dialogs
DIALOG_BRIDGE_URL_PATTERNmoved-lazytools.browser_supervisor_dialogs
DIALOG_POLICY_AUTO_ACCEPTmoved-lazytools.browser_supervisor_dialogs
DIALOG_POLICY_AUTO_DISMISSmoved-lazytools.browser_supervisor_dialogs
DIALOG_POLICY_MUST_RESPONDmoved-lazytools.browser_supervisor_dialogs
FRAME_TREE_MAX_ENTRIESmoved-lazytools.browser_supervisor_frames
FRAME_TREE_MAX_OOPIF_DEPTHmoved-lazytools.browser_supervisor_frames

tools.browser_tool

namekindnew location
BrowserUseProvidermoved-lazyplugins.browser.browser_use.provider.BrowserUseBrowserProvider
BrowserbaseProvidermoved-lazyplugins.browser.browserbase.provider.BrowserbaseBrowserProvider
CloudBrowserProvidermoved-lazyagent.browser_provider.BrowserProvider
FirecrawlProvidermoved-lazyplugins.browser.firecrawl.provider.FirecrawlBrowserProvider
Listimporttyping
SNAPSHOT_SUMMARIZE_THRESHOLDrestored-def(deleted; BASE body restored)
Tupleimporttyping
agent_browser_runnablemoved-lazyhermes_constants
check_browser_requirementsmoved-lazytools.browser_tool_install
check_browser_vision_requirementsmoved-lazytools.browser_tool_install
cleanup_all_browsersmoved-lazytools.browser_tool_lifecycle
cleanup_browsermoved-lazytools.browser_tool_lifecycle
contextlibimportcontextlib
datetimeimportdatetime
functoolsimportfunctools
get_hermes_home_overridemoved-lazyhermes_constants
hermes_home_keymoved-lazyhermes_constants
is_truthy_valuemoved-lazyutils
lightpanda_engine_statusmoved-lazytools.browser_tool_lightpanda_fallback
node_tool_runnablemoved-lazyhermes_constants
normalize_browser_cloud_providermoved-lazytools.tool_backend_helpers
reimportre
reset_hermes_home_overridemoved-lazyhermes_constants
set_hermes_home_overridemoved-lazyhermes_constants
shutilimportshutil
signalimportsignal
timezoneimportdatetime
warm_agent_browser_npx_cachemoved-lazytools.browser_tool_install
windows_hide_flagsmoved-lazyhermes_cli._subprocess_compat

tools.clarify_gateway

namekindnew location
get_notifyrestored-def(deleted; BASE body restored)
register_notifyrestored-def(deleted; BASE body restored)
unregister_notifyrestored-def(deleted; BASE body restored)

tools.close_preview_tool

namekindnew location
CLOSE_PREVIEW_SCHEMArestored-def(deleted; BASE body restored)
jsonimportjson
registrymoved-lazytools.registry
tool_errormoved-lazytools.registry

tools.code_execution_tool

namekindnew location
DEFAULT_KERNEL_MODErestored-def(deleted; BASE body restored)
KERNEL_MODESrestored-def(deleted; BASE body restored)
platformimportplatform
socketimportsocket
sysimportsys
thread_scoped_silencemoved-lazyagent.thread_scoped_output

tools.code_kernel_remote

namekindnew location
base64importbase64

tools.computer_use

namekindnew location
annotationsimport__future__
check_computer_use_requirementsmoved-lazytools.computer_use.tool
get_computer_use_schemamoved-lazytools.computer_use.tool
handle_computer_usemoved-lazytools.computer_use.tool
release_computer_use_sessionmoved-lazytools.computer_use.tool
set_approval_callbackmoved-lazytools.computer_use.tool

tools.computer_use.cua_backend

namekindnew location
CaptureResultmoved-lazytools.computer_use.backend
PureWindowsPathimportpathlib
Tupleimporttyping
UIElementmoved-lazytools.computer_use.backend
asyncioimportasyncio
base64importbase64
concurrentimportconcurrent.futures
cua_driver_install_hintmoved-lazytools.computer_use.cua_backend_driver
cua_driver_update_checkmoved-lazytools.computer_use.cua_backend_driver
dequeimportcollections
functoolsimportfunctools
jsonimportjson
reimportre
shutilimportshutil
tempfileimporttempfile
timeimporttime

tools.computer_use.permissions

namekindnew location
Listimporttyping

tools.computer_use.tool

namekindnew location
structimportstruct

tools.cronjob_tools

namekindnew location
effective_job_statemoved-lazycron.jobs
reimportre

tools.delegate_tool

namekindnew location
DEFAULT_CHILD_TIMEOUTmoved-lazytools.delegate_tool_config
DEFAULT_MAX_SUMMARY_CHARSmoved-lazytools.delegate_tool_results
DEFAULT_TOOLSETSmoved-lazytools.delegate_tool_toolsets
FuturesTimeoutErrorimportconcurrent.futures
MAX_DEPTHmoved-lazytools.delegate_tool_config
TOOLSETSmoved-lazytoolsets
base_url_hostnamemoved-lazyutils
contextvarsimportcontextvars
enumimportenum
file_statemoved-lazytools
jsonimportjson
osimportos
reimportre
request_hard_interruptmoved-lazyagent.interrupt_compat
threadingimportthreading
urlsplitimporturllib.parse
urlunsplitimporturllib.parse

tools.delegation_live_log

namekindnew location
new_live_delegation_idrestored-def(deleted; BASE body restored)

tools.delegation_output_schema

namekindnew location
MAX_SCHEMA_RETRIESrestored-def(deleted; BASE body restored)

tools.discord_tool

namekindnew location
TYPE_CHECKINGimporttyping
Tupleimporttyping
get_dynamic_schemarestored-def(deleted; BASE body restored)

tools.drive_preview_tool

namekindnew location
jsonimportjson

tools.env_probe

namekindnew location
osimportos

tools.environments

namekindnew location
modal_utilsunrestorableno top-level definition on BASE

tools.environments.base

namekindnew location
IOimporttyping
Protocolimporttyping
codecsimportcodecs
dequeimportcollections
reimportre
sanitize_task_id_for_pathmoved-lazytools.environments.path_utils
selectimportselect
subprocessimportsubprocess
windows_hide_flagsmoved-lazyhermes_cli._subprocess_compat

tools.environments.managed_modal

namekindnew location
BaseModalExecutionEnvironmentunrestorableno top-level definition on BASE
ModalExecStartunrestorableno top-level definition on BASE
PreparedModalExecunrestorableno top-level definition on BASE
dataclassimportdataclasses

tools.environments.modal_utils

namekindnew location
*module-stub(deleted)

tools.environments.vercel_sandbox

namekindnew location
dataclassimportdataclasses

tools.feishu_doc_tool

namekindnew location
jsonimportjson
loggermoved-lazytools.approval
loggingimportlogging
threadingimportthreading

tools.feishu_drive_tool

namekindnew location
jsonimportjson
threadingimportthreading

tools.file_operations

namekindnew location
Anyimporttyping
ClassVarimporttyping
DEFAULT_READ_LIMITmoved-lazytools.file_operations_common
DEFAULT_READ_OFFSETmoved-lazytools.file_operations_common
DEFAULT_SEARCH_LIMITmoved-lazytools.file_operations_common
DEFAULT_SEARCH_OFFSETmoved-lazytools.file_operations_common
LINTERSmoved-lazytools.file_operations_lint
LintResultmoved-lazytools.file_operations_common
Listimporttyping
MAX_FILE_SIZEmoved-lazytools.transcription_common
MAX_LINESrestored-def(deleted; BASE body restored)
MAX_LINE_LENGTHrestored-def(deleted; BASE body restored)
SEARCH_PRUNE_DIR_NAMESmoved-lazyagent.search_policy
SearchMatchmoved-lazytools.file_operations_common
WRITE_DENIED_PATHSrestored-def(deleted; BASE body restored)
WRITE_DENIED_PREFIXESrestored-def(deleted; BASE body restored)
build_write_denied_pathsrestored-importagent.file_safety
build_write_denied_pathsmoved-lazyagent.file_safety
build_write_denied_prefixesrestored-importagent.file_safety
build_write_denied_prefixesmoved-lazyagent.file_safety
dataclassimportdataclasses
fieldimportdataclasses
posixpathimportposixpath
threadingimportthreading
tool_interruptmoved-lazytools.interrupt

tools.file_tools

namekindnew location
PurePosixPathimportpathlib
has_opaque_document_extensionmoved-lazytools.binary_extensions
is_pdf_pathmoved-lazytools.binary_extensions
notify_other_tool_callmoved-lazytools.file_tools_read_tracking
posixpathimportposixpath
reset_file_dedupmoved-lazytools.file_tools_read_tracking
sysimportsys

tools.focus_pane_tool

namekindnew location
FOCUS_PANE_SCHEMArestored-def(deleted; BASE body restored)
jsonimportjson

tools.fuzzy_match

namekindnew location
Listimporttyping
Tupleimporttyping

tools.image_generation_tool

namekindnew location
is_krea_modelrestored-def(deleted; BASE body restored)

tools.lazy_deps

namekindnew location
feature_specsrestored-def(deleted; BASE body restored)

tools.managed_tool_gateway

namekindnew location
_MANAGED_GATEWAY_VENDORrestored-helper(deleted; restored as a dependency of build_managed_media_uploader)
_MEDIA_UPLOAD_PRESIGN_TIMEOUT_SECONDSrestored-helper(deleted; restored as a dependency of build_managed_media_uploader)
_MEDIA_UPLOAD_PUT_READ_TIMEOUT_SECONDSrestored-helper(deleted; restored as a dependency of build_managed_media_uploader)
_MEDIA_UPLOAD_PUT_WRITE_TIMEOUT_SECONDSrestored-helper(deleted; restored as a dependency of build_managed_media_uploader)
_describe_media_upload_refusalrestored-helper(deleted; restored as a dependency of build_managed_media_uploader)
build_managed_media_uploaderrestored-def(deleted; BASE body restored)
is_managed_nous_gateway_urlrestored-helper(deleted; restored as a dependency of build_managed_media_uploader)
is_managed_nous_gateway_urlrestored-def(deleted; BASE body restored)
managed_gateway_auth_headersrestored-helper(deleted; restored as a dependency of build_managed_media_uploader)
managed_gateway_auth_headersrestored-def(deleted; BASE body restored)
managed_vendor_base_pathrestored-def(deleted; BASE body restored)
managed_vendor_endpointsrestored-def(deleted; BASE body restored)
managed_vendor_upload_pathrestored-helper(deleted; restored as a dependency of managed_vendor_endpoints)
managed_vendor_upload_pathrestored-def(deleted; BASE body restored)
urlsplitrestored-importurllib.parse
urlsplitimporturllib.parse

tools.mcp_oauth

namekindnew location
OAuthClientInformationFullrestored-def(deleted; BASE body restored)
OAuthClientMetadatarestored-def(deleted; BASE body restored)
OAuthClientProviderrestored-def(deleted; BASE body restored)
OAuthMetadatarestored-def(deleted; BASE body restored)
OAuthTokenrestored-def(deleted; BASE body restored)
contextmanagerimportcontextlib

tools.mcp_schema_cache

namekindnew location
clear_cache_entryrestored-def(deleted; BASE body restored)
has_cached_entryrestored-def(deleted; BASE body restored)

tools.mcp_tool

namekindnew location
Coroutineimporttyping
InvalidMcpUrlErrormoved-lazytools.mcp_tool_errors
MCP_TOOL_NAME_PREFIXmoved-lazytools.mcp_tool_schema
NonMcpEndpointErrormoved-lazytools.mcp_tool_errors
SimpleNamespaceimporttypes
Tupleimporttyping
asynccontextmanagerimportcontextlib
concurrentimportconcurrent.futures
datetimeimportdatetime
discover_mcp_toolsmoved-lazytools.mcp_tool_discovery
errnoimporterrno
fnmatchimportfnmatch
get_mcp_statusmoved-lazytools.mcp_tool_discovery
get_registered_mcp_server_namesmoved-lazytools.mcp_tool_discovery
has_registered_mcp_toolsmoved-lazytools.mcp_tool_discovery
is_mcp_tool_parallel_safemoved-lazytools.mcp_tool_discovery
jsonimportjson
matches_name_filtermoved-lazytools.mcp_tool_schema
mathimportmath
mcp_prefixed_tool_namemoved-lazytools.mcp_tool_schema
persist_agent_tool_namesmoved-lazytools.mcp_tool_agent
probe_mcp_server_toolsmoved-lazytools.mcp_tool_discovery
randomimportrandom
reimportre
reconnect_mcp_servermoved-lazytools.mcp_tool_loop
refresh_agent_mcp_toolsmoved-lazytools.mcp_tool_agent
register_mcp_serversmoved-lazytools.mcp_tool_discovery
reprobe_tool_availabilitymoved-lazytools.mcp_tool_agent
restore_agent_tool_prefixmoved-lazytools.mcp_tool_agent
sanitize_mcp_name_componentmoved-lazytools.mcp_tool_schema
shutdown_mcp_serversmoved-lazytools.mcp_tool_lifecycle
shutilimportshutil
strip_unicode_tagsmoved-lazytools.ansi_strip
tool_errormoved-lazytools.registry
urlparseimporturllib.parse

tools.memory_tool

namekindnew location
atomic_write_textmoved-lazyutils
contextmanagerimportcontextlib
timeimporttime

tools.microsoft_graph_client

namekindnew location
AsyncIteratorimporttyping
GraphCredentialsmoved-lazytools.microsoft_graph_auth

tools.open_preview_tool

namekindnew location
OPEN_PREVIEW_SCHEMArestored-def(deleted; BASE body restored)
jsonimportjson
registrymoved-lazytools.registry

tools.openrouter_client

namekindnew location
get_async_clientrestored-def(deleted; BASE body restored)

tools.path_security

namekindnew location
loggermoved-lazytools.approval
loggingimportlogging

tools.preview_tool

namekindnew location
jsonimportjson
preview_openrestored-def(deleted; BASE body restored)

tools.process_registry

namekindnew location
MAX_ACTIVE_PROCESS_AGErestored-def(deleted; BASE body restored)

tools.react_to_message_tool

namekindnew location
env_var_enabledmoved-lazyutils

tools.read_extract

namekindnew location
MAX_XLSX_BYTESrestored-def(deleted; BASE body restored)

tools.read_preview_tool

namekindnew location
READ_PREVIEW_SCHEMArestored-def(deleted; BASE body restored)
jsonimportjson
registrymoved-lazytools.registry
tool_errormoved-lazytools.registry

tools.read_terminal_tool

namekindnew location
jsonimportjson

tools.read_window_tool

namekindnew location
jsonimportjson
tool_errormoved-lazytools.registry

tools.send_message_tool

namekindnew location
SEND_MESSAGE_SCHEMArestored-def(deleted; BASE body restored)
reimportre
redact_sensitive_textmoved-lazyagent.redact
timeimporttime

tools.skill_ledger

namekindnew location
ACTOR_AGENTrestored-def(deleted; BASE body restored)
ACTOR_CURATORrestored-def(deleted; BASE body restored)
ACTOR_USERrestored-def(deleted; BASE body restored)

tools.skill_linter

namekindnew location
format_findingsrestored-def(deleted; BASE body restored)
has_errorsrestored-def(deleted; BASE body restored)

tools.skill_manager_tool

namekindnew location
mark_background_review_skill_readmoved-lazytools.skill_manager_guards

tools.skill_usage

namekindnew location
_suppressed_filerestored-helper(deleted; restored as a dependency of add_suppressed_name)
_write_suppressed_namesrestored-helper(deleted; restored as a dependency of add_suppressed_name)
add_suppressed_namerestored-def(deleted; BASE body restored)
agent_created_reportrestored-def(deleted; BASE body restored)
osrestored-importos
osimportos
remove_suppressed_namerestored-def(deleted; BASE body restored)
tempfilerestored-importtempfile
tempfileimporttempfile

tools.skillevaluator_scan

namekindnew location
Optionalimporttyping
SCANNER_NAMErestored-def(deleted; BASE body restored)
scanner_availablerestored-def(deleted; BASE body restored)

tools.skills_guard

namekindnew location
full_content_hashrestored-def(deleted; BASE body restored)

tools.skills_hub

namekindnew location
ABCimportabc
BrowseShSourcemoved-lazytools.skills_hub_sources
ClawHubSourcemoved-lazytools.skills_hub_clawhub
GITHUB_TAP_PROVIDERSmoved-lazytools.skills_hub_github
GitHubAuthmoved-lazytools.skills_hub_github
GitHubSourcemoved-lazytools.skills_hub_github
HERMES_INDEX_TTLmoved-lazytools.skills_hub_search
HERMES_INDEX_URLmoved-lazytools.skills_hub_search
HermesIndexSourcemoved-lazytools.skills_hub_official
LobeHubSourcemoved-lazytools.skills_hub_sources
OptionalSkillSourcemoved-lazytools.skills_hub_official
PurePosixPathimportpathlib
ScanResultmoved-lazytools.skills_guard
SkillBundlemoved-lazytools.skills_hub_models
SkillMetamoved-lazytools.skills_hub_models
SkillSourcemoved-lazytools.skills_hub_models
SkillsShSourcemoved-lazytools.skills_hub_skillssh
TRUSTED_REPOSmoved-lazytools.skills_guard
Tupleimporttyping
Unionimporttyping
UrlSourcemoved-lazytools.skills_hub_sources
WellKnownSkillSourcemoved-lazytools.skills_hub_sources
abstractmethodimportabc
bundle_content_hashmoved-lazytools.skills_hub_install
check_for_skill_updatesmoved-lazytools.skills_hub_install
content_hashmoved-lazytools.skills_guard
create_source_routermoved-lazytools.skills_hub_search
dataclassimportdataclasses
fieldimportdataclasses
github_provider_formoved-lazytools.skills_hub_github
hashlibimporthashlib
install_from_quarantinemoved-lazytools.skills_hub_install
is_excluded_skill_pathmoved-lazyagent.skill_utils
osimportos
parallel_search_sourcesmoved-lazytools.skills_hub_search
quarantine_bundlemoved-lazytools.skills_hub_install
quoteimporturllib.parse
reimportre
shutilimportshutil
source_url_for_bundlemoved-lazytools.skills_hub_models
subprocessimportsubprocess
unified_searchmoved-lazytools.skills_hub_search
uninstall_skillmoved-lazytools.skills_hub_install
unquoteimporturllib.parse
urlparseimporturllib.parse
urlsplitimporturllib.parse
urlunparseimporturllib.parse
windows_hide_flagsmoved-lazyhermes_cli._subprocess_compat
yamlimportyaml

tools.skills_sync

namekindnew location
PurePosixPathimportpathlib
atomic_replacemoved-lazyutils
datetimeimportdatetime
diff_bundled_skillmoved-lazytools.skills_sync_bundled_ops
is_bundled_skills_opt_outrestored-def(deleted; BASE body restored)
jsonimportjson
list_user_modified_bundled_skillsmoved-lazytools.skills_sync_bundled_ops
remove_pristine_bundled_skillsmoved-lazytools.skills_sync_bundled_ops
reset_bundled_skillmoved-lazytools.skills_sync_bundled_ops
restore_official_optional_skillmoved-lazytools.skills_sync_optional
set_bundled_skills_opt_outmoved-lazytools.skills_sync_bundled_ops
timezoneimportdatetime

tools.skills_sync_client

namekindnew location
ARTIFACT_TYPE_SKILLmoved-lazytools.skills_sync_client_wire
KIND_COMMITrestored-def(deleted; BASE body restored)
KIND_TREErestored-def(deleted; BASE body restored)
MODE_DIRrestored-def(deleted; BASE body restored)
MODE_EXECrestored-def(deleted; BASE body restored)
MODE_FILErestored-def(deleted; BASE body restored)
SYNC_MANIFEST_ENTRY_NAMEmoved-lazytools.skills_sync_client_wire
SYNC_MANIFEST_TYPErestored-def(deleted; BASE body restored)
SYNC_MANIFEST_VERSIONmoved-lazytools.skills_sync_client_wire
WIRE_VERSIONmoved-lazytools.skills_sync_client_wire
canonical_json_bytesmoved-lazytools.skills_sync_client_wire
datetimeimportdatetime
dev_gate_openrestored-def(deleted; BASE body restored)
hashlibimporthashlib
maybe_pull_org_skillsmoved-lazytools.skills_sync_client_org
org_head_refmoved-lazytools.skills_sync_client_org
org_skill_is_locally_modifiedmoved-lazytools.skills_sync_client_org
org_sync_availablerestored-def(deleted; BASE body restored)
parse_sync_manifestmoved-lazytools.skills_sync_client_wire
propose_skillmoved-lazytools.skills_sync_client_org
pull_org_skillsmoved-lazytools.skills_sync_client_org
timeimporttime
timezoneimportdatetime
user_conflict_refrestored-def(deleted; BASE body restored)
wire_addressmoved-lazytools.skills_sync_client_wire

tools.skills_tool

namekindnew location
Enumimportenum
Setimporttyping
display_hermes_homemoved-lazyhermes_constants
env_var_enabledmoved-lazyutils
reimportre
threadingimportthreading

tools.slash_confirm

namekindnew location
asyncioimportasyncio
resolve_sync_compatrestored-def(deleted; BASE body restored)

tools.terminal_scope

namekindnew location
install_refusal_scoperestored-def(deleted; BASE body restored)
terminal_scoperestored-def(deleted; BASE body restored)

tools.terminal_tool

namekindnew location
Pathimportpathlib
cleanup_vmmoved-lazytools.terminal_tool_lifecycle
env_var_enabledmoved-lazyutils
get_active_envmoved-lazytools.terminal_tool_lifecycle
has_direct_modal_credentialsmoved-lazytools.tool_backend_helpers
importlibimportimportlib.util
is_interruptedmoved-lazytools.interrupt
is_managed_tool_gateway_readymoved-lazytools.managed_tool_gateway
is_persistent_envmoved-lazytools.terminal_tool_lifecycle
nous_tool_gateway_unavailable_messagemoved-lazytools.tool_backend_helpers
platformimportplatform
reimportre
resolve_modal_backend_statemoved-lazytools.tool_backend_helpers
shleximportshlex
shutilimportshutil
statimportstat
strip_inert_heredoc_bodiesmoved-lazytools.shell_heredoc
subprocessimportsubprocess
sysimportsys

tools.tool_result_storage

namekindnew location
HEREDOC_MARKERrestored-def(deleted; BASE body restored)
uuidimportuuid
namekindnew location
Literalimporttyping
build_catalog_listingrestored-def(deleted; BASE body restored)
copyimportcopy
fieldimportdataclasses
reimportre
snowballstemmerimportsnowballstemmer
threadingimportthreading

tools.transcription_tools

namekindnew location
COMMAND_STT_OUTPUT_FORMATSmoved-lazytools.transcription_command
COMMON_LOCAL_BIN_DIRSmoved-lazytools.transcription_common
DEFAULT_COMMAND_STT_LANGUAGEmoved-lazytools.transcription_command
DEFAULT_COMMAND_STT_OUTPUT_FORMATmoved-lazytools.transcription_command
DEFAULT_COMMAND_STT_TIMEOUT_SECONDSmoved-lazytools.transcription_command
DEFAULT_LOCAL_STT_LANGUAGEmoved-lazytools.transcription_common
ELEVENLABS_STT_BASE_URLmoved-lazytools.transcription_common
GROQ_BASE_URLmoved-lazytools.transcription_common
GROQ_MODELSmoved-lazytools.transcription_common
LOCAL_NATIVE_AUDIO_FORMATSmoved-lazytools.transcription_common
MAX_FILE_SIZEmoved-lazytools.transcription_common
OPENAI_BASE_URLmoved-lazytools.transcription_common
OPENAI_MODELSmoved-lazytools.transcription_common
SUPPORTED_FORMATSmoved-lazytools.transcription_common
XAI_STT_BASE_URLmoved-lazytools.transcription_common
managed_nous_tools_enabledmoved-lazytools.tool_backend_helpers
nous_tool_gateway_unavailable_messagemoved-lazytools.tool_backend_helpers
platformimportplatform
queueimportqueue
reimportre
resolve_managed_tool_gatewaymoved-lazytools.managed_tool_gateway
resolve_openai_audio_api_keymoved-lazytools.tool_backend_helpers
shleximportshlex
subprocessimportsubprocess
tempfileimporttempfile
urljoinimporturllib.parse
windows_hide_flagsmoved-lazyhermes_cli._subprocess_compat

tools.tts_tool

namekindnew location
AudioDeliveryProfilemoved-lazytools.tts_tool_delivery
COMMAND_TTS_OUTPUT_FORMATSmoved-lazytools.tts_command_provider
DEFAULT_COMMAND_TTS_MAX_TEXT_LENGTHmoved-lazytools.tts_command_provider
DEFAULT_COMMAND_TTS_OUTPUT_FORMATmoved-lazytools.tts_command_provider
DEFAULT_COMMAND_TTS_TIMEOUT_SECONDSmoved-lazytools.tts_command_provider
DEFAULT_DEEPINFRA_TTS_VOICEmoved-lazytools.tts_tool_openai
DEFAULT_EDGE_VOICEmoved-lazytools.tts_tool_providers
DEFAULT_ELEVENLABS_MODEL_IDmoved-lazytools.tts_tool_providers
DEFAULT_ELEVENLABS_STREAMING_MODEL_IDmoved-lazytools.tts_tool_providers
DEFAULT_ELEVENLABS_VOICE_IDmoved-lazytools.tts_tool_providers
DEFAULT_GEMINI_AUDIO_TAGSmoved-lazytools.tts_tool_providers
DEFAULT_GEMINI_TTS_BASE_URLmoved-lazytools.tts_tool_providers
DEFAULT_GEMINI_TTS_MODELmoved-lazytools.tts_tool_providers
DEFAULT_GEMINI_TTS_VOICEmoved-lazytools.tts_tool_providers
DEFAULT_KITTENTTS_MODELmoved-lazytools.tts_tool_local
DEFAULT_KITTENTTS_VOICEmoved-lazytools.tts_tool_local
DEFAULT_MINIMAX_BASE_URLmoved-lazytools.tts_tool_providers
DEFAULT_MINIMAX_CN_BASE_URLmoved-lazytools.tts_tool_providers
DEFAULT_MINIMAX_MODELmoved-lazytools.tts_tool_providers
DEFAULT_MINIMAX_VOICE_IDmoved-lazytools.tts_tool_providers
DEFAULT_MISTRAL_TTS_MODELmoved-lazytools.tts_tool_providers
DEFAULT_MISTRAL_TTS_VOICE_IDmoved-lazytools.tts_tool_providers
DEFAULT_OPENAI_BASE_URLmoved-lazytools.tts_tool_openai
DEFAULT_OPENAI_MODELmoved-lazytools.tts_tool_openai
DEFAULT_OPENAI_VOICEmoved-lazytools.tts_tool_openai
DEFAULT_PIPER_VOICEmoved-lazytools.tts_tool_local
DEFAULT_XAI_AUTO_SPEECH_TAGSmoved-lazytools.tts_tool_providers
DEFAULT_XAI_BASE_URLmoved-lazytools.tts_tool_providers
DEFAULT_XAI_BIT_RATEmoved-lazytools.tts_tool_providers
DEFAULT_XAI_LANGUAGEmoved-lazytools.tts_tool_providers
DEFAULT_XAI_OPTIMIZE_STREAMING_LATENCY_DEFAULTmoved-lazytools.tts_tool_providers
DEFAULT_XAI_SAMPLE_RATEmoved-lazytools.tts_tool_providers
DEFAULT_XAI_SPEED_DEFAULTmoved-lazytools.tts_tool_providers
DEFAULT_XAI_SPEED_MAXmoved-lazytools.tts_tool_providers
DEFAULT_XAI_SPEED_MINmoved-lazytools.tts_tool_providers
DEFAULT_XAI_TEXT_NORMALIZATION_DEFAULTmoved-lazytools.tts_tool_providers
DEFAULT_XAI_VOICE_IDmoved-lazytools.tts_tool_providers
ELEVENLABS_MODEL_MAX_TEXT_LENGTHmoved-lazytools.tts_tool_delivery
FALLBACK_MAX_TEXT_LENGTHmoved-lazytools.tts_tool_delivery
FALLBACK_MAX_TEXT_LENGTHrestored-helper(deleted; restored as a dependency of MAX_TEXT_LENGTH)
Futureimportconcurrent.futures
GEMINI_AUDIO_TAG_REWRITE_TASKmoved-lazytools.tts_tool_providers
GEMINI_TTS_CHANNELSrestored-def(deleted; BASE body restored)
GEMINI_TTS_SAMPLE_RATErestored-def(deleted; BASE body restored)
GEMINI_TTS_SAMPLE_WIDTHrestored-def(deleted; BASE body restored)
Iteratorimporttyping
MANAGED_OPENAI_TTS_MODELSmoved-lazytools.tts_tool_openai
MAX_TEXT_LENGTHrestored-def(deleted; BASE body restored)
PROVIDER_MAX_TEXT_LENGTHmoved-lazytools.tts_tool_delivery
TTS_RESPONSE_BODY_CHUNK_BYTESmoved-lazytools.tts_tool_providers
TTS_RESPONSE_BODY_LIMIT_BYTESmoved-lazytools.tts_tool_providers
ThreadPoolExecutorimportconcurrent.futures
Tupleimporttyping
acquire_tts_leasemoved-lazytools.tts_tool_lifecycle
base64importbase64
dataclassimportdataclasses
fieldimportdataclasses
hermes_xai_user_agentmoved-lazytools.xai_http
managed_nous_tools_enabledmoved-lazytools.tool_backend_helpers
nous_tool_gateway_unavailable_messagemoved-lazytools.tool_backend_helpers
platformimportplatform
queueimportqueue
reimportre
read_selectionmoved-lazytools.tool_backend_helpers
release_tts_leasemoved-lazytools.tts_tool_lifecycle
release_tts_providermoved-lazytools.tts_tool_lifecycle
resolve_managed_tool_gatewaymoved-lazytools.managed_tool_gateway
resolve_openai_audio_api_keymoved-lazytools.tool_backend_helpers
selection_errormoved-lazytools.tool_backend_helpers
shleximportshlex
shutilimportshutil
stream_tts_to_speakermoved-lazytools.tts_tool_speaker
subprocessimportsubprocess
threadingimportthreading
timeimporttime
tts_lease_holdersmoved-lazytools.tts_tool_lifecycle
urljoinimporturllib.parse
urlparseimporturllib.parse
uuidimportuuid
warm_tts_providermoved-lazytools.tts_tool_lifecycle
windows_hide_flagsmoved-lazyhermes_cli._subprocess_compat

tools.url_safety

namekindnew location
has_sensitive_query_paramsrestored-def(deleted; BASE body restored)
ssrf_safe_async_http_transportrestored-def(deleted; BASE body restored)
ssrf_safe_http_transportrestored-def(deleted; BASE body restored)

tools.vision_tools

namekindnew location
contextlibimportcontextlib
sysimportsys
threadingimportthreading

tools.voice_mode

namekindnew location
DEFAULT_TTS_ECHO_SIMILARITY_THRESHOLDmoved-lazytools.voice_mode_transcript
DEFAULT_VOICE_STOP_PHRASESmoved-lazytools.voice_mode_transcript
MIN_FRAGMENT_LENGTH_FOR_ECHOmoved-lazytools.voice_mode_transcript
WHISPER_HALLUCINATIONSrestored-def(deleted; BASE body restored)
difflibimportdifflib
is_tts_echomoved-lazytools.voice_mode_transcript
reimportre
voice_stop_hintmoved-lazytools.voice_mode_transcript

tools.web_result_cache

namekindnew location
Anyimporttyping
Listimporttyping

tools.web_tools

namekindnew location
DEFAULT_EXTRACT_CHAR_LIMITmoved-lazytools.web_tools_truncate
Dictimporttyping
Firecrawlmoved-lazyplugins.web.firecrawl.provider
MAX_STORED_TEXT_CHARSmoved-lazytools.web_tools_truncate
TYPE_CHECKINGimporttyping
asyncioimportasyncio
build_vendor_gateway_urlmoved-lazytools.managed_tool_gateway
httpximporthttpx
managed_nous_tools_enabledmoved-lazytools.tool_backend_helpers
normalize_url_for_requestmoved-lazytools.url_safety
nous_tool_gateway_unavailable_messagemoved-lazytools.tool_backend_helpers
prefers_gatewaymoved-lazytools.tool_backend_helpers
reimportre
resolve_managed_tool_gatewaymoved-lazytools.managed_tool_gateway
sensitive_query_param_namemoved-lazytools.url_safety
sysimportsys

tools.website_policy

namekindnew location
invalidate_cacherestored-def(deleted; BASE body restored)

tools.write_approval

namekindnew location
is_backgroundrestored-def(deleted; BASE body restored)

tools.yuanbao_tools

namekindnew location
Listimporttyping
Optionalimporttyping

toolsets

namekindnew location
resolve_multiple_toolsetsrestored-def(deleted; BASE body restored)

tui_gateway.compute_host

namekindnew location
HostSessionrestored-def(deleted; BASE body restored)
SpikeAgentrestored-helper(deleted; restored as a dependency of HostSession)
SpikeAgentrestored-def(deleted; BASE body restored)
dataclassrestored-importdataclasses
dataclassimportdataclasses
fieldrestored-importdataclasses
fieldimportdataclasses
request_hard_interruptmoved-lazyagent.interrupt_compat

tui_gateway.hosted_room_driver

namekindnew location
contextlibimportcontextlib
null_turn_lockrestored-def(deleted; BASE body restored)

tui_gateway.hosted_room_service

namekindnew location
hashlibimporthashlib

tui_gateway.mcp_rpc_helpers

namekindnew location
Optionalimporttyping
Tupleimporttyping
resolve_profilerestored-def(deleted; BASE body restored)

tui_gateway.methods_browser_control

namekindnew location
BROWSER_CONTROL_PROTOCOL_VERSIONmoved-lazygateway.browser_control_broker
browser_control_protocol_supportedmoved-lazygateway.browser_control_broker
filter_browser_control_capabilitiesmoved-lazygateway.browser_control_broker

tui_gateway.methods_prompt

namekindnew location
typesimporttypes