@takibeiy/moltbot_cn 2026.1.27 → 2026.2.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +315 -200
- package/README.md +208 -192
- package/assets/chrome-extension/README.md +5 -5
- package/assets/chrome-extension/background.js +5 -5
- package/assets/chrome-extension/manifest.json +3 -3
- package/assets/chrome-extension/options.html +5 -5
- package/assets/chrome-extension/options.js +1 -1
- package/dist/acp/client.d.ts +16 -0
- package/dist/acp/client.js +12 -9
- package/dist/acp/commands.d.ts +2 -0
- package/dist/acp/event-mapper.d.ts +10 -0
- package/dist/acp/event-mapper.js +22 -11
- package/dist/acp/index.d.ts +4 -0
- package/dist/acp/meta.d.ts +3 -0
- package/dist/acp/meta.js +12 -6
- package/dist/acp/server.d.ts +3 -0
- package/dist/acp/server.js +4 -4
- package/dist/acp/session-mapper.d.ts +22 -0
- package/dist/acp/session-mapper.js +8 -4
- package/dist/acp/session.d.ts +16 -0
- package/dist/acp/session.js +10 -5
- package/dist/acp/translator.d.ts +36 -0
- package/dist/acp/translator.js +35 -19
- package/dist/acp/types.d.ts +25 -0
- package/dist/acp/types.js +2 -2
- package/dist/agents/agent-paths.d.ts +2 -0
- package/dist/agents/agent-paths.js +11 -8
- package/dist/agents/agent-scope.d.ts +35 -0
- package/dist/agents/agent-scope.js +25 -13
- package/dist/agents/anthropic-payload-log.d.ts +16 -0
- package/dist/agents/anthropic-payload-log.js +20 -12
- package/dist/agents/apply-patch-update.d.ts +8 -0
- package/dist/agents/apply-patch-update.js +13 -7
- package/dist/agents/apply-patch.d.ts +24 -0
- package/dist/agents/apply-patch.js +25 -13
- package/dist/agents/auth-health.d.ts +37 -0
- package/dist/agents/auth-health.js +18 -10
- package/dist/agents/auth-profiles/constants.d.ts +20 -0
- package/dist/agents/auth-profiles/constants.js +1 -0
- package/dist/agents/auth-profiles/display.d.ts +7 -0
- package/dist/agents/auth-profiles/display.js +3 -3
- package/dist/agents/auth-profiles/doctor.d.ts +8 -0
- package/dist/agents/auth-profiles/doctor.js +5 -3
- package/dist/agents/auth-profiles/external-cli-sync.d.ts +7 -0
- package/dist/agents/auth-profiles/external-cli-sync.js +41 -9
- package/dist/agents/auth-profiles/oauth.d.ts +12 -0
- package/dist/agents/auth-profiles/oauth.js +26 -14
- package/dist/agents/auth-profiles/order.d.ts +8 -0
- package/dist/agents/auth-profiles/order.js +29 -16
- package/dist/agents/auth-profiles/paths.d.ts +4 -0
- package/dist/agents/auth-profiles/paths.js +5 -4
- package/dist/agents/auth-profiles/profiles.d.ts +18 -0
- package/dist/agents/auth-profiles/profiles.js +8 -4
- package/dist/agents/auth-profiles/repair.d.ts +14 -0
- package/dist/agents/auth-profiles/repair.js +26 -13
- package/dist/agents/auth-profiles/session-override.d.ts +18 -0
- package/dist/agents/auth-profiles/session-override.js +13 -7
- package/dist/agents/auth-profiles/store.d.ts +10 -0
- package/dist/agents/auth-profiles/store.js +30 -15
- package/dist/agents/auth-profiles/types.d.ts +58 -0
- package/dist/agents/auth-profiles/usage.d.ts +47 -0
- package/dist/agents/auth-profiles/usage.js +22 -11
- package/dist/agents/auth-profiles.d.ts +11 -0
- package/dist/agents/bash-process-registry.d.ts +68 -0
- package/dist/agents/bash-process-registry.js +18 -9
- package/dist/agents/bash-tools.d.ts +4 -0
- package/dist/agents/bash-tools.exec.d.ts +54 -0
- package/dist/agents/bash-tools.exec.js +107 -63
- package/dist/agents/bash-tools.process.d.ts +7 -0
- package/dist/agents/bash-tools.process.js +17 -9
- package/dist/agents/bash-tools.shared.d.ts +46 -0
- package/dist/agents/bash-tools.shared.js +30 -16
- package/dist/agents/bedrock-discovery.d.ts +9 -0
- package/dist/agents/bedrock-discovery.js +26 -14
- package/dist/agents/bootstrap-files.d.ts +25 -0
- package/dist/agents/bootstrap-files.js +3 -2
- package/dist/agents/bootstrap-hooks.d.ts +10 -0
- package/dist/agents/cache-trace.d.ts +51 -0
- package/dist/agents/cache-trace.js +33 -20
- package/dist/agents/channel-tools.d.ts +27 -0
- package/dist/agents/channel-tools.js +18 -9
- package/dist/agents/chutes-oauth.d.ts +46 -0
- package/dist/agents/chutes-oauth.js +14 -7
- package/dist/agents/claude-cli-runner.d.ts +1 -0
- package/dist/agents/cli-backends.d.ts +8 -0
- package/dist/agents/cli-backends.js +12 -6
- package/dist/agents/cli-credentials.d.ts +82 -0
- package/dist/agents/cli-credentials.js +92 -21
- package/dist/agents/cli-runner/helpers.d.ts +76 -0
- package/dist/agents/cli-runner/helpers.js +102 -54
- package/dist/agents/cli-runner.d.ts +39 -0
- package/dist/agents/cli-runner.js +14 -9
- package/dist/agents/cli-session.d.ts +3 -0
- package/dist/agents/cli-session.js +8 -4
- package/dist/agents/compaction.d.ts +61 -0
- package/dist/agents/compaction.js +12 -6
- package/dist/agents/context-window-guard.d.ts +24 -0
- package/dist/agents/context-window-guard.js +8 -4
- package/dist/agents/context.d.ts +1 -0
- package/dist/agents/context.js +9 -7
- package/dist/agents/date-time.d.ts +13 -0
- package/dist/agents/date-time.js +28 -14
- package/dist/agents/defaults.d.ts +3 -0
- package/dist/agents/docs-path.d.ts +6 -0
- package/dist/agents/docs-path.js +7 -5
- package/dist/agents/failover-error.d.ts +33 -0
- package/dist/agents/failover-error.js +48 -24
- package/dist/agents/identity-avatar.d.ts +15 -0
- package/dist/agents/identity-avatar.js +4 -2
- package/dist/agents/identity-file.d.ts +12 -0
- package/dist/agents/identity-file.js +20 -10
- package/dist/agents/identity.d.ts +20 -0
- package/dist/agents/identity.js +11 -6
- package/dist/agents/lanes.d.ts +3 -0
- package/dist/agents/live-auth-keys.d.ts +3 -0
- package/dist/agents/live-auth-keys.js +38 -20
- package/dist/agents/live-model-filter.d.ts +5 -0
- package/dist/agents/live-model-filter.js +2 -1
- package/dist/agents/memory-search.d.ts +66 -0
- package/dist/agents/memory-search.js +15 -5
- package/dist/agents/minimax-vlm.d.ts +7 -0
- package/dist/agents/minimax-vlm.js +7 -4
- package/dist/agents/model-auth.d.ts +36 -0
- package/dist/agents/model-auth.js +38 -18
- package/dist/agents/model-catalog.d.ts +25 -0
- package/dist/agents/model-catalog.js +17 -14
- package/dist/agents/model-compat.d.ts +2 -0
- package/dist/agents/model-compat.js +4 -2
- package/dist/agents/model-fallback.d.ts +49 -0
- package/dist/agents/model-fallback.js +41 -21
- package/dist/agents/model-scan.d.ts +63 -0
- package/dist/agents/model-scan.js +47 -24
- package/dist/agents/model-selection.d.ts +88 -0
- package/dist/agents/model-selection.js +59 -29
- package/dist/agents/models-config.d.ts +5 -0
- package/dist/agents/models-config.js +14 -9
- package/dist/agents/models-config.providers.d.ts +23 -0
- package/dist/agents/models-config.providers.js +88 -53
- package/dist/agents/openclaw-tools.d.ts +40 -0
- package/dist/agents/openclaw-tools.js +121 -0
- package/dist/agents/opencode-zen-models.d.ts +43 -0
- package/dist/agents/pi-embedded-block-chunker.d.ts +17 -0
- package/dist/agents/pi-embedded-block-chunker.js +32 -16
- package/dist/agents/pi-embedded-helpers/bootstrap.d.ts +28 -0
- package/dist/agents/pi-embedded-helpers/bootstrap.js +18 -9
- package/dist/agents/pi-embedded-helpers/errors.d.ts +45 -0
- package/dist/agents/pi-embedded-helpers/errors.js +107 -54
- package/dist/agents/pi-embedded-helpers/google.d.ts +8 -0
- package/dist/agents/pi-embedded-helpers/google.js +2 -1
- package/dist/agents/pi-embedded-helpers/images.d.ts +20 -0
- package/dist/agents/pi-embedded-helpers/images.js +12 -6
- package/dist/agents/pi-embedded-helpers/messaging-dedupe.d.ts +10 -0
- package/dist/agents/pi-embedded-helpers/messaging-dedupe.js +10 -5
- package/dist/agents/pi-embedded-helpers/openai.d.ts +9 -0
- package/dist/agents/pi-embedded-helpers/openai.js +13 -7
- package/dist/agents/pi-embedded-helpers/thinking.d.ts +5 -0
- package/dist/agents/pi-embedded-helpers/thinking.js +10 -5
- package/dist/agents/pi-embedded-helpers/turns.d.ts +20 -0
- package/dist/agents/pi-embedded-helpers/types.d.ts +5 -0
- package/dist/agents/pi-embedded-helpers.d.ts +11 -0
- package/dist/agents/pi-embedded-messaging.d.ts +8 -0
- package/dist/agents/pi-embedded-messaging.js +8 -4
- package/dist/agents/pi-embedded-runner/abort.d.ts +1 -0
- package/dist/agents/pi-embedded-runner/abort.js +4 -2
- package/dist/agents/pi-embedded-runner/cache-ttl.d.ts +9 -0
- package/dist/agents/pi-embedded-runner/cache-ttl.js +11 -6
- package/dist/agents/pi-embedded-runner/compact.d.ts +48 -0
- package/dist/agents/pi-embedded-runner/compact.js +32 -25
- package/dist/agents/pi-embedded-runner/extensions.d.ts +12 -0
- package/dist/agents/pi-embedded-runner/extensions.js +6 -3
- package/dist/agents/pi-embedded-runner/extra-params.d.ts +21 -0
- package/dist/agents/pi-embedded-runner/extra-params.js +6 -3
- package/dist/agents/pi-embedded-runner/google.d.ts +39 -0
- package/dist/agents/pi-embedded-runner/google.js +18 -10
- package/dist/agents/pi-embedded-runner/history.d.ts +12 -0
- package/dist/agents/pi-embedded-runner/history.js +14 -7
- package/dist/agents/pi-embedded-runner/lanes.d.ts +3 -0
- package/dist/agents/pi-embedded-runner/logger.d.ts +1 -0
- package/dist/agents/pi-embedded-runner/model.d.ts +22 -0
- package/dist/agents/pi-embedded-runner/model.js +10 -7
- package/dist/agents/pi-embedded-runner/run/attempt.d.ts +5 -0
- package/dist/agents/pi-embedded-runner/run/attempt.js +52 -38
- package/dist/agents/pi-embedded-runner/run/images.d.ts +83 -0
- package/dist/agents/pi-embedded-runner/run/images.js +29 -16
- package/dist/agents/pi-embedded-runner/run/params.d.ts +109 -0
- package/dist/agents/pi-embedded-runner/run/payloads.d.ts +34 -0
- package/dist/agents/pi-embedded-runner/run/payloads.js +26 -13
- package/dist/agents/pi-embedded-runner/run/types.d.ts +126 -0
- package/dist/agents/pi-embedded-runner/run.d.ts +3 -0
- package/dist/agents/pi-embedded-runner/run.js +18 -11
- package/dist/agents/pi-embedded-runner/runs.d.ts +14 -0
- package/dist/agents/pi-embedded-runner/runs.js +10 -5
- package/dist/agents/pi-embedded-runner/sandbox-info.d.ts +4 -0
- package/dist/agents/pi-embedded-runner/sandbox-info.js +2 -1
- package/dist/agents/pi-embedded-runner/session-manager-cache.d.ts +2 -0
- package/dist/agents/pi-embedded-runner/session-manager-cache.js +11 -6
- package/dist/agents/pi-embedded-runner/session-manager-init.d.ts +17 -0
- package/dist/agents/pi-embedded-runner/system-prompt.d.ts +47 -0
- package/dist/agents/pi-embedded-runner/tool-split.d.ts +11 -0
- package/dist/agents/pi-embedded-runner/types.d.ts +70 -0
- package/dist/agents/pi-embedded-runner/utils.d.ts +8 -0
- package/dist/agents/pi-embedded-runner/utils.js +9 -5
- package/dist/agents/pi-embedded-runner.d.ts +12 -0
- package/dist/agents/pi-embedded-subscribe.d.ts +20 -0
- package/dist/agents/pi-embedded-subscribe.handlers.d.ts +2 -0
- package/dist/agents/pi-embedded-subscribe.handlers.lifecycle.d.ts +8 -0
- package/dist/agents/pi-embedded-subscribe.handlers.messages.d.ts +12 -0
- package/dist/agents/pi-embedded-subscribe.handlers.messages.js +52 -17
- package/dist/agents/pi-embedded-subscribe.handlers.tools.d.ts +18 -0
- package/dist/agents/pi-embedded-subscribe.handlers.tools.js +10 -5
- package/dist/agents/pi-embedded-subscribe.handlers.types.d.ts +107 -0
- package/dist/agents/pi-embedded-subscribe.js +64 -27
- package/dist/agents/pi-embedded-subscribe.raw-stream.d.ts +1 -0
- package/dist/agents/pi-embedded-subscribe.raw-stream.js +4 -3
- package/dist/agents/pi-embedded-subscribe.tools.d.ts +6 -0
- package/dist/agents/pi-embedded-subscribe.tools.js +59 -30
- package/dist/agents/pi-embedded-subscribe.types.d.ts +44 -0
- package/dist/agents/pi-embedded-utils.d.ts +38 -0
- package/dist/agents/pi-embedded-utils.js +66 -33
- package/dist/agents/pi-embedded.d.ts +2 -0
- package/dist/agents/pi-extensions/compaction-safeguard-runtime.d.ts +5 -0
- package/dist/agents/pi-extensions/compaction-safeguard.d.ts +22 -0
- package/dist/agents/pi-extensions/compaction-safeguard.js +26 -14
- package/dist/agents/pi-extensions/context-pruning/extension.d.ts +2 -0
- package/dist/agents/pi-extensions/context-pruning/extension.js +4 -2
- package/dist/agents/pi-extensions/context-pruning/pruner.d.ts +10 -0
- package/dist/agents/pi-extensions/context-pruning/pruner.js +64 -32
- package/dist/agents/pi-extensions/context-pruning/runtime.d.ts +9 -0
- package/dist/agents/pi-extensions/context-pruning/settings.d.ts +44 -0
- package/dist/agents/pi-extensions/context-pruning/settings.js +4 -2
- package/dist/agents/pi-extensions/context-pruning/tools.d.ts +2 -0
- package/dist/agents/pi-extensions/context-pruning/tools.js +16 -8
- package/dist/agents/pi-extensions/context-pruning.d.ts +10 -0
- package/dist/agents/pi-model-discovery.d.ts +4 -0
- package/dist/agents/pi-model-discovery.js +10 -0
- package/dist/agents/pi-settings.d.ts +19 -0
- package/dist/agents/pi-tool-definition-adapter.d.ts +7 -0
- package/dist/agents/pi-tool-definition-adapter.js +4 -2
- package/dist/agents/pi-tools.abort.d.ts +2 -0
- package/dist/agents/pi-tools.abort.js +16 -8
- package/dist/agents/pi-tools.d.ts +63 -0
- package/dist/agents/pi-tools.js +21 -14
- package/dist/agents/pi-tools.policy.d.ts +37 -0
- package/dist/agents/pi-tools.policy.js +56 -29
- package/dist/agents/pi-tools.read.d.ts +35 -0
- package/dist/agents/pi-tools.read.js +25 -14
- package/dist/agents/pi-tools.schema.d.ts +3 -0
- package/dist/agents/pi-tools.schema.js +26 -13
- package/dist/agents/pi-tools.types.d.ts +2 -0
- package/dist/agents/pty-dsr.d.ts +5 -0
- package/dist/agents/pty-keys.d.ts +13 -0
- package/dist/agents/pty-keys.js +30 -15
- package/dist/agents/sandbox/browser-bridges.d.ts +5 -0
- package/dist/agents/sandbox/browser.d.ts +8 -0
- package/dist/agents/sandbox/browser.js +28 -17
- package/dist/agents/sandbox/config-hash.d.ts +9 -0
- package/dist/agents/sandbox/config-hash.js +14 -8
- package/dist/agents/sandbox/config.d.ts +22 -0
- package/dist/agents/sandbox/config.js +2 -1
- package/dist/agents/sandbox/constants.d.ts +19 -0
- package/dist/agents/sandbox/constants.js +7 -7
- package/dist/agents/sandbox/context.d.ts +12 -0
- package/dist/agents/sandbox/context.js +9 -5
- package/dist/agents/sandbox/docker.d.ts +28 -0
- package/dist/agents/sandbox/docker.js +59 -35
- package/dist/agents/sandbox/manage.d.ts +13 -0
- package/dist/agents/sandbox/prune.d.ts +3 -0
- package/dist/agents/sandbox/prune.js +6 -3
- package/dist/agents/sandbox/registry.d.ts +30 -0
- package/dist/agents/sandbox/registry.js +8 -4
- package/dist/agents/sandbox/runtime-status.d.ts +18 -0
- package/dist/agents/sandbox/runtime-status.js +16 -9
- package/dist/agents/sandbox/shared.d.ts +4 -0
- package/dist/agents/sandbox/shared.js +8 -4
- package/dist/agents/sandbox/tool-policy.d.ts +4 -0
- package/dist/agents/sandbox/tool-policy.js +18 -9
- package/dist/agents/sandbox/types.d.ts +73 -0
- package/dist/agents/sandbox/types.docker.d.ts +25 -0
- package/dist/agents/sandbox/workspace.d.ts +1 -0
- package/dist/agents/sandbox-paths.d.ts +16 -0
- package/dist/agents/sandbox-paths.js +4 -2
- package/dist/agents/sandbox.d.ts +8 -0
- package/dist/agents/schema/clean-for-gemini.d.ts +2 -0
- package/dist/agents/schema/clean-for-gemini.js +58 -29
- package/dist/agents/schema/typebox.d.ts +14 -0
- package/dist/agents/session-slug.d.ts +1 -0
- package/dist/agents/session-slug.js +10 -5
- package/dist/agents/session-tool-result-guard-wrapper.d.ts +14 -0
- package/dist/agents/session-tool-result-guard.d.ts +21 -0
- package/dist/agents/session-tool-result-guard.js +15 -8
- package/dist/agents/session-transcript-repair.d.ts +19 -0
- package/dist/agents/session-transcript-repair.js +15 -8
- package/dist/agents/session-write-lock.d.ts +21 -0
- package/dist/agents/session-write-lock.js +22 -12
- package/dist/agents/shell-utils.d.ts +6 -0
- package/dist/agents/shell-utils.js +14 -7
- package/dist/agents/skills/bundled-dir.d.ts +1 -0
- package/dist/agents/skills/bundled-dir.js +7 -4
- package/dist/agents/skills/config.d.ts +14 -0
- package/dist/agents/skills/config.js +41 -21
- package/dist/agents/skills/env-overrides.d.ts +10 -0
- package/dist/agents/skills/env-overrides.js +18 -9
- package/dist/agents/skills/frontmatter.d.ts +6 -0
- package/dist/agents/skills/frontmatter.js +45 -20
- package/dist/agents/skills/plugin-skills.d.ts +5 -0
- package/dist/agents/skills/plugin-skills.js +14 -7
- package/dist/agents/skills/refresh.d.ts +19 -0
- package/dist/agents/skills/refresh.js +11 -6
- package/dist/agents/skills/serialize.d.ts +1 -0
- package/dist/agents/skills/serialize.js +2 -1
- package/dist/agents/skills/types.d.ts +80 -0
- package/dist/agents/skills/workspace.d.ts +49 -0
- package/dist/agents/skills/workspace.js +31 -19
- package/dist/agents/skills-install.d.ts +16 -0
- package/dist/agents/skills-install.js +40 -20
- package/dist/agents/skills-status.d.ts +55 -0
- package/dist/agents/skills-status.js +26 -13
- package/dist/agents/skills.d.ts +7 -0
- package/dist/agents/subagent-announce-queue.d.ts +22 -0
- package/dist/agents/subagent-announce-queue.js +16 -8
- package/dist/agents/subagent-announce.d.ts +28 -0
- package/dist/agents/subagent-announce.js +56 -29
- package/dist/agents/subagent-registry.d.ts +35 -0
- package/dist/agents/subagent-registry.js +58 -30
- package/dist/agents/subagent-registry.store.d.ts +5 -0
- package/dist/agents/subagent-registry.store.js +12 -6
- package/dist/agents/synthetic-models.d.ts +153 -0
- package/dist/agents/synthetic-models.js +8 -0
- package/dist/agents/system-prompt-params.d.ts +29 -0
- package/dist/agents/system-prompt-params.js +10 -5
- package/dist/agents/system-prompt-report.d.ts +20 -0
- package/dist/agents/system-prompt-report.js +12 -6
- package/dist/agents/system-prompt.d.ts +73 -0
- package/dist/agents/system-prompt.js +55 -34
- package/dist/agents/test-helpers/fast-coding-tools.d.ts +1 -0
- package/dist/agents/test-helpers/fast-core-tools.d.ts +1 -0
- package/dist/agents/timeout.d.ts +8 -0
- package/dist/agents/timeout.js +4 -2
- package/dist/agents/tool-call-id.d.ts +17 -0
- package/dist/agents/tool-call-id.js +34 -17
- package/dist/agents/tool-display.d.ts +15 -0
- package/dist/agents/tool-display.js +48 -24
- package/dist/agents/tool-images.d.ts +19 -0
- package/dist/agents/tool-images.js +18 -10
- package/dist/agents/tool-policy.d.ts +36 -0
- package/dist/agents/tool-policy.js +26 -14
- package/dist/agents/tool-summaries.d.ts +2 -0
- package/dist/agents/tool-summaries.js +2 -1
- package/dist/agents/tools/agent-step.d.ts +12 -0
- package/dist/agents/tools/agent-step.js +8 -7
- package/dist/agents/tools/agents-list-tool.d.ts +6 -0
- package/dist/agents/tools/agents-list-tool.js +9 -4
- package/dist/agents/tools/browser-tool.d.ts +5 -0
- package/dist/agents/tools/browser-tool.js +26 -19
- package/dist/agents/tools/browser-tool.schema.d.ts +50 -0
- package/dist/agents/tools/canvas-tool.d.ts +2 -0
- package/dist/agents/tools/canvas-tool.js +3 -2
- package/dist/agents/tools/common.d.ts +52 -0
- package/dist/agents/tools/common.js +20 -10
- package/dist/agents/tools/cron-tool.d.ts +6 -0
- package/dist/agents/tools/cron-tool.js +24 -14
- package/dist/agents/tools/discord-actions-guild.d.ts +4 -0
- package/dist/agents/tools/discord-actions-guild.js +4 -2
- package/dist/agents/tools/discord-actions-messaging.d.ts +4 -0
- package/dist/agents/tools/discord-actions-messaging.js +4 -3
- package/dist/agents/tools/discord-actions-moderation.d.ts +4 -0
- package/dist/agents/tools/discord-actions.d.ts +3 -0
- package/dist/agents/tools/gateway-tool.d.ts +6 -0
- package/dist/agents/tools/gateway-tool.js +3 -2
- package/dist/agents/tools/gateway.d.ts +14 -0
- package/dist/agents/tools/image-tool.d.ts +26 -0
- package/dist/agents/tools/image-tool.helpers.d.ts +21 -0
- package/dist/agents/tools/image-tool.helpers.js +4 -2
- package/dist/agents/tools/image-tool.js +27 -17
- package/dist/agents/tools/memory-tool.d.ts +10 -0
- package/dist/agents/tools/memory-tool.js +9 -5
- package/dist/agents/tools/message-tool.d.ts +16 -0
- package/dist/agents/tools/message-tool.js +20 -13
- package/dist/agents/tools/nodes-tool.d.ts +6 -0
- package/dist/agents/tools/nodes-tool.js +14 -14
- package/dist/agents/tools/nodes-utils.d.ts +20 -0
- package/dist/agents/tools/nodes-utils.js +20 -11
- package/dist/agents/tools/session-status-tool.d.ts +6 -0
- package/dist/agents/tools/session-status-tool.js +22 -12
- package/dist/agents/tools/sessions-announce-target.d.ts +5 -0
- package/dist/agents/tools/sessions-announce-target.js +4 -3
- package/dist/agents/tools/sessions-helpers.d.ts +90 -0
- package/dist/agents/tools/sessions-helpers.js +71 -38
- package/dist/agents/tools/sessions-history-tool.d.ts +5 -0
- package/dist/agents/tools/sessions-history-tool.js +4 -4
- package/dist/agents/tools/sessions-list-tool.d.ts +5 -0
- package/dist/agents/tools/sessions-list-tool.js +17 -11
- package/dist/agents/tools/sessions-send-helpers.d.ts +34 -0
- package/dist/agents/tools/sessions-send-helpers.js +12 -6
- package/dist/agents/tools/sessions-send-tool.a2a.d.ts +12 -0
- package/dist/agents/tools/sessions-send-tool.a2a.js +4 -3
- package/dist/agents/tools/sessions-send-tool.d.ts +7 -0
- package/dist/agents/tools/sessions-send-tool.js +15 -15
- package/dist/agents/tools/sessions-spawn-tool.d.ts +15 -0
- package/dist/agents/tools/sessions-spawn-tool.js +16 -12
- package/dist/agents/tools/slack-actions.d.ts +15 -0
- package/dist/agents/tools/slack-actions.js +14 -7
- package/dist/agents/tools/telegram-actions.d.ts +9 -0
- package/dist/agents/tools/telegram-actions.js +3 -2
- package/dist/agents/tools/tts-tool.d.ts +7 -0
- package/dist/agents/tools/tts-tool.js +2 -1
- package/dist/agents/tools/web-fetch-utils.d.ts +18 -0
- package/dist/agents/tools/web-fetch-utils.js +6 -3
- package/dist/agents/tools/web-fetch.d.ts +25 -0
- package/dist/agents/tools/web-fetch.js +31 -16
- package/dist/agents/tools/web-search.d.ts +22 -0
- package/dist/agents/tools/web-search.js +55 -31
- package/dist/agents/tools/web-shared.d.ts +17 -0
- package/dist/agents/tools/web-shared.js +8 -4
- package/dist/agents/tools/web-tools.d.ts +2 -0
- package/dist/agents/tools/whatsapp-actions.d.ts +3 -0
- package/dist/agents/transcript-policy.d.ts +23 -0
- package/dist/agents/transcript-policy.js +11 -6
- package/dist/agents/usage.d.ts +35 -0
- package/dist/agents/usage.js +10 -5
- package/dist/agents/venice-models.d.ts +238 -0
- package/dist/agents/workspace-templates.d.ts +6 -0
- package/dist/agents/workspace-templates.js +53 -0
- package/dist/agents/workspace.d.ts +33 -0
- package/dist/agents/workspace.js +27 -17
- package/dist/auto-reply/chunk.d.ts +45 -0
- package/dist/auto-reply/chunk.js +62 -31
- package/dist/auto-reply/command-auth.d.ts +16 -0
- package/dist/auto-reply/command-auth.js +18 -9
- package/dist/auto-reply/command-detection.d.ts +13 -0
- package/dist/auto-reply/command-detection.js +20 -10
- package/dist/auto-reply/commands-args.d.ts +3 -0
- package/dist/auto-reply/commands-args.js +22 -11
- package/dist/auto-reply/commands-registry.d.ts +54 -0
- package/dist/auto-reply/commands-registry.data.d.ts +3 -0
- package/dist/auto-reply/commands-registry.data.js +8 -5
- package/dist/auto-reply/commands-registry.js +95 -48
- package/dist/auto-reply/commands-registry.types.d.ts +66 -0
- package/dist/auto-reply/dispatch.d.ts +27 -0
- package/dist/auto-reply/dispatch.js +1 -1
- package/dist/auto-reply/envelope.d.ts +59 -0
- package/dist/auto-reply/envelope.js +36 -19
- package/dist/auto-reply/group-activation.d.ts +6 -0
- package/dist/auto-reply/group-activation.js +10 -5
- package/dist/auto-reply/heartbeat.d.ts +26 -0
- package/dist/auto-reply/heartbeat.js +18 -9
- package/dist/auto-reply/inbound-debounce.d.ts +16 -0
- package/dist/auto-reply/inbound-debounce.js +10 -5
- package/dist/auto-reply/media-note.d.ts +2 -0
- package/dist/auto-reply/media-note.js +6 -3
- package/dist/auto-reply/model.d.ts +8 -0
- package/dist/auto-reply/model.js +2 -1
- package/dist/auto-reply/reply/abort.d.ts +20 -0
- package/dist/auto-reply/reply/abort.js +26 -14
- package/dist/auto-reply/reply/agent-runner-execution.d.ts +48 -0
- package/dist/auto-reply/reply/agent-runner-execution.js +24 -13
- package/dist/auto-reply/reply/agent-runner-helpers.d.ts +17 -0
- package/dist/auto-reply/reply/agent-runner-helpers.js +10 -5
- package/dist/auto-reply/reply/agent-runner-memory.d.ts +20 -0
- package/dist/auto-reply/reply/agent-runner-memory.js +8 -4
- package/dist/auto-reply/reply/agent-runner-payloads.d.ts +25 -0
- package/dist/auto-reply/reply/agent-runner-payloads.js +2 -1
- package/dist/auto-reply/reply/agent-runner-utils.d.ts +30 -0
- package/dist/auto-reply/reply/agent-runner-utils.js +10 -5
- package/dist/auto-reply/reply/agent-runner.d.ts +37 -0
- package/dist/auto-reply/reply/agent-runner.js +14 -8
- package/dist/auto-reply/reply/audio-tags.d.ts +1 -0
- package/dist/auto-reply/reply/bash-command.d.ts +19 -0
- package/dist/auto-reply/reply/bash-command.js +32 -17
- package/dist/auto-reply/reply/block-reply-coalescer.d.ts +15 -0
- package/dist/auto-reply/reply/block-reply-coalescer.js +10 -5
- package/dist/auto-reply/reply/block-reply-pipeline.d.ts +31 -0
- package/dist/auto-reply/reply/block-reply-pipeline.js +22 -11
- package/dist/auto-reply/reply/block-streaming.d.ts +17 -0
- package/dist/auto-reply/reply/block-streaming.js +6 -3
- package/dist/auto-reply/reply/body.d.ts +11 -0
- package/dist/auto-reply/reply/body.js +2 -1
- package/dist/auto-reply/reply/commands-allowlist.d.ts +2 -0
- package/dist/auto-reply/reply/commands-allowlist.js +46 -27
- package/dist/auto-reply/reply/commands-approve.d.ts +2 -0
- package/dist/auto-reply/reply/commands-approve.js +7 -4
- package/dist/auto-reply/reply/commands-bash.d.ts +2 -0
- package/dist/auto-reply/reply/commands-bash.js +2 -1
- package/dist/auto-reply/reply/commands-compact.d.ts +2 -0
- package/dist/auto-reply/reply/commands-compact.js +8 -4
- package/dist/auto-reply/reply/commands-config.d.ts +3 -0
- package/dist/auto-reply/reply/commands-config.js +11 -7
- package/dist/auto-reply/reply/commands-context-report.d.ts +3 -0
- package/dist/auto-reply/reply/commands-context-report.js +14 -11
- package/dist/auto-reply/reply/commands-context.d.ts +12 -0
- package/dist/auto-reply/reply/commands-core.d.ts +2 -0
- package/dist/auto-reply/reply/commands-core.js +36 -32
- package/dist/auto-reply/reply/commands-info.d.ts +10 -0
- package/dist/auto-reply/reply/commands-info.js +23 -12
- package/dist/auto-reply/reply/commands-models.d.ts +8 -0
- package/dist/auto-reply/reply/commands-models.js +19 -11
- package/dist/auto-reply/reply/commands-plugin.d.ts +13 -0
- package/dist/auto-reply/reply/commands-plugin.js +4 -2
- package/dist/auto-reply/reply/commands-session.d.ts +7 -0
- package/dist/auto-reply/reply/commands-session.js +40 -23
- package/dist/auto-reply/reply/commands-status.d.ts +24 -0
- package/dist/auto-reply/reply/commands-status.js +8 -5
- package/dist/auto-reply/reply/commands-subagents.d.ts +13 -0
- package/dist/auto-reply/reply/commands-subagents.js +38 -24
- package/dist/auto-reply/reply/commands-tts.d.ts +2 -0
- package/dist/auto-reply/reply/commands-tts.js +10 -5
- package/dist/auto-reply/reply/commands-types.d.ts +59 -0
- package/dist/auto-reply/reply/commands.d.ts +4 -0
- package/dist/auto-reply/reply/config-commands.d.ts +15 -0
- package/dist/auto-reply/reply/config-commands.js +8 -4
- package/dist/auto-reply/reply/config-value.d.ts +4 -0
- package/dist/auto-reply/reply/config-value.js +10 -5
- package/dist/auto-reply/reply/debug-commands.d.ts +16 -0
- package/dist/auto-reply/reply/debug-commands.js +8 -4
- package/dist/auto-reply/reply/directive-handling.auth.d.ts +19 -0
- package/dist/auto-reply/reply/directive-handling.auth.js +24 -12
- package/dist/auto-reply/reply/directive-handling.d.ts +6 -0
- package/dist/auto-reply/reply/directive-handling.fast-lane.d.ts +47 -0
- package/dist/auto-reply/reply/directive-handling.impl.d.ts +35 -0
- package/dist/auto-reply/reply/directive-handling.impl.js +28 -14
- package/dist/auto-reply/reply/directive-handling.model-picker.d.ts +13 -0
- package/dist/auto-reply/reply/directive-handling.model-picker.js +12 -6
- package/dist/auto-reply/reply/directive-handling.model.d.ts +41 -0
- package/dist/auto-reply/reply/directive-handling.model.js +25 -13
- package/dist/auto-reply/reply/directive-handling.parse.d.ts +62 -0
- package/dist/auto-reply/reply/directive-handling.parse.js +2 -1
- package/dist/auto-reply/reply/directive-handling.persist.d.ts +37 -0
- package/dist/auto-reply/reply/directive-handling.queue-validation.d.ts +10 -0
- package/dist/auto-reply/reply/directive-handling.queue-validation.js +2 -1
- package/dist/auto-reply/reply/directive-handling.shared.d.ts +16 -0
- package/dist/auto-reply/reply/directive-handling.shared.js +9 -5
- package/dist/auto-reply/reply/directives.d.ts +38 -0
- package/dist/auto-reply/reply/directives.js +20 -10
- package/dist/auto-reply/reply/dispatch-from-config.d.ts +16 -0
- package/dist/auto-reply/reply/dispatch-from-config.js +46 -13
- package/dist/auto-reply/reply/exec/directive.d.ts +20 -0
- package/dist/auto-reply/reply/exec/directive.js +30 -15
- package/dist/auto-reply/reply/exec.d.ts +1 -0
- package/dist/auto-reply/reply/followup-runner.d.ts +16 -0
- package/dist/auto-reply/reply/followup-runner.js +11 -6
- package/dist/auto-reply/reply/get-reply-directives-apply.d.ts +64 -0
- package/dist/auto-reply/reply/get-reply-directives-apply.js +2 -2
- package/dist/auto-reply/reply/get-reply-directives-utils.d.ts +2 -0
- package/dist/auto-reply/reply/get-reply-directives.d.ts +90 -0
- package/dist/auto-reply/reply/get-reply-directives.js +4 -2
- package/dist/auto-reply/reply/get-reply-inline-actions.d.ts +59 -0
- package/dist/auto-reply/reply/get-reply-inline-actions.js +15 -10
- package/dist/auto-reply/reply/get-reply-run.d.ts +68 -0
- package/dist/auto-reply/reply/get-reply-run.js +3 -3
- package/dist/auto-reply/reply/get-reply.d.ts +4 -0
- package/dist/auto-reply/reply/get-reply.js +4 -4
- package/dist/auto-reply/reply/groups.d.ts +16 -0
- package/dist/auto-reply/reply/groups.js +14 -8
- package/dist/auto-reply/reply/history.d.ts +72 -0
- package/dist/auto-reply/reply/history.js +22 -11
- package/dist/auto-reply/reply/inbound-context.d.ts +8 -0
- package/dist/auto-reply/reply/inbound-context.js +4 -2
- package/dist/auto-reply/reply/inbound-dedupe.d.ts +8 -0
- package/dist/auto-reply/reply/inbound-dedupe.js +6 -3
- package/dist/auto-reply/reply/inbound-sender-meta.d.ts +5 -0
- package/dist/auto-reply/reply/inbound-sender-meta.js +12 -6
- package/dist/auto-reply/reply/inbound-text.d.ts +1 -0
- package/dist/auto-reply/reply/line-directives.d.ts +22 -0
- package/dist/auto-reply/reply/line-directives.js +6 -3
- package/dist/auto-reply/reply/memory-flush.d.ts +23 -0
- package/dist/auto-reply/reply/memory-flush.js +12 -6
- package/dist/auto-reply/reply/mentions.d.ts +18 -0
- package/dist/auto-reply/reply/mentions.js +13 -7
- package/dist/auto-reply/reply/model-selection.d.ts +50 -0
- package/dist/auto-reply/reply/model-selection.js +77 -40
- package/dist/auto-reply/reply/normalize-reply.d.ts +13 -0
- package/dist/auto-reply/reply/normalize-reply.js +16 -7
- package/dist/auto-reply/reply/provider-dispatcher.d.ts +19 -0
- package/dist/auto-reply/reply/queue/cleanup.d.ts +6 -0
- package/dist/auto-reply/reply/queue/cleanup.js +2 -1
- package/dist/auto-reply/reply/queue/directive.d.ts +15 -0
- package/dist/auto-reply/reply/queue/directive.js +24 -12
- package/dist/auto-reply/reply/queue/drain.d.ts +2 -0
- package/dist/auto-reply/reply/queue/drain.js +12 -6
- package/dist/auto-reply/reply/queue/enqueue.d.ts +3 -0
- package/dist/auto-reply/reply/queue/enqueue.js +10 -5
- package/dist/auto-reply/reply/queue/normalize.d.ts +3 -0
- package/dist/auto-reply/reply/queue/normalize.js +22 -11
- package/dist/auto-reply/reply/queue/settings.d.ts +2 -0
- package/dist/auto-reply/reply/queue/settings.js +4 -2
- package/dist/auto-reply/reply/queue/state.d.ts +19 -0
- package/dist/auto-reply/reply/queue/state.js +4 -2
- package/dist/auto-reply/reply/queue/types.d.ts +84 -0
- package/dist/auto-reply/reply/queue.d.ts +8 -0
- package/dist/auto-reply/reply/reply-directives.d.ts +14 -0
- package/dist/auto-reply/reply/reply-dispatcher.d.ts +49 -0
- package/dist/auto-reply/reply/reply-dispatcher.js +18 -6
- package/dist/auto-reply/reply/reply-elevated.d.ts +23 -0
- package/dist/auto-reply/reply/reply-elevated.js +40 -21
- package/dist/auto-reply/reply/reply-inline.d.ts +8 -0
- package/dist/auto-reply/reply/reply-inline.js +8 -4
- package/dist/auto-reply/reply/reply-payloads.d.ts +22 -0
- package/dist/auto-reply/reply/reply-payloads.js +18 -9
- package/dist/auto-reply/reply/reply-reference.d.ts +20 -0
- package/dist/auto-reply/reply/reply-reference.js +6 -3
- package/dist/auto-reply/reply/reply-tags.d.ts +6 -0
- package/dist/auto-reply/reply/reply-threading.d.ts +9 -0
- package/dist/auto-reply/reply/reply-threading.js +8 -4
- package/dist/auto-reply/reply/response-prefix-template.d.ts +51 -0
- package/dist/auto-reply/reply/response-prefix-template.js +4 -2
- package/dist/auto-reply/reply/route-reply.d.ts +56 -0
- package/dist/auto-reply/reply/route-reply.js +4 -2
- package/dist/auto-reply/reply/session-reset-model.d.ts +24 -0
- package/dist/auto-reply/reply/session-reset-model.js +25 -13
- package/dist/auto-reply/reply/session-updates.d.ts +34 -0
- package/dist/auto-reply/reply/session-updates.js +33 -17
- package/dist/auto-reply/reply/session-usage.d.ts +13 -0
- package/dist/auto-reply/reply/session-usage.js +2 -1
- package/dist/auto-reply/reply/session.d.ts +26 -0
- package/dist/auto-reply/reply/session.js +12 -8
- package/dist/auto-reply/reply/stage-sandbox-media.d.ts +9 -0
- package/dist/auto-reply/reply/stage-sandbox-media.js +40 -12
- package/dist/auto-reply/reply/streaming-directives.d.ts +10 -0
- package/dist/auto-reply/reply/streaming-directives.js +4 -2
- package/dist/auto-reply/reply/subagents-utils.d.ts +9 -0
- package/dist/auto-reply/reply/subagents-utils.js +19 -10
- package/dist/auto-reply/reply/test-ctx.d.ts +2 -0
- package/dist/auto-reply/reply/typing-mode.d.ts +27 -0
- package/dist/auto-reply/reply/typing-mode.js +22 -11
- package/dist/auto-reply/reply/typing.d.ts +17 -0
- package/dist/auto-reply/reply/typing.js +40 -20
- package/dist/auto-reply/reply.d.ts +6 -0
- package/dist/auto-reply/send-policy.d.ts +6 -0
- package/dist/auto-reply/send-policy.js +14 -7
- package/dist/auto-reply/skill-commands.d.ts +18 -0
- package/dist/auto-reply/skill-commands.js +27 -14
- package/dist/auto-reply/status.d.ts +53 -0
- package/dist/auto-reply/status.js +68 -36
- package/dist/auto-reply/templating.d.ts +132 -0
- package/dist/auto-reply/templating.js +10 -5
- package/dist/auto-reply/thinking.d.ts +22 -0
- package/dist/auto-reply/thinking.js +82 -41
- package/dist/auto-reply/tokens.d.ts +3 -0
- package/dist/auto-reply/tokens.js +4 -2
- package/dist/auto-reply/tool-meta.d.ts +8 -0
- package/dist/auto-reply/tool-meta.js +30 -15
- package/dist/auto-reply/types.d.ts +55 -0
- package/dist/browser/bridge-server.d.ts +17 -0
- package/dist/browser/bridge-server.js +2 -1
- package/dist/browser/cdp.d.ts +123 -0
- package/dist/browser/cdp.helpers.d.ts +9 -0
- package/dist/browser/cdp.helpers.js +12 -6
- package/dist/browser/cdp.js +30 -15
- package/dist/browser/chrome.d.ts +20 -0
- package/dist/browser/chrome.executables.d.ts +9 -0
- package/dist/browser/chrome.executables.js +98 -49
- package/dist/browser/chrome.js +34 -24
- package/dist/browser/chrome.profile-decoration.d.ts +10 -0
- package/dist/browser/chrome.profile-decoration.js +11 -8
- package/dist/browser/client-actions-core.d.ts +143 -0
- package/dist/browser/client-actions-core.js +2 -1
- package/dist/browser/client-actions-observe.d.ts +68 -0
- package/dist/browser/client-actions-observe.js +22 -11
- package/dist/browser/client-actions-state.d.ts +90 -0
- package/dist/browser/client-actions-state.js +12 -6
- package/dist/browser/client-actions-types.d.ts +18 -0
- package/dist/browser/client-actions.d.ts +4 -0
- package/dist/browser/client-fetch.d.ts +3 -0
- package/dist/browser/client-fetch.js +3 -3
- package/dist/browser/client.d.ts +147 -0
- package/dist/browser/client.js +24 -12
- package/dist/browser/config.d.ts +39 -0
- package/dist/browser/config.js +24 -18
- package/dist/browser/constants.d.ts +8 -0
- package/dist/browser/constants.js +3 -3
- package/dist/browser/control-service.d.ts +5 -0
- package/dist/browser/control-service.js +9 -5
- package/dist/browser/extension-relay.d.ts +14 -0
- package/dist/browser/extension-relay.js +51 -27
- package/dist/browser/profiles-service.d.ts +25 -0
- package/dist/browser/profiles-service.js +5 -4
- package/dist/browser/profiles.d.ts +30 -0
- package/dist/browser/profiles.js +13 -7
- package/dist/browser/pw-ai-module.d.ts +6 -0
- package/dist/browser/pw-ai-module.js +10 -5
- package/dist/browser/pw-ai.d.ts +2 -0
- package/dist/browser/pw-role-snapshot.d.ts +35 -0
- package/dist/browser/pw-role-snapshot.js +60 -30
- package/dist/browser/pw-session.d.ts +135 -0
- package/dist/browser/pw-session.js +52 -26
- package/dist/browser/pw-tools-core.activity.d.ts +21 -0
- package/dist/browser/pw-tools-core.activity.js +4 -2
- package/dist/browser/pw-tools-core.d.ts +8 -0
- package/dist/browser/pw-tools-core.downloads.d.ts +34 -0
- package/dist/browser/pw-tools-core.downloads.js +19 -10
- package/dist/browser/pw-tools-core.interactions.d.ts +112 -0
- package/dist/browser/pw-tools-core.interactions.js +21 -13
- package/dist/browser/pw-tools-core.responses.d.ts +13 -0
- package/dist/browser/pw-tools-core.responses.js +18 -10
- package/dist/browser/pw-tools-core.shared.d.ts +6 -0
- package/dist/browser/pw-tools-core.shared.js +2 -1
- package/dist/browser/pw-tools-core.snapshot.d.ts +64 -0
- package/dist/browser/pw-tools-core.snapshot.js +2 -1
- package/dist/browser/pw-tools-core.state.d.ts +46 -0
- package/dist/browser/pw-tools-core.state.js +13 -7
- package/dist/browser/pw-tools-core.storage.d.ts +47 -0
- package/dist/browser/pw-tools-core.storage.js +6 -3
- package/dist/browser/pw-tools-core.trace.d.ts +12 -0
- package/dist/browser/routes/agent.act.d.ts +3 -0
- package/dist/browser/routes/agent.act.js +80 -41
- package/dist/browser/routes/agent.act.shared.d.ts +10 -0
- package/dist/browser/routes/agent.act.shared.js +4 -2
- package/dist/browser/routes/agent.d.ts +3 -0
- package/dist/browser/routes/agent.debug.d.ts +3 -0
- package/dist/browser/routes/agent.debug.js +21 -11
- package/dist/browser/routes/agent.shared.d.ts +9 -0
- package/dist/browser/routes/agent.shared.js +6 -3
- package/dist/browser/routes/agent.snapshot.d.ts +3 -0
- package/dist/browser/routes/agent.snapshot.js +22 -11
- package/dist/browser/routes/agent.storage.d.ts +3 -0
- package/dist/browser/routes/agent.storage.js +80 -40
- package/dist/browser/routes/basic.d.ts +3 -0
- package/dist/browser/routes/basic.js +4 -2
- package/dist/browser/routes/dispatcher.d.ts +15 -0
- package/dist/browser/routes/dispatcher.js +4 -2
- package/dist/browser/routes/index.d.ts +3 -0
- package/dist/browser/routes/tabs.d.ts +3 -0
- package/dist/browser/routes/tabs.js +36 -18
- package/dist/browser/routes/types.d.ts +15 -0
- package/dist/browser/routes/utils.d.ts +15 -0
- package/dist/browser/routes/utils.js +6 -3
- package/dist/browser/screenshot.d.ts +9 -0
- package/dist/browser/screenshot.js +1 -1
- package/dist/browser/server-context.d.ts +3 -0
- package/dist/browser/server-context.js +45 -27
- package/dist/browser/server-context.types.d.ts +78 -0
- package/dist/browser/server.d.ts +3 -0
- package/dist/browser/server.js +12 -7
- package/dist/browser/target-id.d.ts +11 -0
- package/dist/browser/target-id.js +8 -4
- package/dist/browser/trash.d.ts +1 -0
- package/dist/build-info.json +5 -0
- package/dist/canvas-host/a2ui/.bundle.hash +1 -0
- package/dist/canvas-host/a2ui/a2ui.bundle.js +17780 -0
- package/dist/canvas-host/a2ui/index.html +307 -0
- package/dist/canvas-host/a2ui.d.ts +6 -0
- package/dist/canvas-host/a2ui.js +24 -22
- package/dist/canvas-host/server.d.ts +36 -0
- package/dist/canvas-host/server.js +72 -53
- package/dist/channels/ack-reactions.d.ts +29 -0
- package/dist/channels/ack-reactions.js +32 -16
- package/dist/channels/allowlist-match.d.ts +10 -0
- package/dist/channels/allowlists/resolve-utils.d.ts +6 -0
- package/dist/channels/allowlists/resolve-utils.js +4 -2
- package/dist/channels/channel-config.d.ts +39 -0
- package/dist/channels/channel-config.js +14 -7
- package/dist/channels/chat-type.d.ts +2 -0
- package/dist/channels/chat-type.js +8 -4
- package/dist/channels/command-gating.d.ts +20 -0
- package/dist/channels/command-gating.js +6 -3
- package/dist/channels/conversation-label.d.ts +2 -0
- package/dist/channels/conversation-label.js +24 -12
- package/dist/channels/dock.d.ts +36 -0
- package/dist/channels/dock.js +14 -8
- package/dist/channels/location.d.ts +21 -0
- package/dist/channels/location.js +2 -1
- package/dist/channels/logging.d.ts +20 -0
- package/dist/channels/mention-gating.d.ts +27 -0
- package/dist/channels/plugins/actions/discord/handle-action.d.ts +3 -0
- package/dist/channels/plugins/actions/discord/handle-action.guild-admin.d.ts +9 -0
- package/dist/channels/plugins/actions/discord/handle-action.js +7 -4
- package/dist/channels/plugins/actions/discord.d.ts +2 -0
- package/dist/channels/plugins/actions/discord.js +22 -11
- package/dist/channels/plugins/actions/signal.d.ts +2 -0
- package/dist/channels/plugins/actions/signal.js +16 -8
- package/dist/channels/plugins/actions/telegram.d.ts +2 -0
- package/dist/channels/plugins/actions/telegram.js +18 -9
- package/dist/channels/plugins/agent-tools/whatsapp-login.d.ts +2 -0
- package/dist/channels/plugins/allowlist-match.d.ts +2 -0
- package/dist/channels/plugins/bluebubbles-actions.d.ts +48 -0
- package/dist/channels/plugins/catalog.d.ts +35 -0
- package/dist/channels/plugins/catalog.js +34 -21
- package/dist/channels/plugins/channel-config.d.ts +2 -0
- package/dist/channels/plugins/config-helpers.d.ts +14 -0
- package/dist/channels/plugins/config-helpers.js +5 -3
- package/dist/channels/plugins/config-schema.d.ts +3 -0
- package/dist/channels/plugins/config-writes.d.ts +7 -0
- package/dist/channels/plugins/config-writes.js +8 -4
- package/dist/channels/plugins/directory-config.d.ts +16 -0
- package/dist/channels/plugins/directory-config.js +28 -15
- package/dist/channels/plugins/group-mentions.d.ts +28 -0
- package/dist/channels/plugins/group-mentions.js +36 -18
- package/dist/channels/plugins/helpers.d.ts +8 -0
- package/dist/channels/plugins/helpers.js +2 -2
- package/dist/channels/plugins/index.d.ts +8 -0
- package/dist/channels/plugins/index.js +8 -5
- package/dist/channels/plugins/load.d.ts +2 -0
- package/dist/channels/plugins/load.js +4 -2
- package/dist/channels/plugins/media-limits.d.ts +9 -0
- package/dist/channels/plugins/media-limits.js +2 -1
- package/dist/channels/plugins/message-action-names.d.ts +2 -0
- package/dist/channels/plugins/message-actions.d.ts +7 -0
- package/dist/channels/plugins/message-actions.js +10 -5
- package/dist/channels/plugins/normalize/discord.d.ts +2 -0
- package/dist/channels/plugins/normalize/discord.js +8 -4
- package/dist/channels/plugins/normalize/imessage.d.ts +2 -0
- package/dist/channels/plugins/normalize/imessage.js +14 -7
- package/dist/channels/plugins/normalize/signal.d.ts +2 -0
- package/dist/channels/plugins/normalize/signal.js +12 -6
- package/dist/channels/plugins/normalize/slack.d.ts +2 -0
- package/dist/channels/plugins/normalize/slack.js +10 -5
- package/dist/channels/plugins/normalize/telegram.d.ts +2 -0
- package/dist/channels/plugins/normalize/telegram.js +14 -7
- package/dist/channels/plugins/normalize/whatsapp.d.ts +2 -0
- package/dist/channels/plugins/normalize/whatsapp.js +8 -4
- package/dist/channels/plugins/onboarding/channel-access.d.ts +31 -0
- package/dist/channels/plugins/onboarding/channel-access.js +6 -4
- package/dist/channels/plugins/onboarding/discord.d.ts +2 -0
- package/dist/channels/plugins/onboarding/discord.js +11 -6
- package/dist/channels/plugins/onboarding/helpers.d.ts +3 -0
- package/dist/channels/plugins/onboarding/helpers.js +6 -4
- package/dist/channels/plugins/onboarding/imessage.d.ts +2 -0
- package/dist/channels/plugins/onboarding/imessage.js +13 -7
- package/dist/channels/plugins/onboarding/signal.d.ts +2 -0
- package/dist/channels/plugins/onboarding/signal.js +21 -12
- package/dist/channels/plugins/onboarding/slack.d.ts +2 -0
- package/dist/channels/plugins/onboarding/slack.js +11 -8
- package/dist/channels/plugins/onboarding/telegram.d.ts +2 -0
- package/dist/channels/plugins/onboarding/telegram.js +14 -9
- package/dist/channels/plugins/onboarding/whatsapp.d.ts +2 -0
- package/dist/channels/plugins/onboarding/whatsapp.js +27 -18
- package/dist/channels/plugins/onboarding-types.d.ts +77 -0
- package/dist/channels/plugins/outbound/discord.d.ts +2 -0
- package/dist/channels/plugins/outbound/imessage.d.ts +2 -0
- package/dist/channels/plugins/outbound/load.d.ts +2 -0
- package/dist/channels/plugins/outbound/load.js +4 -2
- package/dist/channels/plugins/outbound/signal.d.ts +2 -0
- package/dist/channels/plugins/outbound/slack.d.ts +2 -0
- package/dist/channels/plugins/outbound/telegram.d.ts +2 -0
- package/dist/channels/plugins/outbound/telegram.js +6 -3
- package/dist/channels/plugins/outbound/whatsapp.d.ts +2 -0
- package/dist/channels/plugins/outbound/whatsapp.js +1 -1
- package/dist/channels/plugins/pairing-message.d.ts +1 -0
- package/dist/channels/plugins/pairing-message.js +1 -1
- package/dist/channels/plugins/pairing.d.ts +16 -0
- package/dist/channels/plugins/pairing.js +2 -1
- package/dist/channels/plugins/setup-helpers.d.ts +13 -0
- package/dist/channels/plugins/setup-helpers.js +10 -5
- package/dist/channels/plugins/slack.actions.d.ts +2 -0
- package/dist/channels/plugins/slack.actions.js +12 -6
- package/dist/channels/plugins/status-issues/bluebubbles.d.ts +2 -0
- package/dist/channels/plugins/status-issues/bluebubbles.js +9 -5
- package/dist/channels/plugins/status-issues/discord.d.ts +2 -0
- package/dist/channels/plugins/status-issues/discord.js +18 -9
- package/dist/channels/plugins/status-issues/shared.d.ts +10 -0
- package/dist/channels/plugins/status-issues/telegram.d.ts +2 -0
- package/dist/channels/plugins/status-issues/telegram.js +14 -7
- package/dist/channels/plugins/status-issues/whatsapp.d.ts +2 -0
- package/dist/channels/plugins/status-issues/whatsapp.js +8 -5
- package/dist/channels/plugins/status.d.ts +10 -0
- package/dist/channels/plugins/types.adapters.d.ts +294 -0
- package/dist/channels/plugins/types.core.d.ts +311 -0
- package/dist/channels/plugins/types.d.ts +6 -0
- package/dist/channels/plugins/types.plugin.d.ts +53 -0
- package/dist/channels/plugins/whatsapp-heartbeat.d.ts +11 -0
- package/dist/channels/plugins/whatsapp-heartbeat.js +5 -3
- package/dist/channels/registry.d.ts +16 -0
- package/dist/channels/registry.js +8 -7
- package/dist/channels/reply-prefix.d.ts +15 -0
- package/dist/channels/sender-identity.d.ts +2 -0
- package/dist/channels/sender-identity.js +4 -2
- package/dist/channels/sender-label.d.ts +9 -0
- package/dist/channels/sender-label.js +14 -7
- package/dist/channels/session.d.ts +18 -0
- package/dist/channels/session.js +2 -1
- package/dist/channels/targets.d.ts +25 -0
- package/dist/channels/typing.d.ts +10 -0
- package/dist/channels/web/index.d.ts +1 -0
- package/dist/cli/acp-cli.d.ts +2 -0
- package/dist/cli/acp-cli.js +2 -2
- package/dist/cli/argv.d.ts +16 -0
- package/dist/cli/argv.js +40 -21
- package/dist/cli/banner.d.ts +12 -0
- package/dist/cli/banner.js +28 -20
- package/dist/cli/browser-cli-actions-input/register.d.ts +3 -0
- package/dist/cli/browser-cli-actions-input/register.element.d.ts +3 -0
- package/dist/cli/browser-cli-actions-input/register.element.js +6 -3
- package/dist/cli/browser-cli-actions-input/register.files-downloads.d.ts +3 -0
- package/dist/cli/browser-cli-actions-input/register.files-downloads.js +2 -2
- package/dist/cli/browser-cli-actions-input/register.form-wait-eval.d.ts +3 -0
- package/dist/cli/browser-cli-actions-input/register.navigation.d.ts +3 -0
- package/dist/cli/browser-cli-actions-input/shared.d.ts +19 -0
- package/dist/cli/browser-cli-actions-input/shared.js +4 -2
- package/dist/cli/browser-cli-actions-input.d.ts +1 -0
- package/dist/cli/browser-cli-actions-observe.d.ts +3 -0
- package/dist/cli/browser-cli-actions-observe.js +1 -1
- package/dist/cli/browser-cli-debug.d.ts +3 -0
- package/dist/cli/browser-cli-debug.js +1 -1
- package/dist/cli/browser-cli-examples.d.ts +2 -0
- package/dist/cli/browser-cli-examples.js +29 -29
- package/dist/cli/browser-cli-extension.d.ts +10 -0
- package/dist/cli/browser-cli-extension.js +8 -7
- package/dist/cli/browser-cli-inspect.d.ts +3 -0
- package/dist/cli/browser-cli-manage.d.ts +3 -0
- package/dist/cli/browser-cli-manage.js +4 -4
- package/dist/cli/browser-cli-shared.d.ts +16 -0
- package/dist/cli/browser-cli-shared.js +4 -2
- package/dist/cli/browser-cli-state.cookies-storage.d.ts +3 -0
- package/dist/cli/browser-cli-state.d.ts +3 -0
- package/dist/cli/browser-cli-state.js +2 -1
- package/dist/cli/browser-cli.d.ts +2 -0
- package/dist/cli/browser-cli.js +5 -5
- package/dist/cli/channel-auth.d.ts +9 -0
- package/dist/cli/channel-options.d.ts +2 -0
- package/dist/cli/channel-options.js +4 -3
- package/dist/cli/channels-cli.d.ts +2 -0
- package/dist/cli/channels-cli.js +2 -2
- package/dist/cli/cli-name.d.ts +3 -0
- package/dist/cli/cli-name.js +12 -12
- package/dist/cli/cli-utils.d.ts +18 -0
- package/dist/cli/cli-utils.js +11 -0
- package/dist/cli/command-format.d.ts +1 -0
- package/dist/cli/command-format.js +8 -6
- package/dist/cli/command-options.d.ts +2 -0
- package/dist/cli/completion-cli.d.ts +3 -0
- package/dist/cli/completion-cli.js +372 -0
- package/dist/cli/config-cli.d.ts +2 -0
- package/dist/cli/config-cli.js +46 -25
- package/dist/cli/cron-cli/register.cron-add.d.ts +4 -0
- package/dist/cli/cron-cli/register.cron-add.js +9 -5
- package/dist/cli/cron-cli/register.cron-edit.d.ts +2 -0
- package/dist/cli/cron-cli/register.cron-edit.js +27 -14
- package/dist/cli/cron-cli/register.cron-simple.d.ts +2 -0
- package/dist/cli/cron-cli/register.d.ts +2 -0
- package/dist/cli/cron-cli/register.js +1 -1
- package/dist/cli/cron-cli/shared.d.ts +7 -0
- package/dist/cli/cron-cli/shared.js +50 -25
- package/dist/cli/cron-cli.d.ts +1 -0
- package/dist/cli/daemon-cli/install.d.ts +2 -0
- package/dist/cli/daemon-cli/install.js +9 -6
- package/dist/cli/daemon-cli/lifecycle.d.ts +10 -0
- package/dist/cli/daemon-cli/lifecycle.js +25 -13
- package/dist/cli/daemon-cli/probe.d.ts +14 -0
- package/dist/cli/daemon-cli/register.d.ts +2 -0
- package/dist/cli/daemon-cli/register.js +1 -1
- package/dist/cli/daemon-cli/response.d.ts +26 -0
- package/dist/cli/daemon-cli/runners.d.ts +3 -0
- package/dist/cli/daemon-cli/shared.d.ts +22 -0
- package/dist/cli/daemon-cli/shared.js +51 -33
- package/dist/cli/daemon-cli/status.d.ts +2 -0
- package/dist/cli/daemon-cli/status.gather.d.ts +89 -0
- package/dist/cli/daemon-cli/status.gather.js +9 -9
- package/dist/cli/daemon-cli/status.print.d.ts +4 -0
- package/dist/cli/daemon-cli/status.print.js +13 -19
- package/dist/cli/daemon-cli/types.d.ts +23 -0
- package/dist/cli/daemon-cli.d.ts +3 -0
- package/dist/cli/deps.d.ts +18 -0
- package/dist/cli/devices-cli.d.ts +2 -0
- package/dist/cli/devices-cli.js +10 -6
- package/dist/cli/directory-cli.d.ts +2 -0
- package/dist/cli/directory-cli.js +22 -12
- package/dist/cli/dns-cli.d.ts +2 -0
- package/dist/cli/dns-cli.js +30 -18
- package/dist/cli/docs-cli.d.ts +2 -0
- package/dist/cli/docs-cli.js +2 -2
- package/dist/cli/exec-approvals-cli.d.ts +2 -0
- package/dist/cli/exec-approvals-cli.js +17 -11
- package/dist/cli/gateway-cli/call.d.ts +11 -0
- package/dist/cli/gateway-cli/dev.d.ts +3 -0
- package/dist/cli/gateway-cli/dev.js +15 -9
- package/dist/cli/gateway-cli/discover.d.ts +10 -0
- package/dist/cli/gateway-cli/discover.js +6 -3
- package/dist/cli/gateway-cli/register.d.ts +2 -0
- package/dist/cli/gateway-cli/register.js +38 -20
- package/dist/cli/gateway-cli/run-loop.d.ts +6 -0
- package/dist/cli/gateway-cli/run.d.ts +2 -0
- package/dist/cli/gateway-cli/run.js +13 -12
- package/dist/cli/gateway-cli/shared.d.ts +9 -0
- package/dist/cli/gateway-cli/shared.js +25 -15
- package/dist/cli/gateway-cli.d.ts +1 -0
- package/dist/cli/gateway-rpc.d.ts +13 -0
- package/dist/cli/help-format.d.ts +5 -0
- package/dist/cli/help-format.js +2 -1
- package/dist/cli/hooks-cli.d.ts +32 -0
- package/dist/cli/hooks-cli.js +25 -16
- package/dist/cli/logs-cli.d.ts +2 -0
- package/dist/cli/logs-cli.js +19 -11
- package/dist/cli/memory-cli.d.ts +11 -0
- package/dist/cli/memory-cli.js +63 -19
- package/dist/cli/models-cli.d.ts +2 -0
- package/dist/cli/models-cli.js +21 -9
- package/dist/cli/node-cli/daemon.d.ts +24 -0
- package/dist/cli/node-cli/daemon.js +37 -21
- package/dist/cli/node-cli/register.d.ts +2 -0
- package/dist/cli/node-cli/register.js +4 -4
- package/dist/cli/node-cli.d.ts +1 -0
- package/dist/cli/nodes-camera.d.ts +26 -0
- package/dist/cli/nodes-canvas.d.ts +10 -0
- package/dist/cli/nodes-cli/a2ui-jsonl.d.ts +6 -0
- package/dist/cli/nodes-cli/a2ui-jsonl.js +2 -1
- package/dist/cli/nodes-cli/cli-utils.d.ts +9 -0
- package/dist/cli/nodes-cli/cli-utils.js +2 -1
- package/dist/cli/nodes-cli/format.d.ts +5 -0
- package/dist/cli/nodes-cli/format.js +11 -6
- package/dist/cli/nodes-cli/register.camera.d.ts +2 -0
- package/dist/cli/nodes-cli/register.camera.js +8 -7
- package/dist/cli/nodes-cli/register.canvas.d.ts +2 -0
- package/dist/cli/nodes-cli/register.canvas.js +9 -6
- package/dist/cli/nodes-cli/register.d.ts +2 -0
- package/dist/cli/nodes-cli/register.invoke.d.ts +2 -0
- package/dist/cli/nodes-cli/register.invoke.js +20 -13
- package/dist/cli/nodes-cli/register.js +1 -1
- package/dist/cli/nodes-cli/register.location.d.ts +2 -0
- package/dist/cli/nodes-cli/register.location.js +1 -1
- package/dist/cli/nodes-cli/register.notify.d.ts +2 -0
- package/dist/cli/nodes-cli/register.pairing.d.ts +2 -0
- package/dist/cli/nodes-cli/register.pairing.js +3 -3
- package/dist/cli/nodes-cli/register.screen.d.ts +2 -0
- package/dist/cli/nodes-cli/register.screen.js +2 -2
- package/dist/cli/nodes-cli/register.status.d.ts +2 -0
- package/dist/cli/nodes-cli/register.status.js +51 -35
- package/dist/cli/nodes-cli/rpc.d.ts +8 -0
- package/dist/cli/nodes-cli/rpc.js +14 -8
- package/dist/cli/nodes-cli/types.d.ts +92 -0
- package/dist/cli/nodes-cli.d.ts +1 -0
- package/dist/cli/nodes-run.d.ts +3 -0
- package/dist/cli/nodes-run.js +8 -4
- package/dist/cli/nodes-screen.d.ts +18 -0
- package/dist/cli/nodes-screen.js +1 -1
- package/dist/cli/outbound-send-deps.d.ts +10 -0
- package/dist/cli/pairing-cli.d.ts +2 -0
- package/dist/cli/pairing-cli.js +10 -7
- package/dist/cli/parse-duration.d.ts +4 -0
- package/dist/cli/parse-duration.js +6 -3
- package/dist/cli/parse-timeout.d.ts +1 -0
- package/dist/cli/parse-timeout.js +4 -2
- package/dist/cli/plugin-registry.d.ts +1 -0
- package/dist/cli/plugin-registry.js +4 -3
- package/dist/cli/plugins-cli.d.ts +14 -0
- package/dist/cli/plugins-cli.js +27 -15
- package/dist/cli/ports.d.ts +20 -0
- package/dist/cli/ports.js +10 -7
- package/dist/cli/profile-utils.d.ts +2 -0
- package/dist/cli/profile-utils.js +8 -4
- package/dist/cli/profile.d.ts +14 -0
- package/dist/cli/profile.js +20 -14
- package/dist/cli/program/build-program.d.ts +2 -0
- package/dist/cli/program/build-program.js +1 -1
- package/dist/cli/program/command-registry.d.ts +21 -0
- package/dist/cli/program/command-registry.js +14 -7
- package/dist/cli/program/config-guard.d.ts +5 -0
- package/dist/cli/program/config-guard.js +5 -4
- package/dist/cli/program/context.d.ts +7 -0
- package/dist/cli/program/help.d.ts +3 -0
- package/dist/cli/program/help.js +18 -13
- package/dist/cli/program/helpers.d.ts +3 -0
- package/dist/cli/program/helpers.js +8 -4
- package/dist/cli/program/message/helpers.d.ts +8 -0
- package/dist/cli/program/message/helpers.js +1 -1
- package/dist/cli/program/message/register.broadcast.d.ts +3 -0
- package/dist/cli/program/message/register.discord-admin.d.ts +3 -0
- package/dist/cli/program/message/register.emoji-sticker.d.ts +4 -0
- package/dist/cli/program/message/register.permissions-search.d.ts +4 -0
- package/dist/cli/program/message/register.pins.d.ts +3 -0
- package/dist/cli/program/message/register.poll.d.ts +3 -0
- package/dist/cli/program/message/register.reactions.d.ts +3 -0
- package/dist/cli/program/message/register.read-edit-delete.d.ts +3 -0
- package/dist/cli/program/message/register.send.d.ts +3 -0
- package/dist/cli/program/message/register.thread.d.ts +3 -0
- package/dist/cli/program/preaction.d.ts +2 -0
- package/dist/cli/program/preaction.js +13 -9
- package/dist/cli/program/register.agent.d.ts +4 -0
- package/dist/cli/program/register.agent.js +17 -14
- package/dist/cli/program/register.configure.d.ts +2 -0
- package/dist/cli/program/register.configure.js +1 -1
- package/dist/cli/program/register.maintenance.d.ts +2 -0
- package/dist/cli/program/register.maintenance.js +4 -4
- package/dist/cli/program/register.message.d.ts +3 -0
- package/dist/cli/program/register.message.js +6 -6
- package/dist/cli/program/register.onboard.d.ts +2 -0
- package/dist/cli/program/register.onboard.js +12 -7
- package/dist/cli/program/register.setup.d.ts +2 -0
- package/dist/cli/program/register.setup.js +4 -4
- package/dist/cli/program/register.status-health-sessions.d.ts +2 -0
- package/dist/cli/program/register.status-health-sessions.js +13 -13
- package/dist/cli/program/register.subclis.d.ts +11 -0
- package/dist/cli/program/register.subclis.js +25 -5
- package/dist/cli/program.d.ts +2 -0
- package/dist/cli/progress.d.ts +24 -0
- package/dist/cli/progress.js +31 -16
- package/dist/cli/prompt.d.ts +1 -0
- package/dist/cli/prompt.js +7 -4
- package/dist/cli/route.d.ts +1 -0
- package/dist/cli/route.js +12 -8
- package/dist/cli/run-main.d.ts +3 -0
- package/dist/cli/run-main.js +16 -10
- package/dist/cli/sandbox-cli.d.ts +2 -0
- package/dist/cli/sandbox-cli.js +20 -20
- package/dist/cli/security-cli.d.ts +2 -0
- package/dist/cli/security-cli.js +21 -13
- package/dist/cli/skills-cli.d.ts +29 -0
- package/dist/cli/skills-cli.js +17 -13
- package/dist/cli/system-cli.d.ts +2 -0
- package/dist/cli/system-cli.js +11 -6
- package/dist/cli/tagline.d.ts +12 -0
- package/dist/cli/tagline.js +22 -15
- package/dist/cli/tui-cli.d.ts +2 -0
- package/dist/cli/tui-cli.js +1 -1
- package/dist/cli/update-cli.d.ts +20 -0
- package/dist/cli/update-cli.js +97 -74
- package/dist/cli/wait.d.ts +1 -0
- package/dist/cli/webhooks-cli.d.ts +2 -0
- package/dist/cli/webhooks-cli.js +17 -12
- package/dist/commands/agent/delivery.d.ts +19 -0
- package/dist/commands/agent/delivery.js +27 -14
- package/dist/commands/agent/run-context.d.ts +2 -0
- package/dist/commands/agent/run-context.js +10 -5
- package/dist/commands/agent/session-store.d.ts +17 -0
- package/dist/commands/agent/session-store.js +2 -1
- package/dist/commands/agent/session.d.ts +33 -0
- package/dist/commands/agent/session.js +2 -1
- package/dist/commands/agent/types.d.ts +75 -0
- package/dist/commands/agent-via-gateway.d.ts +42 -0
- package/dist/commands/agent-via-gateway.js +12 -8
- package/dist/commands/agent.d.ts +7 -0
- package/dist/commands/agent.js +12 -9
- package/dist/commands/agents.bindings.d.ts +27 -0
- package/dist/commands/agents.bindings.js +14 -7
- package/dist/commands/agents.command-shared.d.ts +4 -0
- package/dist/commands/agents.command-shared.js +1 -1
- package/dist/commands/agents.commands.add.d.ts +14 -0
- package/dist/commands/agents.commands.add.js +11 -7
- package/dist/commands/agents.commands.delete.d.ts +8 -0
- package/dist/commands/agents.commands.delete.js +4 -2
- package/dist/commands/agents.commands.identity.d.ts +14 -0
- package/dist/commands/agents.commands.identity.js +12 -6
- package/dist/commands/agents.commands.list.d.ts +7 -0
- package/dist/commands/agents.commands.list.js +12 -7
- package/dist/commands/agents.config.d.ts +37 -0
- package/dist/commands/agents.config.js +8 -4
- package/dist/commands/agents.d.ts +6 -0
- package/dist/commands/agents.providers.d.ts +20 -0
- package/dist/commands/agents.providers.js +12 -6
- package/dist/commands/auth-choice-options.d.ts +25 -0
- package/dist/commands/auth-choice-options.js +49 -34
- package/dist/commands/auth-choice-prompt.d.ts +8 -0
- package/dist/commands/auth-choice-prompt.js +2 -2
- package/dist/commands/auth-choice.api-key.d.ts +6 -0
- package/dist/commands/auth-choice.api-key.js +4 -2
- package/dist/commands/auth-choice.apply.anthropic.d.ts +2 -0
- package/dist/commands/auth-choice.apply.api-providers.d.ts +2 -0
- package/dist/commands/auth-choice.apply.api-providers.js +69 -16
- package/dist/commands/auth-choice.apply.copilot-proxy.d.ts +2 -0
- package/dist/commands/auth-choice.apply.d.ts +22 -0
- package/dist/commands/auth-choice.apply.github-copilot.d.ts +2 -0
- package/dist/commands/auth-choice.apply.github-copilot.js +2 -1
- package/dist/commands/auth-choice.apply.google-antigravity.d.ts +2 -0
- package/dist/commands/auth-choice.apply.google-gemini-cli.d.ts +2 -0
- package/dist/commands/auth-choice.apply.js +2 -1
- package/dist/commands/auth-choice.apply.minimax.d.ts +2 -0
- package/dist/commands/auth-choice.apply.minimax.js +20 -1
- package/dist/commands/auth-choice.apply.oauth.d.ts +2 -0
- package/dist/commands/auth-choice.apply.oauth.js +2 -2
- package/dist/commands/auth-choice.apply.openai.d.ts +2 -0
- package/dist/commands/auth-choice.apply.openai.js +4 -3
- package/dist/commands/auth-choice.apply.plugin-provider.d.ts +9 -0
- package/dist/commands/auth-choice.apply.plugin-provider.js +8 -6
- package/dist/commands/auth-choice.apply.qwen-portal.d.ts +2 -0
- package/dist/commands/auth-choice.d.ts +3 -0
- package/dist/commands/auth-choice.default-model.d.ts +15 -0
- package/dist/commands/auth-choice.model-check.d.ts +6 -0
- package/dist/commands/auth-choice.preferred-provider.d.ts +2 -0
- package/dist/commands/auth-choice.preferred-provider.js +3 -1
- package/dist/commands/auth-token.d.ts +9 -0
- package/dist/commands/auth-token.js +4 -2
- package/dist/commands/channels/add-mutators.d.ts +46 -0
- package/dist/commands/channels/add-mutators.js +2 -1
- package/dist/commands/channels/add.d.ts +39 -0
- package/dist/commands/channels/add.js +10 -5
- package/dist/commands/channels/capabilities.d.ts +9 -0
- package/dist/commands/channels/capabilities.js +51 -26
- package/dist/commands/channels/list.d.ts +6 -0
- package/dist/commands/channels/list.js +8 -4
- package/dist/commands/channels/logs.d.ts +7 -0
- package/dist/commands/channels/logs.js +15 -8
- package/dist/commands/channels/remove.d.ts +9 -0
- package/dist/commands/channels/remove.js +8 -6
- package/dist/commands/channels/resolve.d.ts +9 -0
- package/dist/commands/channels/resolve.js +15 -8
- package/dist/commands/channels/shared.d.ts +20 -0
- package/dist/commands/channels/shared.js +3 -2
- package/dist/commands/channels/status.d.ts +8 -0
- package/dist/commands/channels/status.js +18 -10
- package/dist/commands/channels.d.ts +14 -0
- package/dist/commands/chutes-oauth.d.ts +21 -0
- package/dist/commands/chutes-oauth.js +15 -8
- package/dist/commands/cleanup-utils.d.ts +13 -0
- package/dist/commands/cleanup-utils.js +8 -4
- package/dist/commands/configure.channels.d.ts +3 -0
- package/dist/commands/configure.channels.js +6 -4
- package/dist/commands/configure.commands.d.ts +4 -0
- package/dist/commands/configure.d.ts +4 -0
- package/dist/commands/configure.daemon.d.ts +8 -0
- package/dist/commands/configure.daemon.js +6 -5
- package/dist/commands/configure.gateway-auth.d.ts +12 -0
- package/dist/commands/configure.gateway-auth.js +3 -2
- package/dist/commands/configure.gateway.d.ts +7 -0
- package/dist/commands/configure.gateway.js +9 -6
- package/dist/commands/configure.shared.d.ts +18 -0
- package/dist/commands/configure.wizard.d.ts +3 -0
- package/dist/commands/configure.wizard.js +25 -24
- package/dist/commands/daemon-install-helpers.d.ts +22 -0
- package/dist/commands/daemon-install-helpers.js +6 -5
- package/dist/commands/daemon-runtime.d.ts +8 -0
- package/dist/commands/dashboard.d.ts +6 -0
- package/dist/commands/dashboard.js +2 -2
- package/dist/commands/docs.d.ts +2 -0
- package/dist/commands/docs.js +18 -12
- package/dist/commands/doctor-auth.d.ts +9 -0
- package/dist/commands/doctor-auth.js +28 -17
- package/dist/commands/doctor-config-flow.d.ts +13 -0
- package/dist/commands/doctor-config-flow.js +76 -43
- package/dist/commands/doctor-format.d.ts +8 -0
- package/dist/commands/doctor-format.js +22 -14
- package/dist/commands/doctor-gateway-daemon-flow.d.ts +11 -0
- package/dist/commands/doctor-gateway-daemon-flow.js +27 -16
- package/dist/commands/doctor-gateway-health.d.ts +9 -0
- package/dist/commands/doctor-gateway-health.js +1 -1
- package/dist/commands/doctor-gateway-services.d.ts +5 -0
- package/dist/commands/doctor-gateway-services.js +92 -75
- package/dist/commands/doctor-install.d.ts +1 -0
- package/dist/commands/doctor-install.js +4 -2
- package/dist/commands/doctor-legacy-config.d.ts +5 -0
- package/dist/commands/doctor-platform-notes.d.ts +11 -0
- package/dist/commands/doctor-platform-notes.js +61 -13
- package/dist/commands/doctor-prompter.d.ts +24 -0
- package/dist/commands/doctor-prompter.js +26 -15
- package/dist/commands/doctor-sandbox.d.ts +5 -0
- package/dist/commands/doctor-sandbox.js +16 -10
- package/dist/commands/doctor-security.d.ts +2 -0
- package/dist/commands/doctor-security.js +16 -12
- package/dist/commands/doctor-state-integrity.d.ts +10 -0
- package/dist/commands/doctor-state-integrity.js +40 -22
- package/dist/commands/doctor-state-migrations.d.ts +2 -0
- package/dist/commands/doctor-ui.d.ts +3 -0
- package/dist/commands/doctor-ui.js +6 -4
- package/dist/commands/doctor-update.d.ts +18 -0
- package/dist/commands/doctor-update.js +13 -10
- package/dist/commands/doctor-workspace-status.d.ts +4 -0
- package/dist/commands/doctor-workspace-status.js +2 -2
- package/dist/commands/doctor-workspace.d.ts +10 -0
- package/dist/commands/doctor-workspace.js +7 -28
- package/dist/commands/doctor.d.ts +3 -0
- package/dist/commands/doctor.js +15 -14
- package/dist/commands/gateway-status/helpers.d.ts +72 -0
- package/dist/commands/gateway-status/helpers.js +26 -14
- package/dist/commands/gateway-status.d.ts +11 -0
- package/dist/commands/gateway-status.js +39 -18
- package/dist/commands/google-gemini-model-default.d.ts +6 -0
- package/dist/commands/google-gemini-model-default.js +2 -1
- package/dist/commands/health-format.d.ts +3 -0
- package/dist/commands/health-format.js +4 -2
- package/dist/commands/health.d.ts +63 -0
- package/dist/commands/health.js +70 -37
- package/dist/commands/message-format.d.ts +11 -0
- package/dist/commands/message-format.js +34 -17
- package/dist/commands/message.d.ts +3 -0
- package/dist/commands/model-picker.d.ts +31 -0
- package/dist/commands/model-picker.js +69 -35
- package/dist/commands/models/aliases.d.ts +7 -0
- package/dist/commands/models/aliases.js +2 -1
- package/dist/commands/models/auth-order.d.ts +15 -0
- package/dist/commands/models/auth-order.js +12 -7
- package/dist/commands/models/auth.d.ts +18 -0
- package/dist/commands/models/auth.js +22 -15
- package/dist/commands/models/fallbacks.d.ts +8 -0
- package/dist/commands/models/fallbacks.js +10 -5
- package/dist/commands/models/image-fallbacks.d.ts +8 -0
- package/dist/commands/models/image-fallbacks.js +10 -5
- package/dist/commands/models/list.auth-overview.d.ts +9 -0
- package/dist/commands/models/list.auth-overview.js +4 -2
- package/dist/commands/models/list.configured.d.ts +5 -0
- package/dist/commands/models/list.configured.js +8 -4
- package/dist/commands/models/list.d.ts +2 -0
- package/dist/commands/models/list.format.d.ts +12 -0
- package/dist/commands/models/list.format.js +24 -12
- package/dist/commands/models/list.list-command.d.ts +8 -0
- package/dist/commands/models/list.list-command.js +11 -6
- package/dist/commands/models/list.probe.d.ts +49 -0
- package/dist/commands/models/list.probe.js +42 -24
- package/dist/commands/models/list.registry.d.ts +18 -0
- package/dist/commands/models/list.registry.js +17 -11
- package/dist/commands/models/list.status-command.d.ts +13 -0
- package/dist/commands/models/list.status-command.js +91 -49
- package/dist/commands/models/list.table.d.ts +6 -0
- package/dist/commands/models/list.table.js +2 -1
- package/dist/commands/models/list.types.d.ts +41 -0
- package/dist/commands/models/scan.d.ts +15 -0
- package/dist/commands/models/scan.js +26 -14
- package/dist/commands/models/set-image.d.ts +2 -0
- package/dist/commands/models/set-image.js +2 -1
- package/dist/commands/models/set.d.ts +2 -0
- package/dist/commands/models/set.js +2 -1
- package/dist/commands/models/shared.d.ts +34 -0
- package/dist/commands/models/shared.js +29 -7
- package/dist/commands/models.d.ts +10 -0
- package/dist/commands/node-daemon-install-helpers.d.ts +22 -0
- package/dist/commands/node-daemon-install-helpers.js +3 -2
- package/dist/commands/node-daemon-runtime.d.ts +9 -0
- package/dist/commands/oauth-env.d.ts +1 -0
- package/dist/commands/oauth-flow.d.ts +21 -0
- package/dist/commands/oauth-flow.js +2 -1
- package/dist/commands/onboard-auth.config-core.d.ts +31 -0
- package/dist/commands/onboard-auth.config-core.js +70 -26
- package/dist/commands/onboard-auth.config-minimax.d.ts +11 -0
- package/dist/commands/onboard-auth.config-opencode.d.ts +3 -0
- package/dist/commands/onboard-auth.credentials.d.ts +18 -0
- package/dist/commands/onboard-auth.credentials.js +19 -7
- package/dist/commands/onboard-auth.d.ts +7 -0
- package/dist/commands/onboard-auth.js +3 -3
- package/dist/commands/onboard-auth.models.d.ts +48 -0
- package/dist/commands/onboard-auth.models.js +2 -26
- package/dist/commands/onboard-channels.d.ts +12 -0
- package/dist/commands/onboard-channels.js +45 -28
- package/dist/commands/onboard-helpers.d.ts +81 -0
- package/dist/commands/onboard-helpers.js +57 -30
- package/dist/commands/onboard-hooks.d.ts +4 -0
- package/dist/commands/onboard-hooks.js +5 -5
- package/dist/commands/onboard-interactive.d.ts +3 -0
- package/dist/commands/onboard-non-interactive/api-keys.d.ts +16 -0
- package/dist/commands/onboard-non-interactive/api-keys.js +10 -5
- package/dist/commands/onboard-non-interactive/local/auth-choice.d.ts +10 -0
- package/dist/commands/onboard-non-interactive/local/auth-choice.js +79 -32
- package/dist/commands/onboard-non-interactive/local/daemon-install.d.ts +10 -0
- package/dist/commands/onboard-non-interactive/local/daemon-install.js +3 -2
- package/dist/commands/onboard-non-interactive/local/gateway-config.d.ts +17 -0
- package/dist/commands/onboard-non-interactive/local/gateway-config.js +6 -3
- package/dist/commands/onboard-non-interactive/local/output.d.ts +19 -0
- package/dist/commands/onboard-non-interactive/local/output.js +2 -1
- package/dist/commands/onboard-non-interactive/local/skills-config.d.ts +8 -0
- package/dist/commands/onboard-non-interactive/local/skills-config.js +2 -1
- package/dist/commands/onboard-non-interactive/local/workspace.d.ts +7 -0
- package/dist/commands/onboard-non-interactive/local.d.ts +8 -0
- package/dist/commands/onboard-non-interactive/local.js +6 -4
- package/dist/commands/onboard-non-interactive/remote.d.ts +8 -0
- package/dist/commands/onboard-non-interactive/remote.js +2 -2
- package/dist/commands/onboard-non-interactive.d.ts +3 -0
- package/dist/commands/onboard-non-interactive.js +1 -1
- package/dist/commands/onboard-remote.d.ts +3 -0
- package/dist/commands/onboard-remote.js +11 -6
- package/dist/commands/onboard-skills.d.ts +4 -0
- package/dist/commands/onboard-skills.js +20 -11
- package/dist/commands/onboard-types.d.ts +62 -0
- package/dist/commands/onboard.d.ts +4 -0
- package/dist/commands/onboard.js +4 -4
- package/dist/commands/onboarding/__tests__/test-utils.d.ts +4 -0
- package/dist/commands/onboarding/plugin-install.d.ts +21 -0
- package/dist/commands/onboarding/plugin-install.js +15 -9
- package/dist/commands/onboarding/registry.d.ts +6 -0
- package/dist/commands/onboarding/registry.js +1 -1
- package/dist/commands/onboarding/types.d.ts +1 -0
- package/dist/commands/openai-codex-model-default.d.ts +6 -0
- package/dist/commands/openai-codex-model-default.js +8 -4
- package/dist/commands/opencode-zen-model-default.d.ts +6 -0
- package/dist/commands/opencode-zen-model-default.js +2 -1
- package/dist/commands/reset.d.ts +9 -0
- package/dist/commands/reset.js +8 -6
- package/dist/commands/sandbox-display.d.ts +13 -0
- package/dist/commands/sandbox-display.js +1 -1
- package/dist/commands/sandbox-explain.d.ts +8 -0
- package/dist/commands/sandbox-explain.js +26 -14
- package/dist/commands/sandbox-formatters.d.ts +25 -0
- package/dist/commands/sandbox-formatters.js +6 -3
- package/dist/commands/sandbox.d.ts +15 -0
- package/dist/commands/sessions.d.ts +6 -0
- package/dist/commands/sessions.js +37 -19
- package/dist/commands/setup.d.ts +4 -0
- package/dist/commands/setup.js +1 -1
- package/dist/commands/signal-install.d.ts +8 -0
- package/dist/commands/signal-install.js +4 -3
- package/dist/commands/status-all/agents.d.ts +16 -0
- package/dist/commands/status-all/channels.d.ts +19 -0
- package/dist/commands/status-all/channels.js +58 -30
- package/dist/commands/status-all/diagnosis.d.ts +62 -0
- package/dist/commands/status-all/diagnosis.js +9 -5
- package/dist/commands/status-all/format.d.ts +7 -0
- package/dist/commands/status-all/format.js +20 -10
- package/dist/commands/status-all/gateway.d.ts +10 -0
- package/dist/commands/status-all/gateway.js +20 -10
- package/dist/commands/status-all/report-lines.d.ts +44 -0
- package/dist/commands/status-all/report-lines.js +7 -4
- package/dist/commands/status-all.d.ts +4 -0
- package/dist/commands/status-all.js +51 -31
- package/dist/commands/status.agent-local.d.ts +16 -0
- package/dist/commands/status.command.d.ts +9 -0
- package/dist/commands/status.command.js +53 -34
- package/dist/commands/status.d.ts +3 -0
- package/dist/commands/status.daemon.d.ts +9 -0
- package/dist/commands/status.daemon.js +1 -1
- package/dist/commands/status.format.d.ts +13 -0
- package/dist/commands/status.format.js +22 -11
- package/dist/commands/status.gateway-probe.d.ts +11 -0
- package/dist/commands/status.gateway-probe.js +6 -4
- package/dist/commands/status.link-channel.d.ts +10 -0
- package/dist/commands/status.link-channel.js +2 -1
- package/dist/commands/status.scan.d.ts +46 -0
- package/dist/commands/status.scan.js +11 -7
- package/dist/commands/status.summary.d.ts +2 -0
- package/dist/commands/status.summary.js +23 -12
- package/dist/commands/status.types.d.ts +58 -0
- package/dist/commands/status.update.d.ts +16 -0
- package/dist/commands/status.update.js +26 -15
- package/dist/commands/systemd-linger.d.ts +21 -0
- package/dist/commands/systemd-linger.js +12 -6
- package/dist/commands/uninstall.d.ts +12 -0
- package/dist/commands/uninstall.js +17 -11
- package/dist/compat/legacy-names.d.ts +8 -0
- package/dist/compat/legacy-names.js +8 -6
- package/dist/config/agent-dirs.d.ts +14 -0
- package/dist/config/agent-dirs.js +4 -2
- package/dist/config/agent-limits.d.ts +5 -0
- package/dist/config/cache-utils.d.ts +6 -0
- package/dist/config/channel-capabilities.d.ts +6 -0
- package/dist/config/channel-capabilities.js +6 -3
- package/dist/config/commands.d.ts +16 -0
- package/dist/config/commands.js +18 -9
- package/dist/config/config-paths.d.ts +10 -0
- package/dist/config/config-paths.js +6 -3
- package/dist/config/config.d.ts +7 -0
- package/dist/config/config.js +1 -1
- package/dist/config/defaults.d.ts +18 -0
- package/dist/config/defaults.js +75 -38
- package/dist/config/env-substitution.d.ts +35 -0
- package/dist/config/env-vars.d.ts +2 -0
- package/dist/config/env-vars.js +8 -4
- package/dist/config/group-policy.d.ts +44 -0
- package/dist/config/group-policy.js +28 -14
- package/dist/config/includes.d.ts +32 -0
- package/dist/config/includes.js +1 -1
- package/dist/config/io.d.ts +36 -0
- package/dist/config/io.js +37 -23
- package/dist/config/legacy-migrate.d.ts +5 -0
- package/dist/config/legacy-migrate.js +2 -1
- package/dist/config/legacy.d.ts +6 -0
- package/dist/config/legacy.js +6 -3
- package/dist/config/legacy.migrations.d.ts +1 -0
- package/dist/config/legacy.migrations.part-1.d.ts +2 -0
- package/dist/config/legacy.migrations.part-1.js +66 -33
- package/dist/config/legacy.migrations.part-2.d.ts +2 -0
- package/dist/config/legacy.migrations.part-2.js +36 -18
- package/dist/config/legacy.migrations.part-3.d.ts +2 -0
- package/dist/config/legacy.migrations.part-3.js +20 -10
- package/dist/config/legacy.rules.d.ts +2 -0
- package/dist/config/legacy.shared.d.ts +18 -0
- package/dist/config/legacy.shared.js +22 -11
- package/dist/config/logging.d.ts +8 -0
- package/dist/config/markdown-tables.d.ts +7 -0
- package/dist/config/markdown-tables.js +8 -4
- package/dist/config/merge-config.d.ts +7 -0
- package/dist/config/merge-patch.d.ts +1 -0
- package/dist/config/normalize-paths.d.ts +8 -0
- package/dist/config/normalize-paths.js +16 -8
- package/dist/config/paths.d.ts +57 -0
- package/dist/config/paths.js +79 -59
- package/dist/config/plugin-auto-enable.d.ts +10 -0
- package/dist/config/plugin-auto-enable.js +79 -40
- package/dist/config/port-defaults.d.ts +13 -0
- package/dist/config/port-defaults.js +2 -1
- package/dist/config/runtime-overrides.d.ts +15 -0
- package/dist/config/runtime-overrides.js +6 -3
- package/dist/config/schema.d.ts +39 -0
- package/dist/config/schema.js +53 -29
- package/dist/config/sessions/group.d.ts +11 -0
- package/dist/config/sessions/group.js +12 -6
- package/dist/config/sessions/main-session.d.ts +43 -0
- package/dist/config/sessions/main-session.js +10 -5
- package/dist/config/sessions/metadata.d.ts +16 -0
- package/dist/config/sessions/metadata.js +50 -25
- package/dist/config/sessions/paths.d.ts +11 -0
- package/dist/config/sessions/paths.js +4 -2
- package/dist/config/sessions/reset.d.ts +43 -0
- package/dist/config/sessions/reset.js +29 -15
- package/dist/config/sessions/session-key.d.ts +8 -0
- package/dist/config/sessions/session-key.js +10 -5
- package/dist/config/sessions/store.d.ts +38 -0
- package/dist/config/sessions/store.js +32 -15
- package/dist/config/sessions/transcript.d.ts +18 -0
- package/dist/config/sessions/transcript.js +20 -12
- package/dist/config/sessions/types.d.ts +146 -0
- package/dist/config/sessions/types.js +2 -1
- package/dist/config/sessions.d.ts +9 -0
- package/dist/config/talk.d.ts +11 -0
- package/dist/config/talk.js +6 -3
- package/dist/config/telegram-custom-commands.d.ts +24 -0
- package/dist/config/telegram-custom-commands.js +2 -1
- package/dist/config/types.agent-defaults.d.ts +248 -0
- package/dist/config/types.agents.d.ts +75 -0
- package/dist/config/types.approvals.d.ts +26 -0
- package/dist/config/types.auth.d.ts +28 -0
- package/dist/config/types.base.d.ts +149 -0
- package/dist/config/types.browser.d.ts +41 -0
- package/dist/config/types.channels.d.ts +34 -0
- package/dist/config/types.cron.d.ts +5 -0
- package/dist/config/types.d.ts +28 -0
- package/dist/config/types.discord.d.ts +145 -0
- package/dist/config/types.gateway.d.ts +220 -0
- package/dist/config/types.googlechat.d.ts +98 -0
- package/dist/config/types.hooks.d.ts +106 -0
- package/dist/config/types.imessage.d.ts +67 -0
- package/dist/config/types.js +1 -1
- package/dist/config/types.messages.d.ts +104 -0
- package/dist/config/types.models.d.ts +47 -0
- package/dist/config/types.msteams.d.ts +94 -0
- package/dist/config/types.node-host.d.ts +10 -0
- package/dist/config/types.openclaw.d.ts +106 -0
- package/dist/config/types.openclaw.js +1 -0
- package/dist/config/types.plugins.d.ts +32 -0
- package/dist/config/types.queue.d.ts +13 -0
- package/dist/config/types.sandbox.d.ts +76 -0
- package/dist/config/types.signal.d.ts +84 -0
- package/dist/config/types.skills.d.ts +28 -0
- package/dist/config/types.slack.d.ts +136 -0
- package/dist/config/types.telegram.d.ts +148 -0
- package/dist/config/types.tools.d.ts +435 -0
- package/dist/config/types.tts.d.ts +78 -0
- package/dist/config/types.whatsapp.d.ts +147 -0
- package/dist/config/validation.d.ts +17 -0
- package/dist/config/validation.js +32 -17
- package/dist/config/version.d.ts +8 -0
- package/dist/config/version.js +18 -11
- package/dist/config/zod-schema.agent-defaults.d.ts +242 -0
- package/dist/config/zod-schema.agent-runtime.d.ts +812 -0
- package/dist/config/zod-schema.agent-runtime.js +7 -3
- package/dist/config/zod-schema.agents.d.ts +487 -0
- package/dist/config/zod-schema.approvals.d.ts +15 -0
- package/dist/config/zod-schema.channels.d.ts +6 -0
- package/dist/config/zod-schema.core.d.ts +647 -0
- package/dist/config/zod-schema.core.js +4 -2
- package/dist/config/zod-schema.d.ts +2989 -0
- package/dist/config/zod-schema.hooks.d.ts +78 -0
- package/dist/config/zod-schema.js +12 -7
- package/dist/config/zod-schema.providers-core.d.ts +2671 -0
- package/dist/config/zod-schema.providers-core.js +19 -7
- package/dist/config/zod-schema.providers-whatsapp.d.ts +228 -0
- package/dist/config/zod-schema.providers-whatsapp.js +9 -5
- package/dist/config/zod-schema.providers.d.ts +1620 -0
- package/dist/config/zod-schema.providers.js +2 -2
- package/dist/config/zod-schema.session.d.ts +171 -0
- package/dist/control-ui/apple-touch-icon.png +0 -0
- package/dist/control-ui/assets/index-BKPyesll.css +1 -0
- package/dist/control-ui/assets/index-kjHVNdSc.js +3898 -0
- package/dist/control-ui/assets/index-kjHVNdSc.js.map +1 -0
- package/dist/control-ui/favicon-32.png +0 -0
- package/dist/control-ui/favicon.ico +0 -0
- package/dist/control-ui/favicon.svg +22 -0
- package/dist/control-ui/index.html +17 -0
- package/dist/cron/isolated-agent/delivery-target.d.ts +13 -0
- package/dist/cron/isolated-agent/helpers.d.ts +23 -0
- package/dist/cron/isolated-agent/helpers.js +10 -5
- package/dist/cron/isolated-agent/run.d.ts +19 -0
- package/dist/cron/isolated-agent/run.js +6 -4
- package/dist/cron/isolated-agent/session.d.ts +14 -0
- package/dist/cron/isolated-agent.d.ts +1 -0
- package/dist/cron/normalize.d.ts +9 -0
- package/dist/cron/normalize.js +28 -14
- package/dist/cron/parse.d.ts +1 -0
- package/dist/cron/parse.js +10 -5
- package/dist/cron/payload-migration.d.ts +3 -0
- package/dist/cron/payload-migration.js +2 -1
- package/dist/cron/run-log.d.ts +23 -0
- package/dist/cron/run-log.js +17 -9
- package/dist/cron/schedule.d.ts +2 -0
- package/dist/cron/schedule.js +4 -2
- package/dist/cron/service/jobs.d.ts +13 -0
- package/dist/cron/service/jobs.js +51 -26
- package/dist/cron/service/locked.d.ts +2 -0
- package/dist/cron/service/normalize.d.ts +17 -0
- package/dist/cron/service/normalize.js +22 -11
- package/dist/cron/service/ops.d.ts +39 -0
- package/dist/cron/service/ops.js +8 -5
- package/dist/cron/service/state.d.ts +86 -0
- package/dist/cron/service/store.d.ts +4 -0
- package/dist/cron/service/store.js +10 -5
- package/dist/cron/service/timer.d.ts +18 -0
- package/dist/cron/service/timer.js +24 -12
- package/dist/cron/service.d.ts +44 -0
- package/dist/cron/store.d.ts +6 -0
- package/dist/cron/store.js +3 -2
- package/dist/cron/types.d.ts +93 -0
- package/dist/daemon/constants.d.ts +30 -0
- package/dist/daemon/constants.js +33 -32
- package/dist/daemon/diagnostics.d.ts +1 -0
- package/dist/daemon/diagnostics.js +4 -2
- package/dist/daemon/inspect.d.ts +13 -0
- package/dist/daemon/inspect.js +112 -48
- package/dist/daemon/launchd-plist.d.ts +15 -0
- package/dist/daemon/launchd-plist.js +8 -4
- package/dist/daemon/launchd.d.ts +76 -0
- package/dist/daemon/launchd.js +24 -16
- package/dist/daemon/node-service.d.ts +2 -0
- package/dist/daemon/node-service.js +15 -15
- package/dist/daemon/paths.d.ts +3 -0
- package/dist/daemon/paths.js +9 -6
- package/dist/daemon/program-args.d.ts +23 -0
- package/dist/daemon/program-args.js +23 -12
- package/dist/daemon/runtime-parse.d.ts +1 -0
- package/dist/daemon/runtime-parse.js +6 -3
- package/dist/daemon/runtime-paths.d.ts +27 -0
- package/dist/daemon/runtime-paths.js +8 -4
- package/dist/daemon/schtasks.d.ts +39 -0
- package/dist/daemon/schtasks.js +40 -23
- package/dist/daemon/service-audit.d.ts +37 -0
- package/dist/daemon/service-audit.js +28 -15
- package/dist/daemon/service-env.d.ts +27 -0
- package/dist/daemon/service-env.js +43 -30
- package/dist/daemon/service-runtime.d.ts +13 -0
- package/dist/daemon/service.d.ts +38 -0
- package/dist/daemon/systemd-hints.d.ts +4 -0
- package/dist/daemon/systemd-hints.js +3 -2
- package/dist/daemon/systemd-linger.d.ts +15 -0
- package/dist/daemon/systemd-linger.js +4 -2
- package/dist/daemon/systemd-unit.d.ts +11 -0
- package/dist/daemon/systemd-unit.js +17 -9
- package/dist/daemon/systemd.d.ts +57 -0
- package/dist/daemon/systemd.js +43 -25
- package/dist/discord/accounts.d.ts +17 -0
- package/dist/discord/accounts.js +9 -5
- package/dist/discord/api.d.ts +11 -0
- package/dist/discord/api.js +12 -6
- package/dist/discord/audit.d.ts +29 -0
- package/dist/discord/audit.js +17 -9
- package/dist/discord/chunk.d.ts +20 -0
- package/dist/discord/chunk.js +34 -17
- package/dist/discord/directory-live.d.ts +4 -0
- package/dist/discord/directory-live.js +14 -7
- package/dist/discord/gateway-logging.d.ts +8 -0
- package/dist/discord/gateway-logging.js +6 -3
- package/dist/discord/index.d.ts +2 -0
- package/dist/discord/monitor/allow-list.d.ts +126 -0
- package/dist/discord/monitor/allow-list.js +61 -33
- package/dist/discord/monitor/exec-approvals.d.ts +70 -0
- package/dist/discord/monitor/exec-approvals.js +31 -16
- package/dist/discord/monitor/format.d.ts +13 -0
- package/dist/discord/monitor/format.js +6 -3
- package/dist/discord/monitor/listeners.d.ts +49 -0
- package/dist/discord/monitor/listeners.js +19 -10
- package/dist/discord/monitor/message-handler.d.ts +26 -0
- package/dist/discord/monitor/message-handler.js +16 -8
- package/dist/discord/monitor/message-handler.preflight.d.ts +3 -0
- package/dist/discord/monitor/message-handler.preflight.js +58 -28
- package/dist/discord/monitor/message-handler.preflight.types.d.ts +86 -0
- package/dist/discord/monitor/message-handler.process.d.ts +2 -0
- package/dist/discord/monitor/message-handler.process.js +21 -18
- package/dist/discord/monitor/message-utils.d.ts +31 -0
- package/dist/discord/monitor/message-utils.js +38 -19
- package/dist/discord/monitor/native-command.d.ts +20 -0
- package/dist/discord/monitor/native-command.js +50 -32
- package/dist/discord/monitor/presence-cache.d.ts +9 -0
- package/dist/discord/monitor/provider.d.ts +13 -0
- package/dist/discord/monitor/provider.js +44 -23
- package/dist/discord/monitor/reply-context.d.ts +13 -0
- package/dist/discord/monitor/reply-context.js +15 -8
- package/dist/discord/monitor/reply-delivery.d.ts +18 -0
- package/dist/discord/monitor/reply-delivery.js +8 -4
- package/dist/discord/monitor/sender-identity.d.ts +31 -0
- package/dist/discord/monitor/sender-identity.js +45 -0
- package/dist/discord/monitor/system-events.d.ts +2 -0
- package/dist/discord/monitor/threading.d.ts +101 -0
- package/dist/discord/monitor/threading.js +32 -16
- package/dist/discord/monitor/typing.d.ts +5 -0
- package/dist/discord/monitor/typing.js +2 -1
- package/dist/discord/monitor.d.ts +10 -0
- package/dist/discord/monitor.gateway.d.ts +12 -0
- package/dist/discord/monitor.gateway.js +4 -2
- package/dist/discord/pluralkit.d.ts +26 -0
- package/dist/discord/pluralkit.js +27 -0
- package/dist/discord/probe.d.ts +29 -0
- package/dist/discord/probe.js +12 -6
- package/dist/discord/resolve-channels.d.ts +15 -0
- package/dist/discord/resolve-channels.js +26 -20
- package/dist/discord/resolve-users.d.ts +14 -0
- package/dist/discord/resolve-users.js +18 -9
- package/dist/discord/send.channels.d.ts +17 -0
- package/dist/discord/send.channels.js +26 -13
- package/dist/discord/send.d.ts +8 -0
- package/dist/discord/send.emojis-stickers.d.ts +4 -0
- package/dist/discord/send.guild.d.ts +24 -0
- package/dist/discord/send.messages.d.ts +18 -0
- package/dist/discord/send.messages.js +12 -6
- package/dist/discord/send.outbound.d.ts +22 -0
- package/dist/discord/send.permissions.d.ts +4 -0
- package/dist/discord/send.permissions.js +7 -4
- package/dist/discord/send.reactions.d.ts +15 -0
- package/dist/discord/send.reactions.js +8 -4
- package/dist/discord/send.shared.d.ts +69 -0
- package/dist/discord/send.shared.js +16 -8
- package/dist/discord/send.types.d.ts +130 -0
- package/dist/discord/send.types.js +2 -1
- package/dist/discord/targets.d.ts +18 -0
- package/dist/discord/targets.js +4 -2
- package/dist/discord/token.d.ts +11 -0
- package/dist/discord/token.js +10 -5
- package/dist/entry.js +23 -14
- package/dist/gateway/assistant-identity.d.ts +12 -0
- package/dist/gateway/assistant-identity.js +18 -9
- package/dist/gateway/auth.d.ts +36 -0
- package/dist/gateway/auth.js +40 -20
- package/dist/gateway/boot.d.ts +16 -0
- package/dist/gateway/boot.js +5 -3
- package/dist/gateway/call.d.ts +40 -0
- package/dist/gateway/call.js +13 -7
- package/dist/gateway/chat-abort.d.ts +44 -0
- package/dist/gateway/chat-abort.js +10 -5
- package/dist/gateway/chat-attachments.d.ts +35 -0
- package/dist/gateway/chat-attachments.js +14 -7
- package/dist/gateway/chat-sanitize.d.ts +3 -0
- package/dist/gateway/chat-sanitize.js +24 -12
- package/dist/gateway/client.d.ts +61 -0
- package/dist/gateway/client.js +36 -19
- package/dist/gateway/config-reload.d.ts +38 -0
- package/dist/gateway/config-reload.js +20 -10
- package/dist/gateway/control-ui-shared.d.ts +9 -0
- package/dist/gateway/control-ui-shared.js +20 -10
- package/dist/gateway/control-ui.d.ts +25 -0
- package/dist/gateway/control-ui.js +27 -15
- package/dist/gateway/device-auth.d.ts +12 -0
- package/dist/gateway/exec-approval-manager.d.ts +27 -0
- package/dist/gateway/exec-approval-manager.js +2 -1
- package/dist/gateway/hooks-mapping.d.ts +62 -0
- package/dist/gateway/hooks-mapping.js +53 -27
- package/dist/gateway/hooks.d.ts +59 -0
- package/dist/gateway/hooks.js +29 -14
- package/dist/gateway/http-common.d.ts +9 -0
- package/dist/gateway/http-utils.d.ts +15 -0
- package/dist/gateway/http-utils.js +21 -11
- package/dist/gateway/live-image-probe.d.ts +1 -0
- package/dist/gateway/live-image-probe.js +10 -5
- package/dist/gateway/net.d.ts +35 -0
- package/dist/gateway/net.js +57 -29
- package/dist/gateway/node-command-policy.d.ts +13 -0
- package/dist/gateway/node-command-policy.js +26 -13
- package/dist/gateway/node-registry.d.ts +60 -0
- package/dist/gateway/node-registry.js +10 -5
- package/dist/gateway/open-responses.schema.d.ts +765 -0
- package/dist/gateway/openai-http.d.ts +9 -0
- package/dist/gateway/openai-http.js +35 -19
- package/dist/gateway/openresponses-http.d.ts +23 -0
- package/dist/gateway/openresponses-http.js +42 -24
- package/dist/gateway/probe.d.ts +26 -0
- package/dist/gateway/probe.js +4 -2
- package/dist/gateway/protocol/client-info.d.ts +53 -0
- package/dist/gateway/protocol/client-info.js +9 -7
- package/dist/gateway/protocol/index.d.ts +607 -0
- package/dist/gateway/protocol/index.js +2 -1
- package/dist/gateway/protocol/schema/agent.d.ts +71 -0
- package/dist/gateway/protocol/schema/agents-models-skills.d.ts +61 -0
- package/dist/gateway/protocol/schema/channels.d.ts +105 -0
- package/dist/gateway/protocol/schema/config.d.ts +51 -0
- package/dist/gateway/protocol/schema/cron.d.ts +327 -0
- package/dist/gateway/protocol/schema/devices.d.ts +38 -0
- package/dist/gateway/protocol/schema/error-codes.d.ts +14 -0
- package/dist/gateway/protocol/schema/exec-approvals.d.ts +162 -0
- package/dist/gateway/protocol/schema/frames.d.ts +163 -0
- package/dist/gateway/protocol/schema/logs-chat.d.ts +45 -0
- package/dist/gateway/protocol/schema/nodes.d.ts +64 -0
- package/dist/gateway/protocol/schema/primitives.d.ts +4 -0
- package/dist/gateway/protocol/schema/protocol-schemas.d.ts +3 -0
- package/dist/gateway/protocol/schema/protocol-schemas.js +1 -1
- package/dist/gateway/protocol/schema/sessions.d.ts +62 -0
- package/dist/gateway/protocol/schema/snapshot.d.ts +63 -0
- package/dist/gateway/protocol/schema/types.d.ts +108 -0
- package/dist/gateway/protocol/schema/wizard.d.ts +86 -0
- package/dist/gateway/protocol/schema.d.ts +16 -0
- package/dist/gateway/server/__tests__/test-utils.d.ts +2 -0
- package/dist/gateway/server/close-reason.d.ts +1 -0
- package/dist/gateway/server/close-reason.js +4 -2
- package/dist/gateway/server/health-state.d.ts +11 -0
- package/dist/gateway/server/health-state.js +1 -1
- package/dist/gateway/server/hooks.d.ts +12 -0
- package/dist/gateway/server/http-listen.d.ts +6 -0
- package/dist/gateway/server/plugins-http.d.ts +10 -0
- package/dist/gateway/server/plugins-http.js +4 -2
- package/dist/gateway/server/tls.d.ts +7 -0
- package/dist/gateway/server/ws-connection/message-handler.d.ts +42 -0
- package/dist/gateway/server/ws-connection/message-handler.js +22 -13
- package/dist/gateway/server/ws-connection.d.ts +30 -0
- package/dist/gateway/server/ws-connection.js +6 -3
- package/dist/gateway/server/ws-types.d.ts +8 -0
- package/dist/gateway/server-broadcast.d.ts +12 -0
- package/dist/gateway/server-broadcast.js +10 -5
- package/dist/gateway/server-browser.d.ts +4 -0
- package/dist/gateway/server-browser.js +5 -3
- package/dist/gateway/server-channels.d.ts +24 -0
- package/dist/gateway/server-channels.js +14 -7
- package/dist/gateway/server-chat.d.ts +34 -0
- package/dist/gateway/server-chat.js +20 -10
- package/dist/gateway/server-close.d.ts +47 -0
- package/dist/gateway/server-constants.d.ts +10 -0
- package/dist/gateway/server-constants.js +6 -4
- package/dist/gateway/server-cron.d.ts +15 -0
- package/dist/gateway/server-cron.js +1 -1
- package/dist/gateway/server-discovery-runtime.d.ts +20 -0
- package/dist/gateway/server-discovery-runtime.js +12 -4
- package/dist/gateway/server-discovery.d.ts +16 -0
- package/dist/gateway/server-discovery.js +22 -14
- package/dist/gateway/server-http.d.ts +51 -0
- package/dist/gateway/server-http.js +29 -16
- package/dist/gateway/server-lanes.d.ts +2 -0
- package/dist/gateway/server-maintenance.d.ts +36 -0
- package/dist/gateway/server-maintenance.js +8 -5
- package/dist/gateway/server-methods/agent-job.d.ts +13 -0
- package/dist/gateway/server-methods/agent-job.js +21 -13
- package/dist/gateway/server-methods/agent-timestamp.d.ts +27 -0
- package/dist/gateway/server-methods/agent-timestamp.js +62 -0
- package/dist/gateway/server-methods/agent.d.ts +2 -0
- package/dist/gateway/server-methods/agent.js +10 -4
- package/dist/gateway/server-methods/agents.d.ts +2 -0
- package/dist/gateway/server-methods/browser.d.ts +2 -0
- package/dist/gateway/server-methods/browser.js +24 -12
- package/dist/gateway/server-methods/channels.d.ts +19 -0
- package/dist/gateway/server-methods/channels.js +5 -3
- package/dist/gateway/server-methods/chat.d.ts +2 -0
- package/dist/gateway/server-methods/chat.js +18 -8
- package/dist/gateway/server-methods/config.d.ts +2 -0
- package/dist/gateway/server-methods/config.js +8 -6
- package/dist/gateway/server-methods/connect.d.ts +2 -0
- package/dist/gateway/server-methods/cron.d.ts +2 -0
- package/dist/gateway/server-methods/devices.d.ts +2 -0
- package/dist/gateway/server-methods/exec-approval.d.ts +6 -0
- package/dist/gateway/server-methods/exec-approvals.d.ts +2 -0
- package/dist/gateway/server-methods/exec-approvals.js +4 -2
- package/dist/gateway/server-methods/health.d.ts +2 -0
- package/dist/gateway/server-methods/logs.d.ts +2 -0
- package/dist/gateway/server-methods/logs.js +8 -5
- package/dist/gateway/server-methods/models.d.ts +2 -0
- package/dist/gateway/server-methods/nodes.d.ts +2 -0
- package/dist/gateway/server-methods/nodes.helpers.d.ts +14 -0
- package/dist/gateway/server-methods/nodes.helpers.js +5 -3
- package/dist/gateway/server-methods/nodes.js +15 -9
- package/dist/gateway/server-methods/send.d.ts +2 -0
- package/dist/gateway/server-methods/send.js +17 -10
- package/dist/gateway/server-methods/sessions.d.ts +2 -0
- package/dist/gateway/server-methods/sessions.js +8 -4
- package/dist/gateway/server-methods/skills.d.ts +2 -0
- package/dist/gateway/server-methods/skills.js +20 -11
- package/dist/gateway/server-methods/system.d.ts +2 -0
- package/dist/gateway/server-methods/talk.d.ts +2 -0
- package/dist/gateway/server-methods/tts.d.ts +2 -0
- package/dist/gateway/server-methods/types.d.ts +87 -0
- package/dist/gateway/server-methods/update.d.ts +2 -0
- package/dist/gateway/server-methods/update.js +3 -3
- package/dist/gateway/server-methods/usage.d.ts +2 -0
- package/dist/gateway/server-methods/usage.js +11 -6
- package/dist/gateway/server-methods/voicewake.d.ts +2 -0
- package/dist/gateway/server-methods/web.d.ts +2 -0
- package/dist/gateway/server-methods/wizard.d.ts +2 -0
- package/dist/gateway/server-methods-list.d.ts +2 -0
- package/dist/gateway/server-methods.d.ts +5 -0
- package/dist/gateway/server-methods.js +14 -7
- package/dist/gateway/server-mobile-nodes.d.ts +2 -0
- package/dist/gateway/server-mobile-nodes.js +2 -1
- package/dist/gateway/server-model-catalog.d.ts +4 -0
- package/dist/gateway/server-node-events-types.d.ts +36 -0
- package/dist/gateway/server-node-events.d.ts +2 -0
- package/dist/gateway/server-node-events.js +30 -15
- package/dist/gateway/server-node-subscriptions.d.ts +18 -0
- package/dist/gateway/server-node-subscriptions.js +22 -11
- package/dist/gateway/server-plugins.d.ts +17 -0
- package/dist/gateway/server-plugins.js +2 -2
- package/dist/gateway/server-reload-handlers.d.ts +46 -0
- package/dist/gateway/server-reload-handlers.js +7 -7
- package/dist/gateway/server-restart-sentinel.d.ts +5 -0
- package/dist/gateway/server-restart-sentinel.js +2 -1
- package/dist/gateway/server-runtime-config.d.ts +28 -0
- package/dist/gateway/server-runtime-config.js +3 -3
- package/dist/gateway/server-runtime-state.d.ts +64 -0
- package/dist/gateway/server-runtime-state.js +5 -4
- package/dist/gateway/server-session-key.d.ts +1 -0
- package/dist/gateway/server-session-key.js +2 -1
- package/dist/gateway/server-shared.d.ts +7 -0
- package/dist/gateway/server-startup-log.d.ts +12 -0
- package/dist/gateway/server-startup.d.ts +29 -0
- package/dist/gateway/server-startup.js +7 -7
- package/dist/gateway/server-tailscale.d.ts +10 -0
- package/dist/gateway/server-utils.d.ts +2 -0
- package/dist/gateway/server-utils.js +4 -2
- package/dist/gateway/server-wizard-sessions.d.ts +6 -0
- package/dist/gateway/server-wizard-sessions.js +6 -3
- package/dist/gateway/server-ws-runtime.d.ts +28 -0
- package/dist/gateway/server.d.ts +3 -0
- package/dist/gateway/server.impl.d.ts +54 -0
- package/dist/gateway/server.impl.js +27 -24
- package/dist/gateway/session-utils.d.ts +53 -0
- package/dist/gateway/session-utils.fs.d.ts +11 -0
- package/dist/gateway/session-utils.fs.js +69 -35
- package/dist/gateway/session-utils.js +71 -36
- package/dist/gateway/session-utils.types.d.ts +79 -0
- package/dist/gateway/sessions-patch.d.ts +17 -0
- package/dist/gateway/sessions-patch.js +39 -20
- package/dist/gateway/sessions-resolve.d.ts +13 -0
- package/dist/gateway/test-helpers.e2e.d.ts +22 -0
- package/dist/gateway/test-helpers.e2e.js +8 -4
- package/dist/gateway/test-helpers.mocks.d.ts +62 -0
- package/dist/gateway/test-helpers.mocks.js +36 -22
- package/dist/gateway/test-helpers.openai-mock.d.ts +6 -0
- package/dist/gateway/test-helpers.openai-mock.js +14 -7
- package/dist/gateway/test-helpers.server.d.ts +79 -0
- package/dist/gateway/test-helpers.server.js +71 -50
- package/dist/gateway/tools-invoke-http.d.ts +7 -0
- package/dist/gateway/tools-invoke-http.js +59 -14
- package/dist/gateway/ws-log.d.ts +4 -0
- package/dist/gateway/ws-log.js +88 -45
- package/dist/gateway/ws-logging.d.ts +4 -0
- package/dist/globals.js +6 -3
- package/dist/hooks/bundled/boot-md/HOOK.md +19 -0
- package/dist/hooks/bundled/boot-md/handler.d.ts +3 -0
- package/dist/hooks/bundled/command-logger/HOOK.md +122 -0
- package/dist/hooks/bundled/command-logger/handler.d.ts +30 -0
- package/dist/hooks/bundled/command-logger/handler.js +3 -2
- package/dist/hooks/bundled/session-memory/HOOK.md +109 -0
- package/dist/hooks/bundled/session-memory/handler.d.ts +12 -0
- package/dist/hooks/bundled/session-memory/handler.js +20 -13
- package/dist/hooks/bundled/soul-evil/HOOK.md +71 -0
- package/dist/hooks/bundled/soul-evil/handler.d.ts +3 -0
- package/dist/hooks/bundled/soul-evil/handler.js +10 -5
- package/dist/hooks/bundled-dir.d.ts +1 -0
- package/dist/hooks/bundled-dir.js +10 -6
- package/dist/hooks/config.d.ts +12 -0
- package/dist/hooks/config.js +30 -16
- package/dist/hooks/frontmatter.d.ts +5 -0
- package/dist/hooks/frontmatter.js +31 -13
- package/dist/hooks/gmail-ops.d.ts +41 -0
- package/dist/hooks/gmail-ops.js +11 -7
- package/dist/hooks/gmail-setup-utils.d.ts +15 -0
- package/dist/hooks/gmail-setup-utils.js +47 -24
- package/dist/hooks/gmail-watcher.d.ts +25 -0
- package/dist/hooks/gmail-watcher.js +12 -7
- package/dist/hooks/gmail.d.ts +69 -0
- package/dist/hooks/gmail.js +6 -3
- package/dist/hooks/hooks-status.d.ts +57 -0
- package/dist/hooks/hooks-status.js +12 -7
- package/dist/hooks/hooks.d.ts +5 -0
- package/dist/hooks/install.d.ts +42 -0
- package/dist/hooks/install.js +15 -12
- package/dist/hooks/installs.d.ts +6 -0
- package/dist/hooks/internal-hooks.d.ts +95 -0
- package/dist/hooks/internal-hooks.js +7 -4
- package/dist/hooks/llm-slug-generator.d.ts +11 -0
- package/dist/hooks/llm-slug-generator.js +2 -2
- package/dist/hooks/loader.d.ts +27 -0
- package/dist/hooks/loader.js +4 -4
- package/dist/hooks/plugin-hooks.d.ts +9 -0
- package/dist/hooks/plugin-hooks.js +4 -3
- package/dist/hooks/soul-evil.d.ts +42 -0
- package/dist/hooks/soul-evil.js +32 -16
- package/dist/hooks/types.d.ts +62 -0
- package/dist/hooks/workspace.d.ts +20 -0
- package/dist/hooks/workspace.js +33 -21
- package/dist/imessage/accounts.d.ts +16 -0
- package/dist/imessage/accounts.js +9 -5
- package/dist/imessage/client.d.ts +46 -0
- package/dist/imessage/client.js +20 -10
- package/dist/imessage/index.d.ts +3 -0
- package/dist/imessage/monitor/deliver.d.ts +12 -0
- package/dist/imessage/monitor/deliver.js +2 -1
- package/dist/imessage/monitor/monitor-provider.d.ts +2 -0
- package/dist/imessage/monitor/monitor-provider.js +37 -21
- package/dist/imessage/monitor/runtime.d.ts +4 -0
- package/dist/imessage/monitor/types.d.ts +37 -0
- package/dist/imessage/monitor.d.ts +2 -0
- package/dist/imessage/probe.d.ts +12 -0
- package/dist/imessage/probe.js +2 -1
- package/dist/imessage/send.d.ts +18 -0
- package/dist/imessage/send.js +8 -5
- package/dist/imessage/targets.d.ts +39 -0
- package/dist/imessage/targets.js +46 -23
- package/dist/index.js +5 -5
- package/dist/infra/agent-events.d.ts +21 -0
- package/dist/infra/agent-events.js +2 -1
- package/dist/infra/archive.d.ts +16 -0
- package/dist/infra/archive.js +9 -5
- package/dist/infra/backoff.d.ts +8 -0
- package/dist/infra/backoff.js +3 -2
- package/dist/infra/binaries.d.ts +3 -0
- package/dist/infra/bonjour-ciao.d.ts +1 -0
- package/dist/infra/bonjour-discovery.d.ts +26 -0
- package/dist/infra/bonjour-discovery.js +133 -72
- package/dist/infra/bonjour-errors.d.ts +1 -0
- package/dist/infra/bonjour.d.ts +19 -0
- package/dist/infra/bonjour.js +21 -14
- package/dist/infra/brew.d.ts +8 -0
- package/dist/infra/brew.js +8 -4
- package/dist/infra/canvas-host-url.d.ts +11 -0
- package/dist/infra/canvas-host-url.js +22 -11
- package/dist/infra/channel-activity.d.ts +18 -0
- package/dist/infra/channel-activity.js +6 -3
- package/dist/infra/channel-summary.d.ts +7 -0
- package/dist/infra/channel-summary.js +26 -13
- package/dist/infra/channels-status-issues.d.ts +2 -0
- package/dist/infra/channels-status-issues.js +4 -2
- package/dist/infra/clipboard.d.ts +1 -0
- package/dist/infra/clipboard.js +2 -1
- package/dist/infra/control-ui-assets.d.ts +11 -0
- package/dist/infra/control-ui-assets.js +23 -10
- package/dist/infra/dedupe.d.ts +11 -0
- package/dist/infra/dedupe.js +4 -2
- package/dist/infra/device-auth-store.d.ts +23 -0
- package/dist/infra/device-auth-store.js +21 -11
- package/dist/infra/device-identity.d.ts +11 -0
- package/dist/infra/device-identity.js +1 -1
- package/dist/infra/device-pairing.d.ts +96 -0
- package/dist/infra/device-pairing.js +58 -31
- package/dist/infra/diagnostic-events.d.ts +121 -0
- package/dist/infra/diagnostic-flags.d.ts +4 -0
- package/dist/infra/diagnostic-flags.js +23 -12
- package/dist/infra/dotenv.d.ts +3 -0
- package/dist/infra/dotenv.js +4 -3
- package/dist/infra/env-file.d.ts +9 -0
- package/dist/infra/env-file.js +4 -2
- package/dist/infra/env.d.ts +11 -0
- package/dist/infra/env.js +10 -5
- package/dist/infra/errors.d.ts +3 -0
- package/dist/infra/errors.js +8 -4
- package/dist/infra/exec-approval-forwarder.d.ts +44 -0
- package/dist/infra/exec-approval-forwarder.js +52 -26
- package/dist/infra/exec-approvals.d.ts +153 -0
- package/dist/infra/exec-approvals.js +112 -57
- package/dist/infra/exec-host.d.ts +37 -0
- package/dist/infra/exec-host.js +6 -3
- package/dist/infra/exec-safety.d.ts +1 -0
- package/dist/infra/exec-safety.js +20 -10
- package/dist/infra/fetch.d.ts +2 -0
- package/dist/infra/fetch.js +8 -4
- package/dist/infra/format-duration.d.ts +10 -0
- package/dist/infra/format-duration.js +6 -3
- package/dist/infra/fs-safe.d.ts +16 -0
- package/dist/infra/fs-safe.js +2 -1
- package/dist/infra/gateway-lock.d.ts +18 -0
- package/dist/infra/gateway-lock.js +24 -16
- package/dist/infra/git-commit.d.ts +4 -0
- package/dist/infra/git-commit.js +8 -4
- package/dist/infra/heartbeat-events.d.ts +20 -0
- package/dist/infra/heartbeat-runner.d.ts +44 -0
- package/dist/infra/heartbeat-runner.js +68 -35
- package/dist/infra/heartbeat-visibility.d.ts +17 -0
- package/dist/infra/heartbeat-wake.d.ts +20 -0
- package/dist/infra/heartbeat-wake.js +6 -3
- package/dist/infra/is-main.d.ts +8 -0
- package/dist/infra/is-main.js +2 -1
- package/dist/infra/json-file.d.ts +2 -0
- package/dist/infra/json-file.js +2 -1
- package/dist/infra/machine-name.d.ts +1 -0
- package/dist/infra/machine-name.js +7 -4
- package/dist/infra/net/ssrf.d.ts +24 -0
- package/dist/infra/net/ssrf.js +39 -20
- package/dist/infra/node-pairing.d.ts +62 -0
- package/dist/infra/node-pairing.js +14 -8
- package/dist/infra/node-shell.d.ts +1 -0
- package/dist/infra/openclaw-root.d.ts +5 -0
- package/dist/infra/openclaw-root.js +60 -0
- package/dist/infra/os-summary.d.ts +7 -0
- package/dist/infra/os-summary.js +4 -2
- package/dist/infra/outbound/agent-delivery.d.ts +32 -0
- package/dist/infra/outbound/agent-delivery.js +4 -2
- package/dist/infra/outbound/channel-adapters.d.ts +6 -0
- package/dist/infra/outbound/channel-adapters.js +2 -1
- package/dist/infra/outbound/channel-selection.d.ts +11 -0
- package/dist/infra/outbound/channel-selection.js +12 -6
- package/dist/infra/outbound/channel-target.d.ts +6 -0
- package/dist/infra/outbound/channel-target.js +2 -1
- package/dist/infra/outbound/deliver.d.ts +69 -0
- package/dist/infra/outbound/deliver.js +9 -5
- package/dist/infra/outbound/directory-cache.d.ts +21 -0
- package/dist/infra/outbound/directory-cache.js +6 -3
- package/dist/infra/outbound/envelope.d.ts +16 -0
- package/dist/infra/outbound/format.d.ts +39 -0
- package/dist/infra/outbound/format.js +12 -6
- package/dist/infra/outbound/message-action-runner.d.ts +73 -0
- package/dist/infra/outbound/message-action-runner.js +61 -34
- package/dist/infra/outbound/message-action-spec.d.ts +5 -0
- package/dist/infra/outbound/message-action-spec.js +10 -5
- package/dist/infra/outbound/message.d.ts +76 -0
- package/dist/infra/outbound/message.js +2 -1
- package/dist/infra/outbound/outbound-policy.d.ts +31 -0
- package/dist/infra/outbound/outbound-policy.js +33 -17
- package/dist/infra/outbound/outbound-send-service.d.ts +58 -0
- package/dist/infra/outbound/outbound-send-service.js +2 -1
- package/dist/infra/outbound/outbound-session.d.ts +31 -0
- package/dist/infra/outbound/outbound-session.js +73 -37
- package/dist/infra/outbound/payloads.d.ts +16 -0
- package/dist/infra/outbound/payloads.js +14 -7
- package/dist/infra/outbound/target-errors.d.ts +6 -0
- package/dist/infra/outbound/target-errors.js +2 -1
- package/dist/infra/outbound/target-normalization.d.ts +4 -0
- package/dist/infra/outbound/target-normalization.js +2 -1
- package/dist/infra/outbound/target-resolver.d.ts +53 -0
- package/dist/infra/outbound/target-resolver.js +63 -32
- package/dist/infra/outbound/targets.d.ts +65 -0
- package/dist/infra/outbound/targets.js +7 -4
- package/dist/infra/path-env.d.ts +13 -0
- package/dist/infra/path-env.js +21 -14
- package/dist/infra/ports-format.d.ts +5 -0
- package/dist/infra/ports-format.js +7 -4
- package/dist/infra/ports-inspect.d.ts +2 -0
- package/dist/infra/ports-inspect.js +57 -29
- package/dist/infra/ports-lsof.d.ts +2 -0
- package/dist/infra/ports-lsof.js +2 -1
- package/dist/infra/ports-types.d.ts +17 -0
- package/dist/infra/ports.d.ts +14 -0
- package/dist/infra/ports.js +8 -5
- package/dist/infra/provider-usage.auth.d.ts +11 -0
- package/dist/infra/provider-usage.auth.js +74 -18
- package/dist/infra/provider-usage.d.ts +4 -0
- package/dist/infra/provider-usage.fetch.antigravity.d.ts +2 -0
- package/dist/infra/provider-usage.fetch.antigravity.js +30 -15
- package/dist/infra/provider-usage.fetch.claude.d.ts +2 -0
- package/dist/infra/provider-usage.fetch.claude.js +17 -9
- package/dist/infra/provider-usage.fetch.codex.d.ts +2 -0
- package/dist/infra/provider-usage.fetch.codex.js +2 -1
- package/dist/infra/provider-usage.fetch.copilot.d.ts +2 -0
- package/dist/infra/provider-usage.fetch.d.ts +7 -0
- package/dist/infra/provider-usage.fetch.gemini.d.ts +2 -0
- package/dist/infra/provider-usage.fetch.gemini.js +10 -5
- package/dist/infra/provider-usage.fetch.minimax.d.ts +2 -0
- package/dist/infra/provider-usage.fetch.minimax.js +31 -16
- package/dist/infra/provider-usage.fetch.shared.d.ts +1 -0
- package/dist/infra/provider-usage.fetch.zai.d.ts +2 -0
- package/dist/infra/provider-usage.fetch.zai.js +6 -3
- package/dist/infra/provider-usage.format.d.ts +13 -0
- package/dist/infra/provider-usage.format.js +22 -11
- package/dist/infra/provider-usage.load.d.ts +12 -0
- package/dist/infra/provider-usage.load.js +11 -3
- package/dist/infra/provider-usage.shared.d.ts +8 -0
- package/dist/infra/provider-usage.shared.js +6 -2
- package/dist/infra/provider-usage.types.d.ts +17 -0
- package/dist/infra/restart-sentinel.d.ts +50 -0
- package/dist/infra/restart-sentinel.js +7 -4
- package/dist/infra/restart.d.ts +28 -0
- package/dist/infra/restart.js +20 -12
- package/dist/infra/retry-policy.d.ts +25 -0
- package/dist/infra/retry-policy.js +2 -1
- package/dist/infra/retry.d.ts +21 -0
- package/dist/infra/retry.js +8 -4
- package/dist/infra/runtime-guard.d.ts +20 -0
- package/dist/infra/runtime-guard.js +16 -9
- package/dist/infra/session-cost-usage.d.ts +36 -0
- package/dist/infra/session-cost-usage.js +32 -17
- package/dist/infra/shell-env.d.ts +33 -0
- package/dist/infra/shell-env.js +20 -12
- package/dist/infra/skills-remote.d.ts +24 -0
- package/dist/infra/skills-remote.js +45 -24
- package/dist/infra/ssh-config.d.ts +12 -0
- package/dist/infra/ssh-config.js +12 -6
- package/dist/infra/ssh-tunnel.d.ts +21 -0
- package/dist/infra/ssh-tunnel.js +23 -8
- package/dist/infra/state-migrations.d.ts +87 -0
- package/dist/infra/state-migrations.fs.d.ts +14 -0
- package/dist/infra/state-migrations.fs.js +5 -3
- package/dist/infra/state-migrations.js +143 -54
- package/dist/infra/system-events.d.ts +16 -0
- package/dist/infra/system-events.js +13 -7
- package/dist/infra/system-presence.d.ts +45 -0
- package/dist/infra/system-presence.js +27 -15
- package/dist/infra/tailnet.d.ts +7 -0
- package/dist/infra/tailnet.js +14 -7
- package/dist/infra/tailscale.d.ts +34 -0
- package/dist/infra/tailscale.js +32 -17
- package/dist/infra/tls/fingerprint.d.ts +1 -0
- package/dist/infra/tls/gateway.d.ts +16 -0
- package/dist/infra/tls/gateway.js +3 -2
- package/dist/infra/transport-ready.d.ts +16 -0
- package/dist/infra/transport-ready.js +8 -4
- package/dist/infra/unhandled-rejections.d.ts +15 -0
- package/dist/infra/unhandled-rejections.js +26 -16
- package/dist/infra/update-channels.d.ts +26 -0
- package/dist/infra/update-channels.js +10 -5
- package/dist/infra/update-check.d.ts +68 -0
- package/dist/infra/update-check.js +23 -12
- package/dist/infra/update-global.d.ts +15 -0
- package/dist/infra/update-global.js +41 -19
- package/dist/infra/update-runner.d.ts +58 -0
- package/dist/infra/update-runner.js +68 -38
- package/dist/infra/update-startup.d.ts +16 -0
- package/dist/infra/update-startup.js +18 -12
- package/dist/infra/voicewake.d.ts +7 -0
- package/dist/infra/voicewake.js +1 -1
- package/dist/infra/warnings.d.ts +1 -0
- package/dist/infra/warnings.js +5 -3
- package/dist/infra/widearea-dns.d.ts +27 -0
- package/dist/infra/widearea-dns.js +38 -17
- package/dist/infra/ws.d.ts +2 -0
- package/dist/infra/ws.js +6 -3
- package/dist/infra/wsl.d.ts +2 -0
- package/dist/infra/wsl.js +2 -1
- package/dist/line/accounts.d.ts +10 -0
- package/dist/line/accounts.js +2 -1
- package/dist/line/auto-reply-delivery.d.ts +49 -0
- package/dist/line/auto-reply-delivery.js +4 -2
- package/dist/line/bot-access.d.ts +15 -0
- package/dist/line/bot-access.js +12 -6
- package/dist/line/bot-handlers.d.ts +13 -0
- package/dist/line/bot-handlers.js +9 -5
- package/dist/line/bot-message-context.d.ts +102 -0
- package/dist/line/bot-message-context.js +2 -1
- package/dist/line/bot.d.ts +24 -0
- package/dist/line/config-schema.d.ts +62 -0
- package/dist/line/download.d.ts +7 -0
- package/dist/line/download.js +2 -2
- package/dist/line/flex-templates.d.ts +195 -0
- package/dist/line/flex-templates.js +4 -2
- package/dist/line/http-registry.d.ts +12 -0
- package/dist/line/http-registry.js +4 -2
- package/dist/line/index.d.ts +16 -0
- package/dist/line/markdown-to-line.d.ts +72 -0
- package/dist/line/markdown-to-line.js +22 -13
- package/dist/line/monitor.d.ts +28 -0
- package/dist/line/monitor.js +14 -11
- package/dist/line/probe.d.ts +2 -0
- package/dist/line/probe.js +4 -2
- package/dist/line/reply-chunks.d.ts +24 -0
- package/dist/line/rich-menu.d.ts +126 -0
- package/dist/line/rich-menu.js +2 -1
- package/dist/line/send.d.ts +118 -0
- package/dist/line/send.js +8 -4
- package/dist/line/signature.d.ts +1 -0
- package/dist/line/template-messages.d.ts +119 -0
- package/dist/line/types.d.ts +121 -0
- package/dist/line/webhook.d.ts +19 -0
- package/dist/line/webhook.js +2 -1
- package/dist/link-understanding/apply.d.ts +10 -0
- package/dist/link-understanding/defaults.d.ts +2 -0
- package/dist/link-understanding/detect.d.ts +3 -0
- package/dist/link-understanding/detect.js +14 -7
- package/dist/link-understanding/format.d.ts +4 -0
- package/dist/link-understanding/format.js +2 -1
- package/dist/link-understanding/index.d.ts +4 -0
- package/dist/link-understanding/runner.d.ts +11 -0
- package/dist/link-understanding/runner.js +15 -8
- package/dist/logger.js +2 -1
- package/dist/logging/config.d.ts +4 -0
- package/dist/logging/config.js +5 -3
- package/dist/logging/console.d.ts +19 -0
- package/dist/logging/console.js +21 -11
- package/dist/logging/diagnostic.d.ts +58 -0
- package/dist/logging/diagnostic.js +12 -6
- package/dist/logging/levels.d.ts +4 -0
- package/dist/logging/logger.d.ts +42 -0
- package/dist/logging/logger.js +18 -12
- package/dist/logging/parse-log-line.d.ts +9 -0
- package/dist/logging/parse-log-line.js +4 -2
- package/dist/logging/redact.d.ts +9 -0
- package/dist/logging/redact.js +18 -9
- package/dist/logging/state.d.ts +17 -0
- package/dist/logging/subsystem.d.ts +16 -0
- package/dist/logging/subsystem.js +36 -19
- package/dist/macos/gateway-daemon.d.ts +2 -0
- package/dist/macos/gateway-daemon.js +14 -9
- package/dist/macos/relay-smoke.d.ts +3 -0
- package/dist/macos/relay-smoke.js +5 -3
- package/dist/macos/relay.d.ts +2 -0
- package/dist/macos/relay.js +8 -7
- package/dist/markdown/code-spans.d.ts +10 -0
- package/dist/markdown/fences.d.ts +10 -0
- package/dist/markdown/fences.js +2 -1
- package/dist/markdown/frontmatter.d.ts +2 -0
- package/dist/markdown/frontmatter.js +20 -10
- package/dist/markdown/ir.d.ts +32 -0
- package/dist/markdown/ir.js +88 -45
- package/dist/markdown/render.d.ts +18 -0
- package/dist/markdown/render.js +70 -37
- package/dist/markdown/tables.d.ts +2 -0
- package/dist/markdown/tables.js +8 -4
- package/dist/media/audio-tags.d.ts +10 -0
- package/dist/media/audio.d.ts +4 -0
- package/dist/media/audio.js +4 -2
- package/dist/media/constants.d.ts +7 -0
- package/dist/media/constants.js +12 -6
- package/dist/media/fetch.d.ts +19 -0
- package/dist/media/fetch.js +16 -8
- package/dist/media/host.d.ts +11 -0
- package/dist/media/host.js +4 -3
- package/dist/media/image-ops.d.ts +39 -0
- package/dist/media/image-ops.js +20 -12
- package/dist/media/input-files.d.ts +76 -0
- package/dist/media/input-files.js +10 -6
- package/dist/media/mime.d.ts +15 -0
- package/dist/media/mime.js +30 -14
- package/dist/media/parse.d.ts +8 -0
- package/dist/media/parse.js +32 -22
- package/dist/media/server.d.ts +5 -0
- package/dist/media/server.js +10 -6
- package/dist/media/store.d.ts +18 -0
- package/dist/media/store.js +8 -5
- package/dist/media-understanding/apply.d.ts +19 -0
- package/dist/media-understanding/apply.js +288 -3
- package/dist/media-understanding/attachments.d.ts +43 -0
- package/dist/media-understanding/attachments.js +42 -23
- package/dist/media-understanding/concurrency.d.ts +1 -0
- package/dist/media-understanding/concurrency.js +4 -2
- package/dist/media-understanding/defaults.d.ts +10 -0
- package/dist/media-understanding/errors.d.ts +6 -0
- package/dist/media-understanding/format.d.ts +7 -0
- package/dist/media-understanding/format.js +6 -3
- package/dist/media-understanding/index.d.ts +4 -0
- package/dist/media-understanding/providers/anthropic/index.d.ts +2 -0
- package/dist/media-understanding/providers/deepgram/audio.d.ts +4 -0
- package/dist/media-understanding/providers/deepgram/audio.js +4 -2
- package/dist/media-understanding/providers/deepgram/index.d.ts +2 -0
- package/dist/media-understanding/providers/google/audio.d.ts +3 -0
- package/dist/media-understanding/providers/google/audio.js +2 -1
- package/dist/media-understanding/providers/google/index.d.ts +2 -0
- package/dist/media-understanding/providers/google/video.d.ts +3 -0
- package/dist/media-understanding/providers/google/video.js +2 -1
- package/dist/media-understanding/providers/groq/index.d.ts +2 -0
- package/dist/media-understanding/providers/image.d.ts +2 -0
- package/dist/media-understanding/providers/image.js +6 -6
- package/dist/media-understanding/providers/index.d.ts +4 -0
- package/dist/media-understanding/providers/index.js +2 -1
- package/dist/media-understanding/providers/minimax/index.d.ts +2 -0
- package/dist/media-understanding/providers/openai/audio.d.ts +3 -0
- package/dist/media-understanding/providers/openai/audio.js +4 -2
- package/dist/media-understanding/providers/openai/index.d.ts +2 -0
- package/dist/media-understanding/providers/shared.d.ts +3 -0
- package/dist/media-understanding/providers/shared.js +4 -2
- package/dist/media-understanding/resolve.d.ts +44 -0
- package/dist/media-understanding/resolve.js +22 -11
- package/dist/media-understanding/runner.d.ts +34 -0
- package/dist/media-understanding/runner.js +158 -81
- package/dist/media-understanding/scope.d.ts +9 -0
- package/dist/media-understanding/scope.js +14 -7
- package/dist/media-understanding/types.d.ts +92 -0
- package/dist/media-understanding/video.d.ts +2 -0
- package/dist/memory/batch-gemini.d.ts +55 -0
- package/dist/memory/batch-gemini.js +21 -12
- package/dist/memory/batch-openai.d.ts +45 -0
- package/dist/memory/batch-openai.js +17 -9
- package/dist/memory/embeddings-gemini.d.ts +13 -0
- package/dist/memory/embeddings-gemini.js +17 -9
- package/dist/memory/embeddings-openai.d.ts +13 -0
- package/dist/memory/embeddings-openai.js +6 -3
- package/dist/memory/embeddings.d.ts +36 -0
- package/dist/memory/embeddings.js +13 -8
- package/dist/memory/headers-fingerprint.d.ts +1 -0
- package/dist/memory/headers-fingerprint.js +4 -2
- package/dist/memory/hybrid.d.ts +34 -0
- package/dist/memory/hybrid.js +5 -3
- package/dist/memory/index.d.ts +2 -0
- package/dist/memory/internal.d.ts +26 -0
- package/dist/memory/internal.js +80 -29
- package/dist/memory/manager-cache-key.d.ts +6 -0
- package/dist/memory/manager-cache-key.js +3 -2
- package/dist/memory/manager-search.d.ts +60 -0
- package/dist/memory/manager-search.js +7 -4
- package/dist/memory/manager.d.ts +200 -0
- package/dist/memory/manager.js +235 -100
- package/dist/memory/memory-schema.d.ts +10 -0
- package/dist/memory/memory-schema.js +2 -1
- package/dist/memory/node-llama.d.ts +8 -0
- package/dist/memory/openai-batch.d.ts +1 -0
- package/dist/memory/provider-key.d.ts +14 -0
- package/dist/memory/provider-key.js +1 -1
- package/dist/memory/search-manager.d.ts +10 -0
- package/dist/memory/session-files.d.ts +12 -0
- package/dist/memory/session-files.js +18 -9
- package/dist/memory/sqlite-vec.d.ts +9 -0
- package/dist/memory/sqlite.d.ts +1 -0
- package/dist/memory/status-format.d.ts +28 -0
- package/dist/memory/status-format.js +10 -5
- package/dist/memory/sync-memory-files.d.ts +29 -0
- package/dist/memory/sync-memory-files.js +3 -2
- package/dist/memory/sync-session-files.d.ts +29 -0
- package/dist/memory/sync-session-files.js +2 -1
- package/dist/node-host/config.d.ts +17 -0
- package/dist/node-host/runner.d.ts +37 -0
- package/dist/node-host/runner.js +99 -57
- package/dist/pairing/pairing-labels.d.ts +2 -0
- package/dist/pairing/pairing-messages.d.ts +6 -0
- package/dist/pairing/pairing-messages.js +2 -2
- package/dist/pairing/pairing-store.d.ts +46 -0
- package/dist/pairing/pairing-store.js +34 -18
- package/dist/plugin-sdk/index.d.ts +99 -0
- package/dist/plugins/bundled-dir.d.ts +1 -0
- package/dist/plugins/bundled-dir.js +9 -5
- package/dist/plugins/cli.d.ts +3 -0
- package/dist/plugins/cli.js +2 -2
- package/dist/plugins/commands.d.ts +78 -0
- package/dist/plugins/commands.js +10 -5
- package/dist/plugins/config-schema.d.ts +2 -0
- package/dist/plugins/config-schema.js +2 -1
- package/dist/plugins/config-state.d.ts +33 -0
- package/dist/plugins/config-state.js +81 -6
- package/dist/plugins/discovery.d.ts +22 -0
- package/dist/plugins/discovery.js +36 -23
- package/dist/plugins/enable.d.ts +7 -0
- package/dist/plugins/enable.js +2 -1
- package/dist/plugins/hook-runner-global.d.ts +31 -0
- package/dist/plugins/hooks.d.ts +41 -0
- package/dist/plugins/hooks.js +12 -8
- package/dist/plugins/http-path.d.ts +1 -0
- package/dist/plugins/http-path.js +2 -1
- package/dist/plugins/http-registry.d.ts +13 -0
- package/dist/plugins/http-registry.js +1 -1
- package/dist/plugins/install.d.ts +60 -0
- package/dist/plugins/install.js +15 -12
- package/dist/plugins/installs.d.ts +6 -0
- package/dist/plugins/loader.d.ts +14 -0
- package/dist/plugins/loader.js +12 -13
- package/dist/plugins/manifest-registry.d.ts +33 -0
- package/dist/plugins/manifest-registry.js +14 -9
- package/dist/plugins/manifest.d.ts +64 -0
- package/dist/plugins/manifest.js +10 -10
- package/dist/plugins/providers.d.ts +6 -0
- package/dist/plugins/providers.js +2 -2
- package/dist/plugins/registry.d.ts +130 -0
- package/dist/plugins/registry.js +7 -5
- package/dist/plugins/runtime/index.d.ts +3 -0
- package/dist/plugins/runtime/index.js +24 -23
- package/dist/plugins/runtime/native-deps.d.ts +8 -0
- package/dist/plugins/runtime/types.d.ts +314 -0
- package/dist/plugins/runtime.d.ts +5 -0
- package/dist/plugins/runtime.js +1 -1
- package/dist/plugins/schema-validator.d.ts +10 -0
- package/dist/plugins/schema-validator.js +4 -2
- package/dist/plugins/services.d.ts +10 -0
- package/dist/plugins/services.js +3 -2
- package/dist/plugins/slots.d.ts +24 -0
- package/dist/plugins/slots.js +7 -4
- package/dist/plugins/status.d.ts +9 -0
- package/dist/plugins/status.js +2 -2
- package/dist/plugins/tools.d.ts +13 -0
- package/dist/plugins/tools.js +14 -8
- package/dist/plugins/types.d.ts +381 -0
- package/dist/plugins/update.d.ts +44 -0
- package/dist/plugins/update.js +25 -14
- package/dist/process/child-process-bridge.d.ts +8 -0
- package/dist/process/command-queue.d.ts +12 -0
- package/dist/process/command-queue.js +8 -4
- package/dist/process/exec.d.ts +22 -0
- package/dist/process/exec.js +14 -7
- package/dist/process/lanes.d.ts +6 -0
- package/dist/process/spawn-utils.d.ts +26 -0
- package/dist/process/spawn-utils.js +14 -7
- package/dist/providers/github-copilot-auth.d.ts +5 -0
- package/dist/providers/github-copilot-models.d.ts +3 -0
- package/dist/providers/github-copilot-models.js +2 -1
- package/dist/providers/github-copilot-token.d.ts +19 -0
- package/dist/providers/github-copilot-token.js +6 -3
- package/dist/providers/qwen-portal-oauth.d.ts +2 -0
- package/dist/providers/qwen-portal-oauth.js +1 -1
- package/dist/routing/bindings.d.ts +11 -0
- package/dist/routing/bindings.js +37 -19
- package/dist/routing/resolve-route.d.ts +36 -0
- package/dist/routing/resolve-route.js +34 -17
- package/dist/routing/session-key.d.ts +45 -0
- package/dist/routing/session-key.js +32 -16
- package/dist/security/audit-extra.d.ts +43 -0
- package/dist/security/audit-extra.js +124 -67
- package/dist/security/audit-fs.d.ts +44 -0
- package/dist/security/audit-fs.js +12 -6
- package/dist/security/audit.d.ts +55 -0
- package/dist/security/audit.js +67 -40
- package/dist/security/external-content.d.ts +62 -0
- package/dist/security/external-content.js +6 -3
- package/dist/security/fix.d.ts +34 -0
- package/dist/security/fix.js +54 -29
- package/dist/security/windows-acl.d.ts +37 -0
- package/dist/security/windows-acl.js +30 -15
- package/dist/sessions/level-overrides.d.ts +10 -0
- package/dist/sessions/level-overrides.js +6 -3
- package/dist/sessions/model-overrides.d.ts +14 -0
- package/dist/sessions/send-policy.d.ts +11 -0
- package/dist/sessions/send-policy.js +28 -14
- package/dist/sessions/session-key-utils.d.ts +8 -0
- package/dist/sessions/session-key-utils.js +22 -11
- package/dist/sessions/session-label.d.ts +9 -0
- package/dist/sessions/session-label.js +2 -1
- package/dist/sessions/transcript-events.d.ts +7 -0
- package/dist/sessions/transcript-events.js +2 -1
- package/dist/shared/text/reasoning-tags.d.ts +6 -0
- package/dist/shared/text/reasoning-tags.js +52 -7
- package/dist/signal/accounts.d.ts +17 -0
- package/dist/signal/accounts.js +9 -5
- package/dist/signal/client.d.ts +32 -0
- package/dist/signal/client.js +10 -5
- package/dist/signal/daemon.d.ts +18 -0
- package/dist/signal/daemon.js +20 -10
- package/dist/signal/format.d.ts +17 -0
- package/dist/signal/format.js +17 -10
- package/dist/signal/identity.d.ts +23 -0
- package/dist/signal/identity.js +18 -9
- package/dist/signal/index.d.ts +5 -0
- package/dist/signal/monitor/event-handler.d.ts +5 -0
- package/dist/signal/monitor/event-handler.js +41 -22
- package/dist/signal/monitor/event-handler.types.d.ts +117 -0
- package/dist/signal/monitor.d.ts +23 -0
- package/dist/signal/monitor.js +27 -14
- package/dist/signal/probe.d.ts +8 -0
- package/dist/signal/probe.js +4 -2
- package/dist/signal/reaction-level.d.ts +24 -0
- package/dist/signal/send-reactions.d.ts +32 -0
- package/dist/signal/send-reactions.js +20 -10
- package/dist/signal/send.d.ts +24 -0
- package/dist/signal/send.js +24 -12
- package/dist/signal/sse-reconnect.d.ts +13 -0
- package/dist/signal/sse-reconnect.js +8 -4
- package/dist/slack/accounts.d.ts +32 -0
- package/dist/slack/accounts.js +9 -5
- package/dist/slack/actions.d.ts +53 -0
- package/dist/slack/actions.js +4 -2
- package/dist/slack/channel-migration.d.ts +20 -0
- package/dist/slack/channel-migration.js +18 -9
- package/dist/slack/client.d.ts +4 -0
- package/dist/slack/directory-live.d.ts +4 -0
- package/dist/slack/directory-live.js +21 -11
- package/dist/slack/format.d.ts +7 -0
- package/dist/slack/format.js +6 -3
- package/dist/slack/http/index.d.ts +1 -0
- package/dist/slack/http/registry.d.ts +12 -0
- package/dist/slack/http/registry.js +4 -2
- package/dist/slack/index.d.ts +6 -0
- package/dist/slack/monitor/allow-list.d.ts +20 -0
- package/dist/slack/monitor/allow-list.js +8 -4
- package/dist/slack/monitor/auth.d.ts +10 -0
- package/dist/slack/monitor/channel-config.d.ts +40 -0
- package/dist/slack/monitor/channel-config.js +8 -4
- package/dist/slack/monitor/commands.d.ts +4 -0
- package/dist/slack/monitor/commands.js +4 -3
- package/dist/slack/monitor/context.d.ts +109 -0
- package/dist/slack/monitor/context.js +27 -14
- package/dist/slack/monitor/events/channels.d.ts +4 -0
- package/dist/slack/monitor/events/channels.js +10 -6
- package/dist/slack/monitor/events/members.d.ts +4 -0
- package/dist/slack/monitor/events/members.js +4 -2
- package/dist/slack/monitor/events/messages.d.ts +6 -0
- package/dist/slack/monitor/events/messages.js +4 -2
- package/dist/slack/monitor/events/pins.d.ts +4 -0
- package/dist/slack/monitor/events/pins.js +4 -2
- package/dist/slack/monitor/events/reactions.d.ts +4 -0
- package/dist/slack/monitor/events/reactions.js +6 -3
- package/dist/slack/monitor/events.d.ts +8 -0
- package/dist/slack/monitor/media.d.ts +29 -0
- package/dist/slack/monitor/media.js +8 -4
- package/dist/slack/monitor/message-handler/dispatch.d.ts +2 -0
- package/dist/slack/monitor/message-handler/dispatch.js +3 -2
- package/dist/slack/monitor/message-handler/prepare.d.ts +13 -0
- package/dist/slack/monitor/message-handler/prepare.js +14 -11
- package/dist/slack/monitor/message-handler/types.d.ts +22 -0
- package/dist/slack/monitor/message-handler.d.ts +11 -0
- package/dist/slack/monitor/message-handler.js +14 -7
- package/dist/slack/monitor/policy.d.ts +5 -0
- package/dist/slack/monitor/policy.js +6 -3
- package/dist/slack/monitor/provider.d.ts +2 -0
- package/dist/slack/monitor/provider.js +27 -16
- package/dist/slack/monitor/replies.d.ts +50 -0
- package/dist/slack/monitor/replies.js +11 -6
- package/dist/slack/monitor/slash.d.ts +6 -0
- package/dist/slack/monitor/slash.js +83 -72
- package/dist/slack/monitor/thread-resolution.d.ts +12 -0
- package/dist/slack/monitor/thread-resolution.js +4 -2
- package/dist/slack/monitor/types.d.ts +97 -0
- package/dist/slack/monitor.d.ts +5 -0
- package/dist/slack/monitor.test-helpers.d.ts +25 -0
- package/dist/slack/monitor.test-helpers.js +3 -2
- package/dist/slack/probe.d.ts +15 -0
- package/dist/slack/probe.js +4 -2
- package/dist/slack/resolve-channels.d.ts +19 -0
- package/dist/slack/resolve-channels.js +10 -5
- package/dist/slack/resolve-users.d.ts +26 -0
- package/dist/slack/resolve-users.js +20 -11
- package/dist/slack/scopes.d.ts +7 -0
- package/dist/slack/scopes.js +17 -9
- package/dist/slack/send.d.ts +14 -0
- package/dist/slack/send.js +5 -3
- package/dist/slack/targets.d.ts +7 -0
- package/dist/slack/targets.js +2 -1
- package/dist/slack/threading-tool-context.d.ts +10 -0
- package/dist/slack/threading.d.ts +20 -0
- package/dist/slack/token.d.ts +3 -0
- package/dist/slack/types.d.ts +36 -0
- package/dist/telegram/accounts.d.ts +17 -0
- package/dist/telegram/accounts.js +24 -13
- package/dist/telegram/allowed-updates.d.ts +4 -0
- package/dist/telegram/api-logging.d.ts +11 -0
- package/dist/telegram/api-logging.js +4 -2
- package/dist/telegram/audit.d.ts +29 -0
- package/dist/telegram/audit.js +12 -7
- package/dist/telegram/bot/delivery.d.ts +33 -0
- package/dist/telegram/bot/delivery.js +43 -13
- package/dist/telegram/bot/helpers.d.ts +67 -0
- package/dist/telegram/bot/helpers.js +49 -25
- package/dist/telegram/bot/types.d.ts +79 -0
- package/dist/telegram/bot-access.d.ts +24 -0
- package/dist/telegram/bot-access.js +14 -7
- package/dist/telegram/bot-handlers.d.ts +2 -0
- package/dist/telegram/bot-handlers.js +47 -26
- package/dist/telegram/bot-message-context.d.ts +138 -0
- package/dist/telegram/bot-message-context.js +32 -18
- package/dist/telegram/bot-message-dispatch.d.ts +1 -0
- package/dist/telegram/bot-message-dispatch.js +61 -26
- package/dist/telegram/bot-message.d.ts +1 -0
- package/dist/telegram/bot-message.js +2 -1
- package/dist/telegram/bot-native-commands.d.ts +58 -0
- package/dist/telegram/bot-native-commands.js +67 -20
- package/dist/telegram/bot-updates.d.ts +26 -0
- package/dist/telegram/bot-updates.js +4 -2
- package/dist/telegram/bot.d.ts +53 -0
- package/dist/telegram/bot.js +39 -20
- package/dist/telegram/caption.d.ts +5 -0
- package/dist/telegram/download.d.ts +9 -0
- package/dist/telegram/download.js +5 -3
- package/dist/telegram/draft-chunking.d.ts +6 -0
- package/dist/telegram/draft-stream.d.ts +16 -0
- package/dist/telegram/draft-stream.js +22 -12
- package/dist/telegram/fetch.d.ts +4 -0
- package/dist/telegram/fetch.js +4 -2
- package/dist/telegram/format.d.ts +16 -0
- package/dist/telegram/format.js +6 -3
- package/dist/telegram/group-migration.d.ts +20 -0
- package/dist/telegram/group-migration.js +18 -9
- package/dist/telegram/index.d.ts +4 -0
- package/dist/telegram/inline-buttons.d.ts +11 -0
- package/dist/telegram/inline-buttons.js +8 -4
- package/dist/telegram/monitor.d.ts +18 -0
- package/dist/telegram/monitor.js +14 -9
- package/dist/telegram/network-config.d.ts +12 -0
- package/dist/telegram/network-config.js +2 -2
- package/dist/telegram/network-errors.d.ts +5 -0
- package/dist/telegram/network-errors.js +24 -12
- package/dist/telegram/pairing-store.d.ts +43 -0
- package/dist/telegram/pairing-store.js +2 -1
- package/dist/telegram/probe.d.ts +18 -0
- package/dist/telegram/proxy.d.ts +1 -0
- package/dist/telegram/proxy.js +2 -2
- package/dist/telegram/reaction-level.d.ts +18 -0
- package/dist/telegram/send.d.ts +96 -0
- package/dist/telegram/send.js +32 -19
- package/dist/telegram/sent-message-cache.d.ts +16 -0
- package/dist/telegram/sent-message-cache.js +2 -1
- package/dist/telegram/sticker-cache.d.ts +46 -0
- package/dist/telegram/sticker-cache.js +10 -8
- package/dist/telegram/targets.d.ts +14 -0
- package/dist/telegram/targets.js +2 -1
- package/dist/telegram/token.d.ts +13 -0
- package/dist/telegram/token.js +17 -3
- package/dist/telegram/update-offset-store.d.ts +9 -0
- package/dist/telegram/update-offset-store.js +6 -3
- package/dist/telegram/voice.d.ts +20 -0
- package/dist/telegram/voice.js +4 -2
- package/dist/telegram/webhook-set.d.ts +12 -0
- package/dist/telegram/webhook-set.js +1 -1
- package/dist/telegram/webhook.d.ts +20 -0
- package/dist/telegram/webhook.js +5 -4
- package/dist/terminal/ansi.d.ts +2 -0
- package/dist/terminal/links.d.ts +6 -0
- package/dist/terminal/links.js +1 -1
- package/dist/terminal/note.d.ts +5 -0
- package/dist/terminal/note.js +8 -4
- package/dist/terminal/palette.d.ts +10 -0
- package/dist/terminal/progress-line.d.ts +3 -0
- package/dist/terminal/progress-line.js +8 -4
- package/dist/terminal/prompt-style.d.ts +3 -0
- package/dist/terminal/stream-writer.d.ts +11 -0
- package/dist/terminal/stream-writer.js +4 -2
- package/dist/terminal/table.d.ts +18 -0
- package/dist/terminal/table.js +49 -26
- package/dist/terminal/theme.d.ts +15 -0
- package/dist/tts/tts.d.ts +198 -0
- package/dist/tts/tts.js +116 -60
- package/dist/tui/commands.d.ts +14 -0
- package/dist/tui/commands.js +4 -2
- package/dist/tui/components/assistant-message.d.ts +6 -0
- package/dist/tui/components/chat-log.d.ts +22 -0
- package/dist/tui/components/chat-log.js +4 -2
- package/dist/tui/components/custom-editor.d.ts +14 -0
- package/dist/tui/components/custom-editor.js +1 -4
- package/dist/tui/components/filterable-select-list.d.ts +32 -0
- package/dist/tui/components/fuzzy-filter.d.ts +34 -0
- package/dist/tui/components/fuzzy-filter.js +26 -14
- package/dist/tui/components/searchable-select-list.d.ts +43 -0
- package/dist/tui/components/searchable-select-list.js +11 -6
- package/dist/tui/components/selectors.d.ts +7 -0
- package/dist/tui/components/tool-execution.d.ts +33 -0
- package/dist/tui/components/tool-execution.js +6 -3
- package/dist/tui/components/user-message.d.ts +6 -0
- package/dist/tui/gateway-chat.d.ts +119 -0
- package/dist/tui/gateway-chat.js +3 -3
- package/dist/tui/theme/syntax-theme.d.ts +7 -0
- package/dist/tui/theme/theme.d.ts +35 -0
- package/dist/tui/tui-command-handlers.d.ts +31 -0
- package/dist/tui/tui-command-handlers.js +4 -2
- package/dist/tui/tui-event-handlers.d.ts +15 -0
- package/dist/tui/tui-event-handlers.js +36 -18
- package/dist/tui/tui-formatters.d.ts +31 -0
- package/dist/tui/tui-formatters.js +39 -20
- package/dist/tui/tui-local-shell.d.ts +24 -0
- package/dist/tui/tui-local-shell.js +8 -4
- package/dist/tui/tui-overlays.d.ts +7 -0
- package/dist/tui/tui-session-actions.d.ts +28 -0
- package/dist/tui/tui-session-actions.js +16 -8
- package/dist/tui/tui-status-summary.d.ts +2 -0
- package/dist/tui/tui-status-summary.js +2 -1
- package/dist/tui/tui-stream-assembler.d.ts +8 -0
- package/dist/tui/tui-stream-assembler.js +2 -1
- package/dist/tui/tui-types.d.ts +103 -0
- package/dist/tui/tui-waiting.d.ts +16 -0
- package/dist/tui/tui.d.ts +13 -0
- package/dist/tui/tui.js +40 -21
- package/dist/utils/account-id.d.ts +1 -0
- package/dist/utils/account-id.js +2 -1
- package/dist/utils/boolean.d.ts +5 -0
- package/dist/utils/boolean.js +10 -5
- package/dist/utils/delivery-context.d.ts +29 -0
- package/dist/utils/delivery-context.js +21 -7
- package/dist/utils/directive-tags.d.ts +16 -0
- package/dist/utils/directive-tags.js +2 -1
- package/dist/utils/message-channel.d.ts +27 -0
- package/dist/utils/message-channel.js +18 -9
- package/dist/utils/provider-utils.d.ts +9 -0
- package/dist/utils/provider-utils.js +2 -1
- package/dist/utils/queue-helpers.d.ts +41 -0
- package/dist/utils/queue-helpers.js +20 -10
- package/dist/utils/time-format.d.ts +1 -0
- package/dist/utils/time-format.js +10 -5
- package/dist/utils/usage-format.d.ts +26 -0
- package/dist/utils/usage-format.js +18 -9
- package/dist/utils.js +58 -33
- package/dist/version.js +3 -3
- package/dist/web/accounts.d.ts +39 -0
- package/dist/web/accounts.js +11 -6
- package/dist/web/active-listener.d.ts +24 -0
- package/dist/web/active-listener.js +1 -1
- package/dist/web/auth-store.d.ts +25 -0
- package/dist/web/auth-store.js +20 -11
- package/dist/web/auto-reply/constants.d.ts +1 -0
- package/dist/web/auto-reply/deliver-reply.d.ts +18 -0
- package/dist/web/auto-reply/deliver-reply.js +1 -1
- package/dist/web/auto-reply/heartbeat-runner.d.ts +20 -0
- package/dist/web/auto-reply/heartbeat-runner.js +9 -5
- package/dist/web/auto-reply/loggers.d.ts +4 -0
- package/dist/web/auto-reply/mentions.d.ts +19 -0
- package/dist/web/auto-reply/mentions.js +10 -5
- package/dist/web/auto-reply/monitor/ack-reaction.d.ts +13 -0
- package/dist/web/auto-reply/monitor/ack-reaction.js +5 -3
- package/dist/web/auto-reply/monitor/broadcast.d.ts +16 -0
- package/dist/web/auto-reply/monitor/broadcast.js +4 -2
- package/dist/web/auto-reply/monitor/commands.d.ts +2 -0
- package/dist/web/auto-reply/monitor/commands.js +2 -1
- package/dist/web/auto-reply/monitor/echo.d.ts +17 -0
- package/dist/web/auto-reply/monitor/echo.js +4 -2
- package/dist/web/auto-reply/monitor/group-activation.d.ts +9 -0
- package/dist/web/auto-reply/monitor/group-activation.js +1 -1
- package/dist/web/auto-reply/monitor/group-gating.d.ts +29 -0
- package/dist/web/auto-reply/monitor/group-gating.js +4 -3
- package/dist/web/auto-reply/monitor/group-members.d.ts +6 -0
- package/dist/web/auto-reply/monitor/group-members.js +14 -7
- package/dist/web/auto-reply/monitor/last-route.d.ts +15 -0
- package/dist/web/auto-reply/monitor/last-route.js +2 -1
- package/dist/web/auto-reply/monitor/message-line.d.ts +11 -0
- package/dist/web/auto-reply/monitor/message-line.js +2 -1
- package/dist/web/auto-reply/monitor/on-message.d.ts +24 -0
- package/dist/web/auto-reply/monitor/on-message.js +2 -1
- package/dist/web/auto-reply/monitor/peer.d.ts +2 -0
- package/dist/web/auto-reply/monitor/peer.js +6 -3
- package/dist/web/auto-reply/monitor/process-message.d.ts +40 -0
- package/dist/web/auto-reply/monitor/process-message.js +18 -11
- package/dist/web/auto-reply/monitor.d.ts +5 -0
- package/dist/web/auto-reply/monitor.js +22 -13
- package/dist/web/auto-reply/session-snapshot.d.ts +17 -0
- package/dist/web/auto-reply/types.d.ts +28 -0
- package/dist/web/auto-reply/util.d.ts +2 -0
- package/dist/web/auto-reply/util.js +20 -10
- package/dist/web/auto-reply.d.ts +1 -0
- package/dist/web/auto-reply.impl.d.ts +6 -0
- package/dist/web/inbound/access-control.d.ts +24 -0
- package/dist/web/inbound/dedupe.d.ts +2 -0
- package/dist/web/inbound/extract.d.ts +13 -0
- package/dist/web/inbound/extract.js +60 -30
- package/dist/web/inbound/media.d.ts +6 -0
- package/dist/web/inbound/media.js +4 -3
- package/dist/web/inbound/monitor.d.ts +30 -0
- package/dist/web/inbound/monitor.js +29 -15
- package/dist/web/inbound/send-api.d.ts +22 -0
- package/dist/web/inbound/types.d.ts +40 -0
- package/dist/web/inbound.d.ts +4 -0
- package/dist/web/login-qr.d.ts +19 -0
- package/dist/web/login-qr.js +13 -7
- package/dist/web/login.d.ts +3 -0
- package/dist/web/login.js +4 -4
- package/dist/web/media.d.ts +20 -0
- package/dist/web/media.js +16 -9
- package/dist/web/outbound.d.ts +23 -0
- package/dist/web/outbound.js +3 -3
- package/dist/web/qr-image.d.ts +4 -0
- package/dist/web/qr-image.js +2 -1
- package/dist/web/reconnect.d.ts +12 -0
- package/dist/web/reconnect.js +2 -1
- package/dist/web/session.d.ts +14 -0
- package/dist/web/session.js +36 -20
- package/dist/web/vcard.d.ts +6 -0
- package/dist/web/vcard.js +18 -9
- package/dist/whatsapp/normalize.d.ts +6 -0
- package/dist/whatsapp/normalize.js +16 -8
- package/dist/wizard/clack-prompter.d.ts +2 -0
- package/dist/wizard/clack-prompter.js +9 -6
- package/dist/wizard/onboarding.d.ts +4 -0
- package/dist/wizard/onboarding.finalize.d.ts +17 -0
- package/dist/wizard/onboarding.finalize.js +34 -31
- package/dist/wizard/onboarding.gateway-config.d.ts +19 -0
- package/dist/wizard/onboarding.gateway-config.js +20 -17
- package/dist/wizard/onboarding.js +43 -24
- package/dist/wizard/onboarding.types.d.ts +22 -0
- package/dist/wizard/prompts.d.ts +42 -0
- package/dist/wizard/session.d.ts +42 -0
- package/dist/wizard/session.js +4 -2
- package/docs/CNAME +1 -1
- package/docs/_config.yml +3 -3
- package/docs/_layouts/default.html +9 -9
- package/docs/assets/openclaw-logo-text-dark.png +0 -0
- package/docs/assets/openclaw-logo-text.png +0 -0
- package/docs/assets/theme.js +1 -1
- package/docs/automation/auth-monitoring.md +10 -7
- package/docs/automation/cron-jobs.md +184 -26
- package/docs/automation/cron-vs-heartbeat.md +43 -36
- package/docs/automation/gmail-pubsub.md +44 -40
- package/docs/automation/poll.md +14 -8
- package/docs/automation/webhook.md +16 -8
- package/docs/bedrock.md +27 -23
- package/docs/brave-search.md +9 -8
- package/docs/broadcast-groups.md +50 -15
- package/docs/channels/bluebubbles.md +70 -39
- package/docs/channels/discord.md +129 -68
- package/docs/channels/googlechat.md +67 -37
- package/docs/channels/grammy.md +5 -1
- package/docs/channels/imessage.md +81 -47
- package/docs/channels/index.md +6 -4
- package/docs/channels/line.md +31 -28
- package/docs/channels/location.md +9 -1
- package/docs/channels/matrix.md +44 -41
- package/docs/channels/mattermost.md +36 -21
- package/docs/channels/msteams.md +154 -95
- package/docs/channels/nextcloud-talk.md +40 -25
- package/docs/channels/nostr.md +34 -36
- package/docs/channels/signal.md +49 -26
- package/docs/channels/slack.md +120 -81
- package/docs/channels/telegram.md +203 -128
- package/docs/channels/tlon.md +31 -32
- package/docs/channels/troubleshooting.md +6 -2
- package/docs/channels/twitch.md +81 -70
- package/docs/channels/whatsapp.md +84 -42
- package/docs/channels/zalo.md +55 -33
- package/docs/channels/zalouser.md +45 -28
- package/docs/cli/acp.md +31 -27
- package/docs/cli/agent.md +8 -6
- package/docs/cli/agents.md +20 -16
- package/docs/cli/approvals.md +16 -14
- package/docs/cli/browser.md +27 -24
- package/docs/cli/channels.md +25 -21
- package/docs/cli/config.md +16 -15
- package/docs/cli/configure.md +9 -6
- package/docs/cli/cron.md +7 -5
- package/docs/cli/dashboard.md +5 -5
- package/docs/cli/devices.md +14 -13
- package/docs/cli/directory.md +15 -12
- package/docs/cli/dns.md +7 -6
- package/docs/cli/docs.md +6 -6
- package/docs/cli/doctor.md +14 -11
- package/docs/cli/gateway.md +38 -26
- package/docs/cli/health.md +7 -5
- package/docs/cli/hooks.md +49 -35
- package/docs/cli/index.md +154 -43
- package/docs/cli/logs.md +8 -7
- package/docs/cli/memory.md +16 -12
- package/docs/cli/message.md +22 -11
- package/docs/cli/models.md +26 -15
- package/docs/cli/node.md +21 -17
- package/docs/cli/nodes.md +19 -14
- package/docs/cli/onboard.md +10 -7
- package/docs/cli/pairing.md +6 -5
- package/docs/cli/plugins.md +18 -16
- package/docs/cli/reset.md +6 -6
- package/docs/cli/sandbox.md +39 -37
- package/docs/cli/security.md +7 -5
- package/docs/cli/sessions.md +6 -6
- package/docs/cli/setup.md +8 -7
- package/docs/cli/skills.md +9 -8
- package/docs/cli/status.md +9 -7
- package/docs/cli/system.md +11 -6
- package/docs/cli/tui.md +7 -6
- package/docs/cli/uninstall.md +6 -6
- package/docs/cli/update.md +22 -20
- package/docs/cli/voicecall.md +11 -10
- package/docs/cli/webhooks.md +7 -5
- package/docs/concepts/agent-loop.md +29 -9
- package/docs/concepts/agent-workspace.md +30 -28
- package/docs/concepts/agent.md +23 -17
- package/docs/concepts/architecture.md +9 -2
- package/docs/concepts/channel-routing.md +12 -12
- package/docs/concepts/compaction.md +17 -5
- package/docs/concepts/context.md +21 -11
- package/docs/concepts/group-messages.md +26 -20
- package/docs/concepts/groups.md +103 -74
- package/docs/concepts/markdown-formatting.md +6 -8
- package/docs/concepts/memory.md +71 -28
- package/docs/concepts/messages.md +20 -9
- package/docs/concepts/model-failover.md +29 -19
- package/docs/concepts/model-providers.md +59 -65
- package/docs/concepts/models.md +43 -37
- package/docs/concepts/multi-agent.md +79 -57
- package/docs/concepts/oauth.md +40 -30
- package/docs/concepts/presence.md +6 -2
- package/docs/concepts/queue.md +15 -3
- package/docs/concepts/retry.md +16 -7
- package/docs/concepts/session-pruning.md +33 -15
- package/docs/concepts/session-tool.md +30 -8
- package/docs/concepts/session.md +50 -34
- package/docs/concepts/sessions.md +2 -0
- package/docs/concepts/streaming.md +15 -3
- package/docs/concepts/system-prompt.md +20 -15
- package/docs/concepts/timezone.md +8 -6
- package/docs/concepts/typebox.md +46 -38
- package/docs/concepts/typing-indicators.md +15 -6
- package/docs/concepts/usage-tracking.md +8 -3
- package/docs/date-time.md +9 -8
- package/docs/debug/node-issue.md +18 -7
- package/docs/debugging.md +21 -20
- package/docs/diagnostics/flags.md +9 -7
- package/docs/docs.json +38 -24
- package/docs/environment.md +22 -19
- package/docs/experiments/onboarding-config-protocol.md +6 -0
- package/docs/experiments/plans/cron-add-hardening.md +7 -1
- package/docs/experiments/plans/group-policy-hardening.md +3 -1
- package/docs/experiments/plans/openresponses-gateway.md +3 -2
- package/docs/experiments/proposals/model-config.md +4 -0
- package/docs/experiments/research/memory.md +32 -14
- package/docs/gateway/authentication.md +26 -24
- package/docs/gateway/background-process.md +18 -7
- package/docs/gateway/bonjour.md +31 -26
- package/docs/gateway/bridge-protocol.md +10 -6
- package/docs/gateway/cli-backends.md +37 -35
- package/docs/gateway/configuration-examples.md +143 -135
- package/docs/gateway/configuration.md +795 -660
- package/docs/gateway/discovery.md +22 -16
- package/docs/gateway/doctor.md +57 -27
- package/docs/gateway/gateway-lock.md +7 -1
- package/docs/gateway/health.md +17 -11
- package/docs/gateway/heartbeat.md +36 -31
- package/docs/gateway/index.md +99 -63
- package/docs/gateway/local-models.md +31 -27
- package/docs/gateway/logging.md +9 -8
- package/docs/gateway/multiple-gateways.md +32 -27
- package/docs/gateway/openai-http-api.md +26 -20
- package/docs/gateway/openresponses-http-api.md +48 -29
- package/docs/gateway/pairing.md +16 -9
- package/docs/gateway/protocol.md +12 -6
- package/docs/gateway/remote-gateway-readme.md +18 -16
- package/docs/gateway/remote.md +12 -7
- package/docs/gateway/sandbox-vs-tool-policy-vs-elevated.md +22 -14
- package/docs/gateway/sandboxing.md +43 -26
- package/docs/gateway/security/formal-verification.md +12 -8
- package/docs/gateway/security/index.md +152 -97
- package/docs/gateway/tailscale.md +19 -16
- package/docs/gateway/tools-invoke-http-api.md +11 -5
- package/docs/gateway/troubleshooting.md +189 -136
- package/docs/help/faq.md +548 -451
- package/docs/help/index.md +1 -0
- package/docs/help/troubleshooting.md +17 -16
- package/docs/hooks/soul-evil.md +3 -2
- package/docs/hooks.md +95 -78
- package/docs/index.md +61 -44
- package/docs/install/ansible.md +38 -35
- package/docs/install/bun.md +2 -1
- package/docs/install/development-channels.md +11 -10
- package/docs/install/docker.md +102 -67
- package/docs/install/index.md +34 -33
- package/docs/install/installer.md +29 -28
- package/docs/install/migrating.md +38 -36
- package/docs/install/nix.md +19 -18
- package/docs/install/node.md +6 -6
- package/docs/install/uninstall.md +41 -38
- package/docs/install/updating.md +63 -54
- package/docs/logging.md +69 -62
- package/docs/multi-agent-sandbox-tools.md +39 -18
- package/docs/network.md +4 -1
- package/docs/nodes/audio.md +34 -29
- package/docs/nodes/camera.md +23 -19
- package/docs/nodes/images.md +15 -4
- package/docs/nodes/index.md +71 -57
- package/docs/nodes/location-command.md +23 -5
- package/docs/nodes/media-understanding.md +129 -63
- package/docs/nodes/talk.md +24 -13
- package/docs/nodes/voicewake.md +7 -3
- package/docs/northflank.mdx +24 -24
- package/docs/perplexity.md +13 -12
- package/docs/pi-dev.md +70 -0
- package/docs/pi.md +600 -0
- package/docs/platforms/android.md +22 -15
- package/docs/platforms/digitalocean.md +58 -39
- package/docs/platforms/exe-dev.md +23 -23
- package/docs/platforms/fly.md +62 -44
- package/docs/platforms/gcp.md +79 -74
- package/docs/platforms/hetzner.md +73 -68
- package/docs/platforms/index.md +11 -8
- package/docs/platforms/ios.md +20 -17
- package/docs/platforms/linux.md +19 -14
- package/docs/platforms/mac/bundled-gateway.md +20 -14
- package/docs/platforms/mac/canvas.md +18 -14
- package/docs/platforms/mac/child-process.md +7 -5
- package/docs/platforms/mac/dev-setup.md +22 -11
- package/docs/platforms/mac/health.md +8 -2
- package/docs/platforms/mac/icon.md +6 -1
- package/docs/platforms/mac/logging.md +10 -4
- package/docs/platforms/mac/menu-bar.md +12 -1
- package/docs/platforms/mac/peekaboo.md +12 -9
- package/docs/platforms/mac/permissions.md +5 -1
- package/docs/platforms/mac/release.md +24 -16
- package/docs/platforms/mac/remote.md +29 -17
- package/docs/platforms/mac/signing.md +11 -7
- package/docs/platforms/mac/skills.md +10 -4
- package/docs/platforms/mac/voice-overlay.md +9 -1
- package/docs/platforms/mac/voicewake.md +12 -1
- package/docs/platforms/mac/webchat.md +3 -1
- package/docs/platforms/mac/xpc.md +14 -4
- package/docs/platforms/macos-vm.md +37 -31
- package/docs/platforms/macos.md +31 -23
- package/docs/platforms/oracle.md +62 -50
- package/docs/platforms/raspberry-pi.md +49 -45
- package/docs/platforms/windows.md +16 -11
- package/docs/plugin.md +119 -93
- package/docs/plugins/agent-tools.md +12 -9
- package/docs/plugins/manifest.md +9 -5
- package/docs/plugins/voice-call.md +50 -43
- package/docs/plugins/zalouser.md +18 -12
- package/docs/prose.md +15 -12
- package/docs/providers/anthropic.md +29 -23
- package/docs/providers/claude-max-api-proxy.md +19 -16
- package/docs/providers/deepgram.md +24 -20
- package/docs/providers/github-copilot.md +15 -13
- package/docs/providers/glm.md +7 -5
- package/docs/providers/index.md +12 -9
- package/docs/providers/minimax.md +57 -32
- package/docs/providers/models.md +11 -9
- package/docs/providers/moonshot.md +31 -52
- package/docs/providers/ollama.md +29 -25
- package/docs/providers/openai.md +10 -8
- package/docs/providers/opencode.md +6 -4
- package/docs/providers/openrouter.md +8 -6
- package/docs/providers/qwen.md +8 -6
- package/docs/providers/synthetic.md +37 -35
- package/docs/providers/venice.md +86 -83
- package/docs/providers/vercel-ai-gateway.md +11 -11
- package/docs/providers/xiaomi.md +64 -0
- package/docs/providers/zai.md +8 -6
- package/docs/railway.mdx +30 -27
- package/docs/refactor/clawnet.md +72 -15
- package/docs/refactor/exec-host.md +66 -15
- package/docs/refactor/outbound-session-mirroring.md +11 -1
- package/docs/refactor/plugin-sdk.md +41 -14
- package/docs/refactor/strict-config.md +25 -13
- package/docs/reference/AGENTS.default.md +32 -21
- package/docs/reference/RELEASING.md +50 -38
- package/docs/reference/api-usage-costs.md +27 -6
- package/docs/reference/device-models.md +8 -7
- package/docs/reference/rpc.md +9 -3
- package/docs/reference/session-management-compaction.md +45 -33
- package/docs/reference/templates/AGENTS.dev.md +17 -12
- package/docs/reference/templates/AGENTS.md +23 -1
- package/docs/reference/templates/BOOT.md +2 -1
- package/docs/reference/templates/BOOTSTRAP.md +8 -2
- package/docs/reference/templates/HEARTBEAT.md +2 -0
- package/docs/reference/templates/IDENTITY.dev.md +7 -0
- package/docs/reference/templates/IDENTITY.md +1 -1
- package/docs/reference/templates/SOUL.dev.md +3 -1
- package/docs/reference/templates/SOUL.md +5 -4
- package/docs/reference/templates/TOOLS.dev.md +5 -2
- package/docs/reference/templates/TOOLS.md +7 -2
- package/docs/reference/templates/USER.dev.md +4 -3
- package/docs/reference/test.md +6 -2
- package/docs/reference/transcript-hygiene.md +13 -1
- package/docs/render.mdx +34 -27
- package/docs/scripts.md +3 -1
- package/docs/security/formal-verification.md +12 -8
- package/docs/start/getting-started.md +33 -29
- package/docs/start/hubs.md +5 -3
- package/docs/start/lore.md +80 -30
- package/docs/start/onboarding.md +18 -15
- package/docs/start/{clawd.md → openclaw.md} +58 -52
- package/docs/start/pairing.md +16 -14
- package/docs/start/setup.md +34 -29
- package/docs/start/showcase.md +60 -60
- package/docs/start/wizard.md +65 -53
- package/docs/testing.md +77 -58
- package/docs/token-use.md +9 -7
- package/docs/tools/agent-send.md +12 -10
- package/docs/tools/apply-patch.md +1 -0
- package/docs/tools/browser-linux-troubleshooting.md +33 -23
- package/docs/tools/browser-login.md +14 -13
- package/docs/tools/browser.md +163 -137
- package/docs/tools/chrome-extension.md +35 -26
- package/docs/tools/{clawdhub.md → clawhub.md} +46 -45
- package/docs/tools/creating-skills.md +21 -8
- package/docs/tools/elevated.md +8 -0
- package/docs/tools/exec-approvals.md +27 -9
- package/docs/tools/exec.md +23 -13
- package/docs/tools/firecrawl.md +15 -12
- package/docs/tools/index.md +107 -49
- package/docs/tools/llm-task.md +5 -4
- package/docs/tools/lobster.md +18 -14
- package/docs/tools/reactions.md +2 -0
- package/docs/tools/skills-config.md +14 -13
- package/docs/tools/skills.md +86 -53
- package/docs/tools/slash-commands.md +18 -10
- package/docs/tools/subagents.md +19 -6
- package/docs/tools/thinking.md +11 -0
- package/docs/tools/web.md +49 -47
- package/docs/tts.md +52 -45
- package/docs/tui.md +35 -10
- package/docs/vps.md +3 -1
- package/docs/web/control-ui.md +22 -14
- package/docs/web/dashboard.md +10 -6
- package/docs/web/index.md +15 -11
- package/docs/web/webchat.md +12 -4
- package/extensions/bluebubbles/index.ts +3 -4
- package/extensions/bluebubbles/node_modules/.bin/openclaw +17 -0
- package/extensions/bluebubbles/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/bluebubbles/package.json +8 -5
- package/extensions/bluebubbles/src/accounts.ts +22 -14
- package/extensions/bluebubbles/src/actions.test.ts +22 -23
- package/extensions/bluebubbles/src/actions.ts +71 -36
- package/extensions/bluebubbles/src/attachments.test.ts +1 -2
- package/extensions/bluebubbles/src/attachments.ts +39 -21
- package/extensions/bluebubbles/src/channel.ts +54 -39
- package/extensions/bluebubbles/src/chat.test.ts +0 -1
- package/extensions/bluebubbles/src/chat.ts +49 -25
- package/extensions/bluebubbles/src/config-schema.ts +1 -1
- package/extensions/bluebubbles/src/media-send.ts +14 -8
- package/extensions/bluebubbles/src/monitor.test.ts +297 -103
- package/extensions/bluebubbles/src/monitor.ts +341 -148
- package/extensions/bluebubbles/src/onboarding.ts +28 -16
- package/extensions/bluebubbles/src/probe.ts +19 -11
- package/extensions/bluebubbles/src/reactions.test.ts +0 -1
- package/extensions/bluebubbles/src/reactions.ts +21 -16
- package/extensions/bluebubbles/src/runtime.ts +1 -1
- package/extensions/bluebubbles/src/send.test.ts +1 -2
- package/extensions/bluebubbles/src/send.ts +76 -27
- package/extensions/bluebubbles/src/targets.test.ts +0 -1
- package/extensions/bluebubbles/src/targets.ts +151 -52
- package/extensions/copilot-proxy/README.md +3 -3
- package/extensions/copilot-proxy/index.ts +10 -4
- package/extensions/copilot-proxy/node_modules/.bin/openclaw +17 -0
- package/extensions/copilot-proxy/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/copilot-proxy/package.json +7 -4
- package/extensions/diagnostics-otel/index.ts +3 -4
- package/extensions/diagnostics-otel/node_modules/.bin/acorn +3 -7
- package/extensions/diagnostics-otel/node_modules/.bin/openclaw +17 -0
- package/extensions/diagnostics-otel/package.json +11 -8
- package/extensions/diagnostics-otel/src/service.test.ts +22 -16
- package/extensions/diagnostics-otel/src/service.ts +185 -116
- package/extensions/discord/index.ts +3 -4
- package/extensions/discord/node_modules/.bin/openclaw +17 -0
- package/extensions/discord/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/discord/package.json +7 -4
- package/extensions/discord/src/channel.ts +10 -10
- package/extensions/discord/src/runtime.ts +1 -1
- package/extensions/google-antigravity-auth/README.md +3 -3
- package/extensions/google-antigravity-auth/index.ts +42 -18
- package/extensions/google-antigravity-auth/node_modules/.bin/openclaw +17 -0
- package/extensions/google-antigravity-auth/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/google-antigravity-auth/package.json +7 -4
- package/extensions/google-gemini-cli-auth/README.md +5 -5
- package/extensions/google-gemini-cli-auth/index.ts +4 -7
- package/extensions/google-gemini-cli-auth/node_modules/.bin/openclaw +17 -0
- package/extensions/google-gemini-cli-auth/oauth.test.ts +19 -7
- package/extensions/google-gemini-cli-auth/oauth.ts +122 -40
- package/extensions/google-gemini-cli-auth/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/google-gemini-cli-auth/package.json +7 -4
- package/extensions/googlechat/index.ts +4 -5
- package/extensions/googlechat/node_modules/.bin/clawdbot +3 -7
- package/extensions/googlechat/node_modules/.bin/moltbot +3 -7
- package/extensions/googlechat/node_modules/.bin/openclaw +17 -0
- package/extensions/googlechat/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/googlechat/package.json +14 -14
- package/extensions/googlechat/src/accounts.ts +40 -26
- package/extensions/googlechat/src/actions.ts +37 -18
- package/extensions/googlechat/src/api.test.ts +0 -1
- package/extensions/googlechat/src/api.ts +37 -14
- package/extensions/googlechat/src/auth.ts +17 -7
- package/extensions/googlechat/src/channel.ts +48 -45
- package/extensions/googlechat/src/monitor.test.ts +2 -7
- package/extensions/googlechat/src/monitor.ts +115 -66
- package/extensions/googlechat/src/onboarding.ts +29 -38
- package/extensions/googlechat/src/runtime.ts +1 -1
- package/extensions/googlechat/src/targets.test.ts +1 -4
- package/extensions/googlechat/src/targets.ts +15 -5
- package/extensions/googlechat/src/types.config.ts +1 -1
- package/extensions/imessage/index.ts +3 -4
- package/extensions/imessage/node_modules/.bin/openclaw +17 -0
- package/extensions/imessage/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/imessage/package.json +7 -4
- package/extensions/imessage/src/channel.ts +8 -8
- package/extensions/imessage/src/runtime.ts +1 -1
- package/extensions/line/index.ts +4 -5
- package/extensions/line/node_modules/.bin/clawdbot +3 -7
- package/extensions/line/node_modules/.bin/moltbot +3 -7
- package/extensions/line/node_modules/.bin/openclaw +17 -0
- package/extensions/line/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/line/package.json +8 -8
- package/extensions/line/src/card-command.ts +17 -11
- package/extensions/line/src/channel.logout.test.ts +22 -21
- package/extensions/line/src/channel.sendPayload.test.ts +23 -25
- package/extensions/line/src/channel.ts +62 -54
- package/extensions/line/src/runtime.ts +1 -1
- package/extensions/llm-task/README.md +6 -6
- package/extensions/llm-task/index.ts +2 -3
- package/extensions/llm-task/node_modules/.bin/openclaw +17 -0
- package/extensions/llm-task/package.json +7 -4
- package/extensions/llm-task/src/llm-task-tool.test.ts +20 -13
- package/extensions/llm-task/src/llm-task-tool.ts +48 -29
- package/extensions/lobster/README.md +14 -19
- package/extensions/lobster/SKILL.md +14 -7
- package/extensions/lobster/index.ts +5 -4
- package/extensions/lobster/node_modules/.bin/openclaw +17 -0
- package/extensions/lobster/package.json +7 -4
- package/extensions/lobster/src/lobster-tool.test.ts +141 -38
- package/extensions/lobster/src/lobster-tool.ts +107 -19
- package/extensions/matrix/CHANGELOG.md +27 -11
- package/extensions/matrix/index.ts +3 -4
- package/extensions/matrix/node_modules/.bin/clawdbot +3 -7
- package/extensions/matrix/node_modules/.bin/markdown-it +3 -7
- package/extensions/matrix/node_modules/.bin/moltbot +3 -7
- package/extensions/matrix/node_modules/.bin/openclaw +17 -0
- package/extensions/matrix/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/matrix/package.json +15 -15
- package/extensions/matrix/src/actions.ts +17 -7
- package/extensions/matrix/src/channel.directory.test.ts +13 -5
- package/extensions/matrix/src/channel.ts +64 -38
- package/extensions/matrix/src/config-schema.ts +1 -1
- package/extensions/matrix/src/directory-live.ts +22 -9
- package/extensions/matrix/src/group-mentions.ts +11 -6
- package/extensions/matrix/src/matrix/accounts.test.ts +0 -1
- package/extensions/matrix/src/matrix/accounts.ts +5 -3
- package/extensions/matrix/src/matrix/actions/client.ts +9 -5
- package/extensions/matrix/src/matrix/actions/messages.ts +17 -9
- package/extensions/matrix/src/matrix/actions/pins.ts +12 -6
- package/extensions/matrix/src/matrix/actions/reactions.ts +24 -12
- package/extensions/matrix/src/matrix/actions/room.ts +10 -13
- package/extensions/matrix/src/matrix/actions/summary.ts +4 -6
- package/extensions/matrix/src/matrix/client/config.ts +5 -10
- package/extensions/matrix/src/matrix/client/create-client.ts +12 -16
- package/extensions/matrix/src/matrix/client/logging.ts +17 -16
- package/extensions/matrix/src/matrix/client/shared.ts +6 -5
- package/extensions/matrix/src/matrix/client/storage.ts +12 -12
- package/extensions/matrix/src/matrix/client.test.ts +0 -1
- package/extensions/matrix/src/matrix/client.ts +1 -5
- package/extensions/matrix/src/matrix/credentials.ts +7 -5
- package/extensions/matrix/src/matrix/deps.ts +8 -5
- package/extensions/matrix/src/matrix/format.test.ts +0 -1
- package/extensions/matrix/src/matrix/monitor/allowlist.ts +7 -3
- package/extensions/matrix/src/matrix/monitor/auto-join.ts +7 -4
- package/extensions/matrix/src/matrix/monitor/direct.ts +11 -12
- package/extensions/matrix/src/matrix/monitor/events.ts +2 -4
- package/extensions/matrix/src/matrix/monitor/handler.ts +67 -42
- package/extensions/matrix/src/matrix/monitor/index.ts +27 -15
- package/extensions/matrix/src/matrix/monitor/location.ts +28 -11
- package/extensions/matrix/src/matrix/monitor/media.test.ts +1 -2
- package/extensions/matrix/src/matrix/monitor/media.ts +8 -8
- package/extensions/matrix/src/matrix/monitor/replies.ts +5 -4
- package/extensions/matrix/src/matrix/monitor/room-info.ts +5 -8
- package/extensions/matrix/src/matrix/monitor/rooms.ts +7 -2
- package/extensions/matrix/src/matrix/monitor/threads.ts +6 -2
- package/extensions/matrix/src/matrix/poll-types.test.ts +0 -1
- package/extensions/matrix/src/matrix/poll-types.ts +17 -8
- package/extensions/matrix/src/matrix/send/client.ts +8 -5
- package/extensions/matrix/src/matrix/send/formatting.ts +14 -17
- package/extensions/matrix/src/matrix/send/media.ts +17 -8
- package/extensions/matrix/src/matrix/send/targets.test.ts +7 -11
- package/extensions/matrix/src/matrix/send/targets.ts +19 -27
- package/extensions/matrix/src/matrix/send.test.ts +1 -2
- package/extensions/matrix/src/matrix/send.ts +10 -5
- package/extensions/matrix/src/onboarding.ts +26 -16
- package/extensions/matrix/src/outbound.ts +2 -3
- package/extensions/matrix/src/resolve-targets.ts +8 -8
- package/extensions/matrix/src/runtime.ts +1 -1
- package/extensions/matrix/src/tool-actions.ts +15 -11
- package/extensions/mattermost/index.ts +3 -4
- package/extensions/mattermost/node_modules/.bin/openclaw +17 -0
- package/extensions/mattermost/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/mattermost/package.json +8 -5
- package/extensions/mattermost/src/channel.test.ts +9 -4
- package/extensions/mattermost/src/channel.ts +10 -12
- package/extensions/mattermost/src/config-schema.ts +2 -3
- package/extensions/mattermost/src/group-mentions.ts +4 -3
- package/extensions/mattermost/src/mattermost/accounts.ts +31 -18
- package/extensions/mattermost/src/mattermost/client.ts +18 -6
- package/extensions/mattermost/src/mattermost/monitor-helpers.ts +33 -17
- package/extensions/mattermost/src/mattermost/monitor.ts +137 -71
- package/extensions/mattermost/src/mattermost/probe.ts +6 -2
- package/extensions/mattermost/src/mattermost/send.ts +21 -7
- package/extensions/mattermost/src/normalize.ts +12 -4
- package/extensions/mattermost/src/onboarding-helpers.ts +9 -7
- package/extensions/mattermost/src/onboarding.ts +4 -5
- package/extensions/mattermost/src/runtime.ts +1 -1
- package/extensions/mattermost/src/types.ts +1 -1
- package/extensions/memory-core/index.ts +6 -4
- package/extensions/memory-core/node_modules/.bin/clawdbot +3 -7
- package/extensions/memory-core/node_modules/.bin/moltbot +3 -7
- package/extensions/memory-core/node_modules/.bin/openclaw +17 -0
- package/extensions/memory-core/package.json +10 -10
- package/extensions/memory-lancedb/config.ts +34 -9
- package/extensions/memory-lancedb/index.test.ts +10 -8
- package/extensions/memory-lancedb/index.ts +76 -58
- package/extensions/memory-lancedb/node_modules/.bin/arrow2csv +3 -7
- package/extensions/memory-lancedb/node_modules/.bin/openai +3 -7
- package/extensions/memory-lancedb/node_modules/.bin/openclaw +17 -0
- package/extensions/memory-lancedb/{clawdbot.plugin.json → openclaw.plugin.json} +4 -11
- package/extensions/memory-lancedb/package.json +9 -6
- package/extensions/minimax-portal-auth/README.md +33 -0
- package/extensions/minimax-portal-auth/index.ts +155 -0
- package/extensions/minimax-portal-auth/node_modules/.bin/openclaw +17 -0
- package/extensions/minimax-portal-auth/oauth.ts +247 -0
- package/extensions/minimax-portal-auth/openclaw.plugin.json +9 -0
- package/extensions/minimax-portal-auth/package.json +14 -0
- package/extensions/msteams/CHANGELOG.md +24 -9
- package/extensions/msteams/index.ts +3 -4
- package/extensions/msteams/node_modules/.bin/clawdbot +3 -7
- package/extensions/msteams/node_modules/.bin/moltbot +3 -7
- package/extensions/msteams/node_modules/.bin/openclaw +17 -0
- package/extensions/msteams/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/msteams/package.json +16 -13
- package/extensions/msteams/src/attachments/download.ts +53 -21
- package/extensions/msteams/src/attachments/graph.ts +48 -16
- package/extensions/msteams/src/attachments/html.ts +23 -9
- package/extensions/msteams/src/attachments/shared.ts +54 -18
- package/extensions/msteams/src/attachments.test.ts +1 -2
- package/extensions/msteams/src/channel.directory.test.ts +8 -6
- package/extensions/msteams/src/channel.ts +49 -26
- package/extensions/msteams/src/conversation-store-fs.test.ts +10 -10
- package/extensions/msteams/src/conversation-store-fs.ts +15 -5
- package/extensions/msteams/src/conversation-store-memory.ts +3 -1
- package/extensions/msteams/src/directory-live.ts +42 -16
- package/extensions/msteams/src/errors.test.ts +0 -1
- package/extensions/msteams/src/errors.ts +48 -16
- package/extensions/msteams/src/file-consent-helpers.test.ts +12 -3
- package/extensions/msteams/src/file-consent.ts +6 -2
- package/extensions/msteams/src/graph-chat.ts +5 -4
- package/extensions/msteams/src/graph-upload.ts +27 -19
- package/extensions/msteams/src/inbound.test.ts +0 -1
- package/extensions/msteams/src/inbound.ts +15 -5
- package/extensions/msteams/src/media-helpers.test.ts +9 -6
- package/extensions/msteams/src/media-helpers.ts +16 -7
- package/extensions/msteams/src/messenger.test.ts +7 -4
- package/extensions/msteams/src/messenger.ts +56 -21
- package/extensions/msteams/src/monitor-handler/inbound-media.ts +4 -2
- package/extensions/msteams/src/monitor-handler/message-handler.ts +66 -56
- package/extensions/msteams/src/monitor-handler.ts +5 -9
- package/extensions/msteams/src/monitor.ts +22 -17
- package/extensions/msteams/src/onboarding.ts +21 -22
- package/extensions/msteams/src/outbound.ts +1 -2
- package/extensions/msteams/src/pending-uploads.ts +7 -5
- package/extensions/msteams/src/policy.test.ts +1 -2
- package/extensions/msteams/src/policy.ts +41 -15
- package/extensions/msteams/src/polls-store-memory.ts +3 -1
- package/extensions/msteams/src/polls-store.test.ts +2 -4
- package/extensions/msteams/src/polls.test.ts +8 -8
- package/extensions/msteams/src/polls.ts +33 -17
- package/extensions/msteams/src/probe.test.ts +4 -3
- package/extensions/msteams/src/probe.ts +19 -11
- package/extensions/msteams/src/reply-dispatcher.ts +8 -6
- package/extensions/msteams/src/resolve-allowlist.ts +39 -19
- package/extensions/msteams/src/runtime.ts +1 -1
- package/extensions/msteams/src/send-context.ts +13 -5
- package/extensions/msteams/src/send.ts +53 -23
- package/extensions/msteams/src/sent-message-cache.test.ts +0 -1
- package/extensions/msteams/src/sent-message-cache.ts +9 -3
- package/extensions/msteams/src/storage.ts +6 -3
- package/extensions/msteams/src/store-fs.ts +6 -3
- package/extensions/msteams/src/token.ts +1 -1
- package/extensions/nextcloud-talk/index.ts +3 -4
- package/extensions/nextcloud-talk/node_modules/.bin/openclaw +17 -0
- package/extensions/nextcloud-talk/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/nextcloud-talk/package.json +8 -5
- package/extensions/nextcloud-talk/src/accounts.ts +40 -20
- package/extensions/nextcloud-talk/src/channel.ts +25 -20
- package/extensions/nextcloud-talk/src/config-schema.ts +1 -1
- package/extensions/nextcloud-talk/src/format.ts +13 -13
- package/extensions/nextcloud-talk/src/inbound.ts +23 -39
- package/extensions/nextcloud-talk/src/monitor.ts +8 -8
- package/extensions/nextcloud-talk/src/normalize.ts +12 -4
- package/extensions/nextcloud-talk/src/onboarding.ts +8 -6
- package/extensions/nextcloud-talk/src/policy.ts +20 -7
- package/extensions/nextcloud-talk/src/room-info.ts +29 -15
- package/extensions/nextcloud-talk/src/runtime.ts +1 -1
- package/extensions/nextcloud-talk/src/send.ts +7 -3
- package/extensions/nextcloud-talk/src/signature.ts +9 -4
- package/extensions/nextcloud-talk/src/types.ts +1 -1
- package/extensions/nostr/CHANGELOG.md +17 -6
- package/extensions/nostr/README.md +21 -21
- package/extensions/nostr/index.ts +8 -9
- package/extensions/nostr/node_modules/.bin/clawdbot +3 -7
- package/extensions/nostr/node_modules/.bin/moltbot +3 -7
- package/extensions/nostr/node_modules/.bin/openclaw +17 -0
- package/extensions/nostr/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/nostr/package.json +13 -10
- package/extensions/nostr/src/channel.test.ts +15 -5
- package/extensions/nostr/src/channel.ts +30 -19
- package/extensions/nostr/src/config-schema.ts +2 -2
- package/extensions/nostr/src/metrics.ts +33 -19
- package/extensions/nostr/src/nostr-bus.fuzz.test.ts +11 -22
- package/extensions/nostr/src/nostr-bus.integration.test.ts +2 -6
- package/extensions/nostr/src/nostr-bus.test.ts +3 -3
- package/extensions/nostr/src/nostr-bus.ts +56 -82
- package/extensions/nostr/src/nostr-profile-http.test.ts +10 -10
- package/extensions/nostr/src/nostr-profile-http.ts +37 -18
- package/extensions/nostr/src/nostr-profile-import.test.ts +2 -3
- package/extensions/nostr/src/nostr-profile-import.ts +10 -7
- package/extensions/nostr/src/nostr-profile.fuzz.test.ts +7 -9
- package/extensions/nostr/src/nostr-profile.test.ts +7 -7
- package/extensions/nostr/src/nostr-profile.ts +56 -21
- package/extensions/nostr/src/nostr-state-store.test.ts +14 -11
- package/extensions/nostr/src/nostr-state-store.ts +29 -29
- package/extensions/nostr/src/runtime.ts +1 -1
- package/extensions/nostr/src/seen-tracker.ts +48 -16
- package/extensions/nostr/src/types.test.ts +1 -5
- package/extensions/nostr/src/types.ts +8 -6
- package/extensions/open-prose/index.ts +2 -2
- package/extensions/open-prose/node_modules/.bin/openclaw +17 -0
- package/extensions/open-prose/package.json +7 -4
- package/extensions/open-prose/skills/prose/SKILL.md +69 -64
- package/extensions/open-prose/skills/prose/alts/arabian-nights.md +62 -62
- package/extensions/open-prose/skills/prose/alts/borges.md +65 -65
- package/extensions/open-prose/skills/prose/alts/folk.md +61 -61
- package/extensions/open-prose/skills/prose/alts/homer.md +59 -59
- package/extensions/open-prose/skills/prose/alts/kafka.md +67 -67
- package/extensions/open-prose/skills/prose/compiler.md +135 -131
- package/extensions/open-prose/skills/prose/examples/README.md +6 -6
- package/extensions/open-prose/skills/prose/examples/roadmap/README.md +8 -8
- package/extensions/open-prose/skills/prose/guidance/patterns.md +16 -16
- package/extensions/open-prose/skills/prose/help.md +22 -21
- package/extensions/open-prose/skills/prose/lib/README.md +14 -11
- package/extensions/open-prose/skills/prose/primitives/session.md +17 -11
- package/extensions/open-prose/skills/prose/prose.md +25 -23
- package/extensions/open-prose/skills/prose/state/filesystem.md +61 -41
- package/extensions/open-prose/skills/prose/state/in-context.md +46 -42
- package/extensions/open-prose/skills/prose/state/postgres.md +70 -65
- package/extensions/open-prose/skills/prose/state/sqlite.md +45 -43
- package/extensions/qq/node_modules/.bin/vitest +3 -7
- package/extensions/qq/src/channel.ts +30 -2
- package/extensions/qq/src/onebot/api.test.ts +44 -0
- package/extensions/qq/src/onebot/api.ts +13 -0
- package/extensions/qq/src/send.test.ts +53 -8
- package/extensions/qq/src/send.ts +29 -1
- package/extensions/qwen-portal-auth/README.md +3 -3
- package/extensions/qwen-portal-auth/index.ts +6 -3
- package/extensions/qwen-portal-auth/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/signal/index.ts +3 -4
- package/extensions/signal/node_modules/.bin/openclaw +17 -0
- package/extensions/signal/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/signal/package.json +7 -4
- package/extensions/signal/src/channel.ts +7 -4
- package/extensions/signal/src/runtime.ts +1 -1
- package/extensions/slack/index.ts +3 -4
- package/extensions/slack/node_modules/.bin/openclaw +17 -0
- package/extensions/slack/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/slack/package.json +7 -4
- package/extensions/slack/src/channel.ts +43 -16
- package/extensions/slack/src/runtime.ts +1 -1
- package/extensions/telegram/index.ts +3 -4
- package/extensions/telegram/node_modules/.bin/openclaw +17 -0
- package/extensions/telegram/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/telegram/package.json +7 -4
- package/extensions/telegram/src/channel.ts +30 -17
- package/extensions/telegram/src/runtime.ts +1 -1
- package/extensions/tlon/README.md +3 -3
- package/extensions/tlon/index.ts +3 -4
- package/extensions/tlon/node_modules/.bin/openclaw +17 -0
- package/extensions/tlon/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/tlon/package.json +12 -9
- package/extensions/tlon/src/channel.ts +45 -32
- package/extensions/tlon/src/config-schema.test.ts +0 -1
- package/extensions/tlon/src/config-schema.ts +1 -1
- package/extensions/tlon/src/monitor/discovery.ts +8 -5
- package/extensions/tlon/src/monitor/history.ts +8 -7
- package/extensions/tlon/src/monitor/index.ts +98 -48
- package/extensions/tlon/src/monitor/processed-messages.test.ts +0 -1
- package/extensions/tlon/src/monitor/processed-messages.ts +12 -4
- package/extensions/tlon/src/monitor/utils.ts +28 -12
- package/extensions/tlon/src/onboarding.ts +8 -7
- package/extensions/tlon/src/runtime.ts +1 -1
- package/extensions/tlon/src/targets.ts +15 -5
- package/extensions/tlon/src/types.ts +16 -9
- package/extensions/tlon/src/urbit/http-api.ts +3 -1
- package/extensions/tlon/src/urbit/send.ts +7 -3
- package/extensions/tlon/src/urbit/sse-client.test.ts +0 -1
- package/extensions/tlon/src/urbit/sse-client.ts +18 -6
- package/extensions/twitch/CHANGELOG.md +10 -3
- package/extensions/twitch/README.md +8 -8
- package/extensions/twitch/index.ts +3 -4
- package/extensions/twitch/node_modules/.bin/clawdbot +3 -7
- package/extensions/twitch/node_modules/.bin/moltbot +3 -7
- package/extensions/twitch/node_modules/.bin/openclaw +17 -0
- package/extensions/twitch/package.json +6 -6
- package/extensions/twitch/src/access-control.test.ts +1 -1
- package/extensions/twitch/src/access-control.ts +12 -4
- package/extensions/twitch/src/actions.ts +2 -2
- package/extensions/twitch/src/client-manager-registry.ts +1 -1
- package/extensions/twitch/src/config-schema.ts +1 -1
- package/extensions/twitch/src/config.test.ts +0 -1
- package/extensions/twitch/src/config.ts +3 -3
- package/extensions/twitch/src/monitor.ts +11 -7
- package/extensions/twitch/src/onboarding.test.ts +1 -1
- package/extensions/twitch/src/onboarding.ts +23 -17
- package/extensions/twitch/src/outbound.test.ts +2 -2
- package/extensions/twitch/src/outbound.ts +6 -6
- package/extensions/twitch/src/plugin.test.ts +2 -2
- package/extensions/twitch/src/plugin.ts +22 -22
- package/extensions/twitch/src/probe.test.ts +2 -5
- package/extensions/twitch/src/probe.ts +3 -1
- package/extensions/twitch/src/runtime.ts +1 -1
- package/extensions/twitch/src/send.test.ts +2 -2
- package/extensions/twitch/src/send.ts +6 -6
- package/extensions/twitch/src/status.test.ts +1 -1
- package/extensions/twitch/src/status.ts +4 -2
- package/extensions/twitch/src/token.test.ts +12 -12
- package/extensions/twitch/src/token.ts +14 -10
- package/extensions/twitch/src/twitch-client.test.ts +10 -4
- package/extensions/twitch/src/twitch-client.ts +4 -4
- package/extensions/twitch/src/types.ts +12 -12
- package/extensions/twitch/src/utils/markdown.ts +10 -4
- package/extensions/voice-call/CHANGELOG.md +32 -13
- package/extensions/voice-call/README.md +29 -25
- package/extensions/voice-call/index.ts +45 -49
- package/extensions/voice-call/node_modules/.bin/openclaw +17 -0
- package/extensions/voice-call/{clawdbot.plugin.json → openclaw.plugin.json} +11 -53
- package/extensions/voice-call/package.json +8 -5
- package/extensions/voice-call/src/cli.ts +92 -113
- package/extensions/voice-call/src/config.test.ts +1 -4
- package/extensions/voice-call/src/config.ts +88 -110
- package/extensions/voice-call/src/core-bridge.ts +18 -16
- package/extensions/voice-call/src/manager/context.ts +1 -1
- package/extensions/voice-call/src/manager/events.ts +18 -9
- package/extensions/voice-call/src/manager/lookup.ts +3 -1
- package/extensions/voice-call/src/manager/outbound.ts +46 -19
- package/extensions/voice-call/src/manager/state.ts +4 -6
- package/extensions/voice-call/src/manager/store.ts +6 -3
- package/extensions/voice-call/src/manager/timers.ts +11 -8
- package/extensions/voice-call/src/manager.test.ts +9 -12
- package/extensions/voice-call/src/manager.ts +69 -79
- package/extensions/voice-call/src/media-stream.test.ts +0 -1
- package/extensions/voice-call/src/media-stream.ts +12 -26
- package/extensions/voice-call/src/providers/mock.ts +13 -16
- package/extensions/voice-call/src/providers/plivo.test.ts +0 -1
- package/extensions/voice-call/src/providers/plivo.ts +27 -29
- package/extensions/voice-call/src/providers/stt-openai-realtime.ts +8 -8
- package/extensions/voice-call/src/providers/telnyx.ts +5 -11
- package/extensions/voice-call/src/providers/tts-openai.ts +9 -14
- package/extensions/voice-call/src/providers/twilio/api.ts +9 -12
- package/extensions/voice-call/src/providers/twilio/webhook.ts +2 -4
- package/extensions/voice-call/src/providers/twilio.test.ts +1 -5
- package/extensions/voice-call/src/providers/twilio.ts +34 -46
- package/extensions/voice-call/src/response-generator.ts +8 -21
- package/extensions/voice-call/src/runtime.ts +12 -25
- package/extensions/voice-call/src/telephony-audio.ts +14 -12
- package/extensions/voice-call/src/telephony-tts.ts +21 -12
- package/extensions/voice-call/src/tunnel.ts +7 -24
- package/extensions/voice-call/src/types.ts +0 -1
- package/extensions/voice-call/src/utils.ts +3 -1
- package/extensions/voice-call/src/voice-mapping.ts +3 -1
- package/extensions/voice-call/src/webhook-security.test.ts +12 -21
- package/extensions/voice-call/src/webhook-security.ts +25 -29
- package/extensions/voice-call/src/webhook.ts +22 -57
- package/extensions/whatsapp/index.ts +3 -4
- package/extensions/whatsapp/node_modules/.bin/openclaw +17 -0
- package/extensions/whatsapp/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/whatsapp/package.json +7 -4
- package/extensions/whatsapp/src/channel.ts +26 -18
- package/extensions/whatsapp/src/runtime.ts +1 -1
- package/extensions/zalo/CHANGELOG.md +28 -11
- package/extensions/zalo/README.md +10 -10
- package/extensions/zalo/index.ts +3 -4
- package/extensions/zalo/node_modules/.bin/clawdbot +3 -7
- package/extensions/zalo/node_modules/.bin/moltbot +3 -7
- package/extensions/zalo/node_modules/.bin/openclaw +17 -0
- package/extensions/zalo/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/zalo/package.json +12 -9
- package/extensions/zalo/src/accounts.ts +25 -16
- package/extensions/zalo/src/actions.ts +15 -10
- package/extensions/zalo/src/api.ts +3 -1
- package/extensions/zalo/src/channel.directory.test.ts +16 -8
- package/extensions/zalo/src/channel.ts +58 -38
- package/extensions/zalo/src/config-schema.ts +1 -1
- package/extensions/zalo/src/monitor.ts +40 -47
- package/extensions/zalo/src/monitor.webhook.test.ts +25 -22
- package/extensions/zalo/src/onboarding.ts +58 -62
- package/extensions/zalo/src/proxy.ts +8 -5
- package/extensions/zalo/src/runtime.ts +1 -1
- package/extensions/zalo/src/send.ts +20 -13
- package/extensions/zalo/src/status-issues.ts +12 -9
- package/extensions/zalo/src/token.ts +16 -8
- package/extensions/zalouser/CHANGELOG.md +17 -6
- package/extensions/zalouser/README.md +24 -20
- package/extensions/zalouser/index.ts +4 -5
- package/extensions/zalouser/node_modules/.bin/clawdbot +3 -7
- package/extensions/zalouser/node_modules/.bin/moltbot +3 -7
- package/extensions/zalouser/node_modules/.bin/openclaw +17 -0
- package/extensions/zalouser/{clawdbot.plugin.json → openclaw.plugin.json} +1 -3
- package/extensions/zalouser/package.json +10 -7
- package/extensions/zalouser/src/accounts.ts +47 -29
- package/extensions/zalouser/src/channel.test.ts +3 -2
- package/extensions/zalouser/src/channel.ts +113 -68
- package/extensions/zalouser/src/config-schema.ts +1 -1
- package/extensions/zalouser/src/monitor.ts +54 -38
- package/extensions/zalouser/src/onboarding.ts +86 -70
- package/extensions/zalouser/src/probe.ts +1 -1
- package/extensions/zalouser/src/runtime.ts +1 -1
- package/extensions/zalouser/src/send.ts +15 -5
- package/extensions/zalouser/src/status-issues.test.ts +0 -1
- package/extensions/zalouser/src/status-issues.ts +14 -6
- package/extensions/zalouser/src/tool.ts +29 -21
- package/extensions/zalouser/src/types.ts +8 -2
- package/extensions/zalouser/src/zca.ts +3 -9
- package/git-hooks/pre-commit +0 -0
- package/package.json +136 -147
- package/scripts/format-staged.js +28 -27
- package/scripts/postinstall.js +85 -24
- package/scripts/setup-git-hooks.js +13 -5
- package/skills/1password/SKILL.md +20 -3
- package/skills/apple-notes/SKILL.md +29 -2
- package/skills/apple-reminders/SKILL.md +30 -1
- package/skills/bear-notes/SKILL.md +29 -1
- package/skills/bird/SKILL.md +29 -2
- package/skills/blogwatcher/SKILL.md +24 -1
- package/skills/blucli/SKILL.md +21 -1
- package/skills/bluebubbles/SKILL.md +7 -2
- package/skills/camsnap/SKILL.md +21 -1
- package/skills/canvas/SKILL.md +28 -19
- package/skills/clawhub/SKILL.md +77 -0
- package/skills/coding-agent/SKILL.md +36 -30
- package/skills/discord/SKILL.md +13 -6
- package/skills/eightctl/SKILL.md +22 -1
- package/skills/food-order/SKILL.md +8 -1
- package/skills/gemini/SKILL.md +21 -1
- package/skills/gifgrep/SKILL.md +33 -1
- package/skills/github/SKILL.md +31 -2
- package/skills/gog/SKILL.md +25 -1
- package/skills/goplaces/SKILL.md +23 -1
- package/skills/himalaya/SKILL.md +41 -1
- package/skills/himalaya/references/configuration.md +10 -0
- package/skills/himalaya/references/message-composition.md +17 -0
- package/skills/imsg/SKILL.md +22 -1
- package/skills/local-places/SKILL.md +14 -3
- package/skills/local-places/pyproject.toml +2 -8
- package/skills/mcporter/SKILL.md +24 -1
- package/skills/model-usage/SKILL.md +27 -3
- package/skills/model-usage/references/codexbar-cli.md +7 -2
- package/skills/nano-banana-pro/SKILL.md +26 -3
- package/skills/nano-banana-pro/scripts/generate_image.py +1 -1
- package/skills/nano-pdf/SKILL.md +19 -1
- package/skills/notion/SKILL.md +17 -1
- package/skills/obsidian/SKILL.md +27 -1
- package/skills/openai-image-gen/SKILL.md +19 -1
- package/skills/openai-whisper/SKILL.md +20 -1
- package/skills/openai-whisper-api/SKILL.md +14 -5
- package/skills/openhue/SKILL.md +22 -1
- package/skills/oracle/SKILL.md +21 -1
- package/skills/ordercli/SKILL.md +32 -1
- package/skills/peekaboo/SKILL.md +38 -1
- package/skills/sag/SKILL.md +26 -1
- package/skills/session-logs/SKILL.md +17 -7
- package/skills/sherpa-onnx-tts/SKILL.md +64 -10
- package/skills/sherpa-onnx-tts/bin/sherpa-onnx-tts +0 -0
- package/skills/skill-creator/SKILL.md +0 -1
- package/skills/slack/SKILL.md +11 -11
- package/skills/songsee/SKILL.md +21 -1
- package/skills/sonoscli/SKILL.md +21 -1
- package/skills/spotify-player/SKILL.md +31 -1
- package/skills/summarize/SKILL.md +21 -1
- package/skills/things-mac/SKILL.md +28 -3
- package/skills/tmux/SKILL.md +10 -8
- package/skills/tmux/scripts/find-sessions.sh +2 -2
- package/skills/tmux/scripts/wait-for-text.sh +0 -0
- package/skills/trello/SKILL.md +13 -2
- package/skills/video-frames/SKILL.md +18 -1
- package/skills/voice-call/SKILL.md +14 -4
- package/skills/wacli/SKILL.md +32 -2
- package/skills/weather/SKILL.md +6 -1
- package/extensions/diagnostics-otel/node_modules/.bin/acorn.CMD +0 -12
- package/extensions/diagnostics-otel/node_modules/.bin/acorn.ps1 +0 -41
- package/extensions/googlechat/node_modules/.bin/clawdbot.CMD +0 -12
- package/extensions/googlechat/node_modules/.bin/clawdbot.ps1 +0 -41
- package/extensions/googlechat/node_modules/.bin/moltbot.CMD +0 -12
- package/extensions/googlechat/node_modules/.bin/moltbot.ps1 +0 -41
- package/extensions/line/node_modules/.bin/clawdbot.CMD +0 -12
- package/extensions/line/node_modules/.bin/clawdbot.ps1 +0 -41
- package/extensions/line/node_modules/.bin/moltbot.CMD +0 -12
- package/extensions/line/node_modules/.bin/moltbot.ps1 +0 -41
- package/extensions/matrix/node_modules/.bin/clawdbot.CMD +0 -12
- package/extensions/matrix/node_modules/.bin/clawdbot.ps1 +0 -41
- package/extensions/matrix/node_modules/.bin/markdown-it.CMD +0 -12
- package/extensions/matrix/node_modules/.bin/markdown-it.ps1 +0 -41
- package/extensions/matrix/node_modules/.bin/moltbot.CMD +0 -12
- package/extensions/matrix/node_modules/.bin/moltbot.ps1 +0 -41
- package/extensions/memory-core/node_modules/.bin/clawdbot.CMD +0 -12
- package/extensions/memory-core/node_modules/.bin/clawdbot.ps1 +0 -41
- package/extensions/memory-core/node_modules/.bin/moltbot.CMD +0 -12
- package/extensions/memory-core/node_modules/.bin/moltbot.ps1 +0 -41
- package/extensions/memory-lancedb/node_modules/.bin/arrow2csv.CMD +0 -12
- package/extensions/memory-lancedb/node_modules/.bin/arrow2csv.ps1 +0 -41
- package/extensions/memory-lancedb/node_modules/.bin/openai.CMD +0 -12
- package/extensions/memory-lancedb/node_modules/.bin/openai.ps1 +0 -41
- package/extensions/msteams/node_modules/.bin/clawdbot.CMD +0 -12
- package/extensions/msteams/node_modules/.bin/clawdbot.ps1 +0 -41
- package/extensions/msteams/node_modules/.bin/moltbot.CMD +0 -12
- package/extensions/msteams/node_modules/.bin/moltbot.ps1 +0 -41
- package/extensions/nostr/node_modules/.bin/clawdbot.CMD +0 -12
- package/extensions/nostr/node_modules/.bin/clawdbot.ps1 +0 -41
- package/extensions/nostr/node_modules/.bin/moltbot.CMD +0 -12
- package/extensions/nostr/node_modules/.bin/moltbot.ps1 +0 -41
- package/extensions/nostr/node_modules/.bin/tsc +0 -21
- package/extensions/nostr/node_modules/.bin/tsc.CMD +0 -12
- package/extensions/nostr/node_modules/.bin/tsc.ps1 +0 -41
- package/extensions/nostr/node_modules/.bin/tsserver +0 -21
- package/extensions/nostr/node_modules/.bin/tsserver.CMD +0 -12
- package/extensions/nostr/node_modules/.bin/tsserver.ps1 +0 -41
- package/extensions/qq/node_modules/.bin/vite +0 -21
- package/extensions/qq/node_modules/.bin/vite.CMD +0 -12
- package/extensions/qq/node_modules/.bin/vite.ps1 +0 -41
- package/extensions/qq/node_modules/.bin/vitest.CMD +0 -12
- package/extensions/qq/node_modules/.bin/vitest.ps1 +0 -41
- package/extensions/twitch/node_modules/.bin/clawdbot.CMD +0 -12
- package/extensions/twitch/node_modules/.bin/clawdbot.ps1 +0 -41
- package/extensions/twitch/node_modules/.bin/moltbot.CMD +0 -12
- package/extensions/twitch/node_modules/.bin/moltbot.ps1 +0 -41
- package/extensions/zalo/node_modules/.bin/clawdbot.CMD +0 -12
- package/extensions/zalo/node_modules/.bin/clawdbot.ps1 +0 -41
- package/extensions/zalo/node_modules/.bin/moltbot.CMD +0 -12
- package/extensions/zalo/node_modules/.bin/moltbot.ps1 +0 -41
- package/extensions/zalouser/node_modules/.bin/clawdbot.CMD +0 -12
- package/extensions/zalouser/node_modules/.bin/clawdbot.ps1 +0 -41
- package/extensions/zalouser/node_modules/.bin/moltbot.CMD +0 -12
- package/extensions/zalouser/node_modules/.bin/moltbot.ps1 +0 -41
- package/skills/clawdhub/SKILL.md +0 -53
- /package/docs/{whatsapp-clawd.jpg → whatsapp-openclaw.jpg} +0 -0
- /package/extensions/diagnostics-otel/{clawdbot.plugin.json → openclaw.plugin.json} +0 -0
- /package/extensions/llm-task/{clawdbot.plugin.json → openclaw.plugin.json} +0 -0
- /package/extensions/lobster/{clawdbot.plugin.json → openclaw.plugin.json} +0 -0
- /package/extensions/memory-core/{clawdbot.plugin.json → openclaw.plugin.json} +0 -0
- /package/extensions/open-prose/{clawdbot.plugin.json → openclaw.plugin.json} +0 -0
- /package/extensions/twitch/{clawdbot.plugin.json → openclaw.plugin.json} +0 -0
- /package/{moltbot.mjs → openclaw.mjs} +0 -0
package/README.md
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
# 🦞
|
|
1
|
+
# 🦞 OpenClaw — Personal AI Assistant
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
|
|
4
|
+
<picture>
|
|
5
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/openclaw/openclaw/main/docs/assets/openclaw-logo-text-dark.png">
|
|
6
|
+
<img src="https://raw.githubusercontent.com/openclaw/openclaw/main/docs/assets/openclaw-logo-text.png" alt="OpenClaw" width="500">
|
|
7
|
+
</picture>
|
|
5
8
|
</p>
|
|
6
9
|
|
|
7
10
|
<p align="center">
|
|
@@ -9,68 +12,67 @@
|
|
|
9
12
|
</p>
|
|
10
13
|
|
|
11
14
|
<p align="center">
|
|
12
|
-
<a href="https://github.com/
|
|
13
|
-
<a href="https://github.com/
|
|
14
|
-
<a href="https://deepwiki.com/moltbot/moltbot"><img src="https://img.shields.io/badge/DeepWiki-moltbot-111111?style=for-the-badge" alt="DeepWiki"></a>
|
|
15
|
+
<a href="https://github.com/openclaw/openclaw/actions/workflows/ci.yml?branch=main"><img src="https://img.shields.io/github/actions/workflow/status/openclaw/openclaw/ci.yml?branch=main&style=for-the-badge" alt="CI status"></a>
|
|
16
|
+
<a href="https://github.com/openclaw/openclaw/releases"><img src="https://img.shields.io/github/v/release/openclaw/openclaw?include_prereleases&style=for-the-badge" alt="GitHub release"></a>
|
|
15
17
|
<a href="https://discord.gg/clawd"><img src="https://img.shields.io/discord/1456350064065904867?label=Discord&logo=discord&logoColor=white&color=5865F2&style=for-the-badge" alt="Discord"></a>
|
|
16
18
|
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge" alt="MIT License"></a>
|
|
17
19
|
</p>
|
|
18
20
|
|
|
19
|
-
**
|
|
21
|
+
**OpenClaw** is a _personal AI assistant_ you run on your own devices.
|
|
20
22
|
It answers you on the channels you already use (WhatsApp, Telegram, Slack, Discord, Google Chat, Signal, iMessage, Microsoft Teams, WebChat), plus extension channels like BlueBubbles, Matrix, Zalo, and Zalo Personal. It can speak and listen on macOS/iOS/Android, and can render a live Canvas you control. The Gateway is just the control plane — the product is the assistant.
|
|
21
23
|
|
|
22
24
|
If you want a personal, single-user assistant that feels local, fast, and always-on, this is it.
|
|
23
25
|
|
|
24
|
-
[Website](https://
|
|
26
|
+
[Website](https://openclaw.ai) · [Docs](https://docs.openclaw.ai) · [DeepWiki](https://deepwiki.com/openclaw/openclaw) · [Getting Started](https://docs.openclaw.ai/start/getting-started) · [Updating](https://docs.openclaw.ai/install/updating) · [Showcase](https://docs.openclaw.ai/start/showcase) · [FAQ](https://docs.openclaw.ai/start/faq) · [Wizard](https://docs.openclaw.ai/start/wizard) · [Nix](https://github.com/openclaw/nix-clawdbot) · [Docker](https://docs.openclaw.ai/install/docker) · [Discord](https://discord.gg/clawd)
|
|
25
27
|
|
|
26
|
-
Preferred setup: run the onboarding wizard (`
|
|
28
|
+
Preferred setup: run the onboarding wizard (`openclaw onboard`). It walks through gateway, workspace, channels, and skills. The CLI wizard is the recommended path and works on **macOS, Linux, and Windows (via WSL2; strongly recommended)**.
|
|
27
29
|
Works with npm, pnpm, or bun.
|
|
28
|
-
New install? Start here: [Getting started](https://docs.
|
|
30
|
+
New install? Start here: [Getting started](https://docs.openclaw.ai/start/getting-started)
|
|
29
31
|
|
|
30
32
|
**Subscriptions (OAuth):**
|
|
33
|
+
|
|
31
34
|
- **[Anthropic](https://www.anthropic.com/)** (Claude Pro/Max)
|
|
32
35
|
- **[OpenAI](https://openai.com/)** (ChatGPT/Codex)
|
|
33
36
|
|
|
34
|
-
Model note: while any model is supported, I strongly recommend **Anthropic Pro/Max (100/200) + Opus 4.5** for long‑context strength and better prompt‑injection resistance. See [Onboarding](https://docs.
|
|
37
|
+
Model note: while any model is supported, I strongly recommend **Anthropic Pro/Max (100/200) + Opus 4.5** for long‑context strength and better prompt‑injection resistance. See [Onboarding](https://docs.openclaw.ai/start/onboarding).
|
|
35
38
|
|
|
36
39
|
## Models (selection + auth)
|
|
37
40
|
|
|
38
|
-
- Models config + CLI: [Models](https://docs.
|
|
39
|
-
- Auth profile rotation (OAuth vs API keys) + fallbacks: [Model failover](https://docs.
|
|
41
|
+
- Models config + CLI: [Models](https://docs.openclaw.ai/concepts/models)
|
|
42
|
+
- Auth profile rotation (OAuth vs API keys) + fallbacks: [Model failover](https://docs.openclaw.ai/concepts/model-failover)
|
|
40
43
|
|
|
41
44
|
## Install (recommended)
|
|
42
45
|
|
|
43
46
|
Runtime: **Node ≥22**.
|
|
44
47
|
|
|
45
48
|
```bash
|
|
46
|
-
npm install -g
|
|
47
|
-
# or: pnpm add -g
|
|
49
|
+
npm install -g openclaw@latest
|
|
50
|
+
# or: pnpm add -g openclaw@latest
|
|
48
51
|
|
|
49
|
-
|
|
52
|
+
openclaw onboard --install-daemon
|
|
50
53
|
```
|
|
51
54
|
|
|
52
55
|
The wizard installs the Gateway daemon (launchd/systemd user service) so it stays running.
|
|
53
|
-
Legacy note: `clawdbot` remains available as a compatibility shim.
|
|
54
56
|
|
|
55
57
|
## Quick start (TL;DR)
|
|
56
58
|
|
|
57
59
|
Runtime: **Node ≥22**.
|
|
58
60
|
|
|
59
|
-
Full beginner guide (auth, pairing, channels): [Getting started](https://docs.
|
|
61
|
+
Full beginner guide (auth, pairing, channels): [Getting started](https://docs.openclaw.ai/start/getting-started)
|
|
60
62
|
|
|
61
63
|
```bash
|
|
62
|
-
|
|
64
|
+
openclaw onboard --install-daemon
|
|
63
65
|
|
|
64
|
-
|
|
66
|
+
openclaw gateway --port 18789 --verbose
|
|
65
67
|
|
|
66
68
|
# Send a message
|
|
67
|
-
|
|
69
|
+
openclaw message send --to +1234567890 --message "Hello from OpenClaw"
|
|
68
70
|
|
|
69
71
|
# Talk to the assistant (optionally deliver back to any connected channel: WhatsApp/Telegram/Slack/Discord/Google Chat/Signal/iMessage/BlueBubbles/Microsoft Teams/Matrix/Zalo/Zalo Personal/WebChat)
|
|
70
|
-
|
|
72
|
+
openclaw agent --message "Ship checklist" --thinking high
|
|
71
73
|
```
|
|
72
74
|
|
|
73
|
-
Upgrading? [Updating guide](https://docs.
|
|
75
|
+
Upgrading? [Updating guide](https://docs.openclaw.ai/install/updating) (and run `openclaw doctor`).
|
|
74
76
|
|
|
75
77
|
## Development channels
|
|
76
78
|
|
|
@@ -78,94 +80,101 @@ Upgrading? [Updating guide](https://docs.molt.bot/install/updating) (and run `mo
|
|
|
78
80
|
- **beta**: prerelease tags (`vYYYY.M.D-beta.N`), npm dist-tag `beta` (macOS app may be missing).
|
|
79
81
|
- **dev**: moving head of `main`, npm dist-tag `dev` (when published).
|
|
80
82
|
|
|
81
|
-
Switch channels (git + npm): `
|
|
82
|
-
Details: [Development channels](https://docs.
|
|
83
|
+
Switch channels (git + npm): `openclaw update --channel stable|beta|dev`.
|
|
84
|
+
Details: [Development channels](https://docs.openclaw.ai/install/development-channels).
|
|
83
85
|
|
|
84
86
|
## From source (development)
|
|
85
87
|
|
|
86
88
|
Prefer `pnpm` for builds from source. Bun is optional for running TypeScript directly.
|
|
87
89
|
|
|
88
90
|
```bash
|
|
89
|
-
git clone https://github.com/
|
|
90
|
-
cd
|
|
91
|
+
git clone https://github.com/openclaw/openclaw.git
|
|
92
|
+
cd openclaw
|
|
91
93
|
|
|
92
94
|
pnpm install
|
|
93
95
|
pnpm ui:build # auto-installs UI deps on first run
|
|
94
96
|
pnpm build
|
|
95
97
|
|
|
96
|
-
pnpm
|
|
98
|
+
pnpm openclaw onboard --install-daemon
|
|
97
99
|
|
|
98
100
|
# Dev loop (auto-reload on TS changes)
|
|
99
101
|
pnpm gateway:watch
|
|
100
102
|
```
|
|
101
103
|
|
|
102
|
-
Note: `pnpm
|
|
104
|
+
Note: `pnpm openclaw ...` runs TypeScript directly (via `tsx`). `pnpm build` produces `dist/` for running via Node / the packaged `openclaw` binary.
|
|
103
105
|
|
|
104
106
|
## Security defaults (DM access)
|
|
105
107
|
|
|
106
|
-
|
|
108
|
+
OpenClaw connects to real messaging surfaces. Treat inbound DMs as **untrusted input**.
|
|
107
109
|
|
|
108
|
-
Full security guide: [Security](https://docs.
|
|
110
|
+
Full security guide: [Security](https://docs.openclaw.ai/gateway/security)
|
|
109
111
|
|
|
110
112
|
Default behavior on Telegram/WhatsApp/Signal/iMessage/Microsoft Teams/Discord/Google Chat/Slack:
|
|
113
|
+
|
|
111
114
|
- **DM pairing** (`dmPolicy="pairing"` / `channels.discord.dm.policy="pairing"` / `channels.slack.dm.policy="pairing"`): unknown senders receive a short pairing code and the bot does not process their message.
|
|
112
|
-
- Approve with: `
|
|
115
|
+
- Approve with: `openclaw pairing approve <channel> <code>` (then the sender is added to a local allowlist store).
|
|
113
116
|
- Public inbound DMs require an explicit opt-in: set `dmPolicy="open"` and include `"*"` in the channel allowlist (`allowFrom` / `channels.discord.dm.allowFrom` / `channels.slack.dm.allowFrom`).
|
|
114
117
|
|
|
115
|
-
Run `
|
|
118
|
+
Run `openclaw doctor` to surface risky/misconfigured DM policies.
|
|
116
119
|
|
|
117
120
|
## Highlights
|
|
118
121
|
|
|
119
|
-
- **[Local-first Gateway](https://docs.
|
|
120
|
-
- **[Multi-channel inbox](https://docs.
|
|
121
|
-
- **[Multi-agent routing](https://docs.
|
|
122
|
-
- **[Voice Wake](https://docs.
|
|
123
|
-
- **[Live Canvas](https://docs.
|
|
124
|
-
- **[First-class tools](https://docs.
|
|
125
|
-
- **[Companion apps](https://docs.
|
|
126
|
-
- **[Onboarding](https://docs.
|
|
122
|
+
- **[Local-first Gateway](https://docs.openclaw.ai/gateway)** — single control plane for sessions, channels, tools, and events.
|
|
123
|
+
- **[Multi-channel inbox](https://docs.openclaw.ai/channels)** — WhatsApp, Telegram, Slack, Discord, Google Chat, Signal, iMessage, BlueBubbles, Microsoft Teams, Matrix, Zalo, Zalo Personal, WebChat, macOS, iOS/Android.
|
|
124
|
+
- **[Multi-agent routing](https://docs.openclaw.ai/gateway/configuration)** — route inbound channels/accounts/peers to isolated agents (workspaces + per-agent sessions).
|
|
125
|
+
- **[Voice Wake](https://docs.openclaw.ai/nodes/voicewake) + [Talk Mode](https://docs.openclaw.ai/nodes/talk)** — always-on speech for macOS/iOS/Android with ElevenLabs.
|
|
126
|
+
- **[Live Canvas](https://docs.openclaw.ai/platforms/mac/canvas)** — agent-driven visual workspace with [A2UI](https://docs.openclaw.ai/platforms/mac/canvas#canvas-a2ui).
|
|
127
|
+
- **[First-class tools](https://docs.openclaw.ai/tools)** — browser, canvas, nodes, cron, sessions, and Discord/Slack actions.
|
|
128
|
+
- **[Companion apps](https://docs.openclaw.ai/platforms/macos)** — macOS menu bar app + iOS/Android [nodes](https://docs.openclaw.ai/nodes).
|
|
129
|
+
- **[Onboarding](https://docs.openclaw.ai/start/wizard) + [skills](https://docs.openclaw.ai/tools/skills)** — wizard-driven setup with bundled/managed/workspace skills.
|
|
127
130
|
|
|
128
131
|
## Star History
|
|
129
132
|
|
|
130
|
-
[](https://www.star-history.com/#openclaw/openclaw&type=date&legend=top-left)
|
|
131
134
|
|
|
132
135
|
## Everything we built so far
|
|
133
136
|
|
|
134
137
|
### Core platform
|
|
135
|
-
|
|
136
|
-
- [
|
|
137
|
-
- [
|
|
138
|
-
- [
|
|
139
|
-
- [
|
|
138
|
+
|
|
139
|
+
- [Gateway WS control plane](https://docs.openclaw.ai/gateway) with sessions, presence, config, cron, webhooks, [Control UI](https://docs.openclaw.ai/web), and [Canvas host](https://docs.openclaw.ai/platforms/mac/canvas#canvas-a2ui).
|
|
140
|
+
- [CLI surface](https://docs.openclaw.ai/tools/agent-send): gateway, agent, send, [wizard](https://docs.openclaw.ai/start/wizard), and [doctor](https://docs.openclaw.ai/gateway/doctor).
|
|
141
|
+
- [Pi agent runtime](https://docs.openclaw.ai/concepts/agent) in RPC mode with tool streaming and block streaming.
|
|
142
|
+
- [Session model](https://docs.openclaw.ai/concepts/session): `main` for direct chats, group isolation, activation modes, queue modes, reply-back. Group rules: [Groups](https://docs.openclaw.ai/concepts/groups).
|
|
143
|
+
- [Media pipeline](https://docs.openclaw.ai/nodes/images): images/audio/video, transcription hooks, size caps, temp file lifecycle. Audio details: [Audio](https://docs.openclaw.ai/nodes/audio).
|
|
140
144
|
|
|
141
145
|
### Channels
|
|
142
|
-
|
|
143
|
-
- [
|
|
146
|
+
|
|
147
|
+
- [Channels](https://docs.openclaw.ai/channels): [WhatsApp](https://docs.openclaw.ai/channels/whatsapp) (Baileys), [Telegram](https://docs.openclaw.ai/channels/telegram) (grammY), [Slack](https://docs.openclaw.ai/channels/slack) (Bolt), [Discord](https://docs.openclaw.ai/channels/discord) (discord.js), [Google Chat](https://docs.openclaw.ai/channels/googlechat) (Chat API), [Signal](https://docs.openclaw.ai/channels/signal) (signal-cli), [iMessage](https://docs.openclaw.ai/channels/imessage) (imsg), [BlueBubbles](https://docs.openclaw.ai/channels/bluebubbles) (extension), [Microsoft Teams](https://docs.openclaw.ai/channels/msteams) (extension), [Matrix](https://docs.openclaw.ai/channels/matrix) (extension), [Zalo](https://docs.openclaw.ai/channels/zalo) (extension), [Zalo Personal](https://docs.openclaw.ai/channels/zalouser) (extension), [WebChat](https://docs.openclaw.ai/web/webchat).
|
|
148
|
+
- [Group routing](https://docs.openclaw.ai/concepts/group-messages): mention gating, reply tags, per-channel chunking and routing. Channel rules: [Channels](https://docs.openclaw.ai/channels).
|
|
144
149
|
|
|
145
150
|
### Apps + nodes
|
|
146
|
-
|
|
147
|
-
- [
|
|
148
|
-
- [
|
|
149
|
-
- [
|
|
151
|
+
|
|
152
|
+
- [macOS app](https://docs.openclaw.ai/platforms/macos): menu bar control plane, [Voice Wake](https://docs.openclaw.ai/nodes/voicewake)/PTT, [Talk Mode](https://docs.openclaw.ai/nodes/talk) overlay, [WebChat](https://docs.openclaw.ai/web/webchat), debug tools, [remote gateway](https://docs.openclaw.ai/gateway/remote) control.
|
|
153
|
+
- [iOS node](https://docs.openclaw.ai/platforms/ios): [Canvas](https://docs.openclaw.ai/platforms/mac/canvas), [Voice Wake](https://docs.openclaw.ai/nodes/voicewake), [Talk Mode](https://docs.openclaw.ai/nodes/talk), camera, screen recording, Bonjour pairing.
|
|
154
|
+
- [Android node](https://docs.openclaw.ai/platforms/android): [Canvas](https://docs.openclaw.ai/platforms/mac/canvas), [Talk Mode](https://docs.openclaw.ai/nodes/talk), camera, screen recording, optional SMS.
|
|
155
|
+
- [macOS node mode](https://docs.openclaw.ai/nodes): system.run/notify + canvas/camera exposure.
|
|
150
156
|
|
|
151
157
|
### Tools + automation
|
|
152
|
-
|
|
153
|
-
- [
|
|
154
|
-
- [
|
|
155
|
-
- [
|
|
156
|
-
- [
|
|
158
|
+
|
|
159
|
+
- [Browser control](https://docs.openclaw.ai/tools/browser): dedicated openclaw Chrome/Chromium, snapshots, actions, uploads, profiles.
|
|
160
|
+
- [Canvas](https://docs.openclaw.ai/platforms/mac/canvas): [A2UI](https://docs.openclaw.ai/platforms/mac/canvas#canvas-a2ui) push/reset, eval, snapshot.
|
|
161
|
+
- [Nodes](https://docs.openclaw.ai/nodes): camera snap/clip, screen record, [location.get](https://docs.openclaw.ai/nodes/location-command), notifications.
|
|
162
|
+
- [Cron + wakeups](https://docs.openclaw.ai/automation/cron-jobs); [webhooks](https://docs.openclaw.ai/automation/webhook); [Gmail Pub/Sub](https://docs.openclaw.ai/automation/gmail-pubsub).
|
|
163
|
+
- [Skills platform](https://docs.openclaw.ai/tools/skills): bundled, managed, and workspace skills with install gating + UI.
|
|
157
164
|
|
|
158
165
|
### Runtime + safety
|
|
159
|
-
|
|
160
|
-
- [
|
|
161
|
-
- [
|
|
162
|
-
- [
|
|
166
|
+
|
|
167
|
+
- [Channel routing](https://docs.openclaw.ai/concepts/channel-routing), [retry policy](https://docs.openclaw.ai/concepts/retry), and [streaming/chunking](https://docs.openclaw.ai/concepts/streaming).
|
|
168
|
+
- [Presence](https://docs.openclaw.ai/concepts/presence), [typing indicators](https://docs.openclaw.ai/concepts/typing-indicators), and [usage tracking](https://docs.openclaw.ai/concepts/usage-tracking).
|
|
169
|
+
- [Models](https://docs.openclaw.ai/concepts/models), [model failover](https://docs.openclaw.ai/concepts/model-failover), and [session pruning](https://docs.openclaw.ai/concepts/session-pruning).
|
|
170
|
+
- [Security](https://docs.openclaw.ai/gateway/security) and [troubleshooting](https://docs.openclaw.ai/channels/troubleshooting).
|
|
163
171
|
|
|
164
172
|
### Ops + packaging
|
|
165
|
-
|
|
166
|
-
- [
|
|
167
|
-
- [
|
|
168
|
-
- [
|
|
173
|
+
|
|
174
|
+
- [Control UI](https://docs.openclaw.ai/web) + [WebChat](https://docs.openclaw.ai/web/webchat) served directly from the Gateway.
|
|
175
|
+
- [Tailscale Serve/Funnel](https://docs.openclaw.ai/gateway/tailscale) or [SSH tunnels](https://docs.openclaw.ai/gateway/remote) with token/password auth.
|
|
176
|
+
- [Nix mode](https://docs.openclaw.ai/install/nix) for declarative config; [Docker](https://docs.openclaw.ai/install/docker)-based installs.
|
|
177
|
+
- [Doctor](https://docs.openclaw.ai/gateway/doctor) migrations, [logging](https://docs.openclaw.ai/logging).
|
|
169
178
|
|
|
170
179
|
## How it works (short)
|
|
171
180
|
|
|
@@ -180,7 +189,7 @@ WhatsApp / Telegram / Slack / Discord / Google Chat / Signal / iMessage / BlueBu
|
|
|
180
189
|
└──────────────┬────────────────┘
|
|
181
190
|
│
|
|
182
191
|
├─ Pi agent (RPC)
|
|
183
|
-
├─ CLI (
|
|
192
|
+
├─ CLI (openclaw …)
|
|
184
193
|
├─ WebChat UI
|
|
185
194
|
├─ macOS app
|
|
186
195
|
└─ iOS / Android nodes
|
|
@@ -188,28 +197,29 @@ WhatsApp / Telegram / Slack / Discord / Google Chat / Signal / iMessage / BlueBu
|
|
|
188
197
|
|
|
189
198
|
## Key subsystems
|
|
190
199
|
|
|
191
|
-
- **[Gateway WebSocket network](https://docs.
|
|
192
|
-
- **[Tailscale exposure](https://docs.
|
|
193
|
-
- **[Browser control](https://docs.
|
|
194
|
-
- **[Canvas + A2UI](https://docs.
|
|
195
|
-
- **[Voice Wake](https://docs.
|
|
196
|
-
- **[Nodes](https://docs.
|
|
200
|
+
- **[Gateway WebSocket network](https://docs.openclaw.ai/concepts/architecture)** — single WS control plane for clients, tools, and events (plus ops: [Gateway runbook](https://docs.openclaw.ai/gateway)).
|
|
201
|
+
- **[Tailscale exposure](https://docs.openclaw.ai/gateway/tailscale)** — Serve/Funnel for the Gateway dashboard + WS (remote access: [Remote](https://docs.openclaw.ai/gateway/remote)).
|
|
202
|
+
- **[Browser control](https://docs.openclaw.ai/tools/browser)** — openclaw‑managed Chrome/Chromium with CDP control.
|
|
203
|
+
- **[Canvas + A2UI](https://docs.openclaw.ai/platforms/mac/canvas)** — agent‑driven visual workspace (A2UI host: [Canvas/A2UI](https://docs.openclaw.ai/platforms/mac/canvas#canvas-a2ui)).
|
|
204
|
+
- **[Voice Wake](https://docs.openclaw.ai/nodes/voicewake) + [Talk Mode](https://docs.openclaw.ai/nodes/talk)** — always‑on speech and continuous conversation.
|
|
205
|
+
- **[Nodes](https://docs.openclaw.ai/nodes)** — Canvas, camera snap/clip, screen record, `location.get`, notifications, plus macOS‑only `system.run`/`system.notify`.
|
|
197
206
|
|
|
198
207
|
## Tailscale access (Gateway dashboard)
|
|
199
208
|
|
|
200
|
-
|
|
209
|
+
OpenClaw can auto-configure Tailscale **Serve** (tailnet-only) or **Funnel** (public) while the Gateway stays bound to loopback. Configure `gateway.tailscale.mode`:
|
|
201
210
|
|
|
202
211
|
- `off`: no Tailscale automation (default).
|
|
203
212
|
- `serve`: tailnet-only HTTPS via `tailscale serve` (uses Tailscale identity headers by default).
|
|
204
213
|
- `funnel`: public HTTPS via `tailscale funnel` (requires shared password auth).
|
|
205
214
|
|
|
206
215
|
Notes:
|
|
207
|
-
|
|
216
|
+
|
|
217
|
+
- `gateway.bind` must stay `loopback` when Serve/Funnel is enabled (OpenClaw enforces this).
|
|
208
218
|
- Serve can be forced to require a password by setting `gateway.auth.mode: "password"` or `gateway.auth.allowTailscale: false`.
|
|
209
219
|
- Funnel refuses to start unless `gateway.auth.mode: "password"` is set.
|
|
210
220
|
- Optional: `gateway.tailscale.resetOnExit` to undo Serve/Funnel on shutdown.
|
|
211
221
|
|
|
212
|
-
Details: [Tailscale guide](https://docs.
|
|
222
|
+
Details: [Tailscale guide](https://docs.openclaw.ai/gateway/tailscale) · [Web surfaces](https://docs.openclaw.ai/web)
|
|
213
223
|
|
|
214
224
|
## Remote Gateway (Linux is great)
|
|
215
225
|
|
|
@@ -217,9 +227,9 @@ It’s perfectly fine to run the Gateway on a small Linux instance. Clients (mac
|
|
|
217
227
|
|
|
218
228
|
- **Gateway host** runs the exec tool and channel connections by default.
|
|
219
229
|
- **Device nodes** run device‑local actions (`system.run`, camera, screen recording, notifications) via `node.invoke`.
|
|
220
|
-
In short: exec runs where the Gateway lives; device actions run where the device lives.
|
|
230
|
+
In short: exec runs where the Gateway lives; device actions run where the device lives.
|
|
221
231
|
|
|
222
|
-
Details: [Remote access](https://docs.
|
|
232
|
+
Details: [Remote access](https://docs.openclaw.ai/gateway/remote) · [Nodes](https://docs.openclaw.ai/nodes) · [Security](https://docs.openclaw.ai/gateway/security)
|
|
223
233
|
|
|
224
234
|
## macOS permissions via the Gateway protocol
|
|
225
235
|
|
|
@@ -234,22 +244,22 @@ Elevated bash (host permissions) is separate from macOS TCC:
|
|
|
234
244
|
- Use `/elevated on|off` to toggle per‑session elevated access when enabled + allowlisted.
|
|
235
245
|
- Gateway persists the per‑session toggle via `sessions.patch` (WS method) alongside `thinkingLevel`, `verboseLevel`, `model`, `sendPolicy`, and `groupActivation`.
|
|
236
246
|
|
|
237
|
-
Details: [Nodes](https://docs.
|
|
247
|
+
Details: [Nodes](https://docs.openclaw.ai/nodes) · [macOS app](https://docs.openclaw.ai/platforms/macos) · [Gateway protocol](https://docs.openclaw.ai/concepts/architecture)
|
|
238
248
|
|
|
239
|
-
## Agent to Agent (
|
|
249
|
+
## Agent to Agent (sessions\_\* tools)
|
|
240
250
|
|
|
241
251
|
- Use these to coordinate work across sessions without jumping between chat surfaces.
|
|
242
252
|
- `sessions_list` — discover active sessions (agents) and their metadata.
|
|
243
253
|
- `sessions_history` — fetch transcript logs for a session.
|
|
244
254
|
- `sessions_send` — message another session; optional reply‑back ping‑pong + announce step (`REPLY_SKIP`, `ANNOUNCE_SKIP`).
|
|
245
255
|
|
|
246
|
-
Details: [Session tools](https://docs.
|
|
256
|
+
Details: [Session tools](https://docs.openclaw.ai/concepts/session-tool)
|
|
247
257
|
|
|
248
|
-
## Skills registry (
|
|
258
|
+
## Skills registry (ClawHub)
|
|
249
259
|
|
|
250
|
-
|
|
260
|
+
ClawHub is a minimal skill registry. With ClawHub enabled, the agent can search for skills automatically and pull in new ones as needed.
|
|
251
261
|
|
|
252
|
-
[
|
|
262
|
+
[ClawHub](https://clawhub.com)
|
|
253
263
|
|
|
254
264
|
## Chat commands
|
|
255
265
|
|
|
@@ -270,7 +280,7 @@ The Gateway alone delivers a great experience. All apps are optional and add ext
|
|
|
270
280
|
|
|
271
281
|
If you plan to build/run companion apps, follow the platform runbooks below.
|
|
272
282
|
|
|
273
|
-
### macOS (
|
|
283
|
+
### macOS (OpenClaw.app) (optional)
|
|
274
284
|
|
|
275
285
|
- Menu bar control for the Gateway and health.
|
|
276
286
|
- Voice Wake + push-to-talk overlay.
|
|
@@ -283,35 +293,35 @@ Note: signed builds required for macOS permissions to stick across rebuilds (see
|
|
|
283
293
|
|
|
284
294
|
- Pairs as a node via the Bridge.
|
|
285
295
|
- Voice trigger forwarding + Canvas surface.
|
|
286
|
-
- Controlled via `
|
|
296
|
+
- Controlled via `openclaw nodes …`.
|
|
287
297
|
|
|
288
|
-
Runbook: [iOS connect](https://docs.
|
|
298
|
+
Runbook: [iOS connect](https://docs.openclaw.ai/platforms/ios).
|
|
289
299
|
|
|
290
300
|
### Android node (optional)
|
|
291
301
|
|
|
292
302
|
- Pairs via the same Bridge + pairing flow as iOS.
|
|
293
303
|
- Exposes Canvas, Camera, and Screen capture commands.
|
|
294
|
-
- Runbook: [Android connect](https://docs.
|
|
304
|
+
- Runbook: [Android connect](https://docs.openclaw.ai/platforms/android).
|
|
295
305
|
|
|
296
306
|
## Agent workspace + skills
|
|
297
307
|
|
|
298
|
-
- Workspace root:
|
|
308
|
+
- Workspace root: `~/.openclaw/workspace` (configurable via `agents.defaults.workspace`).
|
|
299
309
|
- Injected prompt files: `AGENTS.md`, `SOUL.md`, `TOOLS.md`.
|
|
300
|
-
- Skills:
|
|
310
|
+
- Skills: `~/.openclaw/workspace/skills/<skill>/SKILL.md`.
|
|
301
311
|
|
|
302
312
|
## Configuration
|
|
303
313
|
|
|
304
|
-
Minimal `~/.
|
|
314
|
+
Minimal `~/.openclaw/openclaw.json` (model + defaults):
|
|
305
315
|
|
|
306
316
|
```json5
|
|
307
317
|
{
|
|
308
318
|
agent: {
|
|
309
|
-
model: "anthropic/claude-opus-4-5"
|
|
310
|
-
}
|
|
319
|
+
model: "anthropic/claude-opus-4-5",
|
|
320
|
+
},
|
|
311
321
|
}
|
|
312
322
|
```
|
|
313
323
|
|
|
314
|
-
[Full configuration reference (all keys + examples).](https://docs.
|
|
324
|
+
[Full configuration reference (all keys + examples).](https://docs.openclaw.ai/gateway/configuration)
|
|
315
325
|
|
|
316
326
|
## Security model (important)
|
|
317
327
|
|
|
@@ -319,15 +329,15 @@ Minimal `~/.clawdbot/moltbot.json` (model + defaults):
|
|
|
319
329
|
- **Group/channel safety:** set `agents.defaults.sandbox.mode: "non-main"` to run **non‑main sessions** (groups/channels) inside per‑session Docker sandboxes; bash then runs in Docker for those sessions.
|
|
320
330
|
- **Sandbox defaults:** allowlist `bash`, `process`, `read`, `write`, `edit`, `sessions_list`, `sessions_history`, `sessions_send`, `sessions_spawn`; denylist `browser`, `canvas`, `nodes`, `cron`, `discord`, `gateway`.
|
|
321
331
|
|
|
322
|
-
Details: [Security guide](https://docs.
|
|
332
|
+
Details: [Security guide](https://docs.openclaw.ai/gateway/security) · [Docker + sandboxing](https://docs.openclaw.ai/install/docker) · [Sandbox config](https://docs.openclaw.ai/gateway/configuration)
|
|
323
333
|
|
|
324
|
-
### [WhatsApp](https://docs.
|
|
334
|
+
### [WhatsApp](https://docs.openclaw.ai/channels/whatsapp)
|
|
325
335
|
|
|
326
|
-
- Link the device: `pnpm
|
|
336
|
+
- Link the device: `pnpm openclaw channels login` (stores creds in `~/.openclaw/credentials`).
|
|
327
337
|
- Allowlist who can talk to the assistant via `channels.whatsapp.allowFrom`.
|
|
328
338
|
- If `channels.whatsapp.groups` is set, it becomes a group allowlist; include `"*"` to allow all.
|
|
329
339
|
|
|
330
|
-
### [Telegram](https://docs.
|
|
340
|
+
### [Telegram](https://docs.openclaw.ai/channels/telegram)
|
|
331
341
|
|
|
332
342
|
- Set `TELEGRAM_BOT_TOKEN` or `channels.telegram.botToken` (env wins).
|
|
333
343
|
- Optional: set `channels.telegram.groups` (with `channels.telegram.groups."*".requireMention`); when set, it is a group allowlist (include `"*"` to allow all). Also `channels.telegram.allowFrom` or `channels.telegram.webhookUrl` as needed.
|
|
@@ -336,17 +346,17 @@ Details: [Security guide](https://docs.molt.bot/gateway/security) · [Docker + s
|
|
|
336
346
|
{
|
|
337
347
|
channels: {
|
|
338
348
|
telegram: {
|
|
339
|
-
botToken: "123456:ABCDEF"
|
|
340
|
-
}
|
|
341
|
-
}
|
|
349
|
+
botToken: "123456:ABCDEF",
|
|
350
|
+
},
|
|
351
|
+
},
|
|
342
352
|
}
|
|
343
353
|
```
|
|
344
354
|
|
|
345
|
-
### [Slack](https://docs.
|
|
355
|
+
### [Slack](https://docs.openclaw.ai/channels/slack)
|
|
346
356
|
|
|
347
357
|
- Set `SLACK_BOT_TOKEN` + `SLACK_APP_TOKEN` (or `channels.slack.botToken` + `channels.slack.appToken`).
|
|
348
358
|
|
|
349
|
-
### [Discord](https://docs.
|
|
359
|
+
### [Discord](https://docs.openclaw.ai/channels/discord)
|
|
350
360
|
|
|
351
361
|
- Set `DISCORD_BOT_TOKEN` or `channels.discord.token` (env wins).
|
|
352
362
|
- Optional: set `commands.native`, `commands.text`, or `commands.useAccessGroups`, plus `channels.discord.dm.allowFrom`, `channels.discord.guilds`, or `channels.discord.mediaMaxMb` as needed.
|
|
@@ -355,27 +365,27 @@ Details: [Security guide](https://docs.molt.bot/gateway/security) · [Docker + s
|
|
|
355
365
|
{
|
|
356
366
|
channels: {
|
|
357
367
|
discord: {
|
|
358
|
-
token: "1234abcd"
|
|
359
|
-
}
|
|
360
|
-
}
|
|
368
|
+
token: "1234abcd",
|
|
369
|
+
},
|
|
370
|
+
},
|
|
361
371
|
}
|
|
362
372
|
```
|
|
363
373
|
|
|
364
|
-
### [Signal](https://docs.
|
|
374
|
+
### [Signal](https://docs.openclaw.ai/channels/signal)
|
|
365
375
|
|
|
366
376
|
- Requires `signal-cli` and a `channels.signal` config section.
|
|
367
377
|
|
|
368
|
-
### [iMessage](https://docs.
|
|
378
|
+
### [iMessage](https://docs.openclaw.ai/channels/imessage)
|
|
369
379
|
|
|
370
380
|
- macOS only; Messages must be signed in.
|
|
371
381
|
- If `channels.imessage.groups` is set, it becomes a group allowlist; include `"*"` to allow all.
|
|
372
382
|
|
|
373
|
-
### [Microsoft Teams](https://docs.
|
|
383
|
+
### [Microsoft Teams](https://docs.openclaw.ai/channels/msteams)
|
|
374
384
|
|
|
375
385
|
- Configure a Teams app + Bot Framework, then add a `msteams` config section.
|
|
376
386
|
- Allowlist who can talk via `msteams.allowFrom`; group access via `msteams.groupAllowFrom` or `msteams.groupPolicy: "open"`.
|
|
377
387
|
|
|
378
|
-
### [WebChat](https://docs.
|
|
388
|
+
### [WebChat](https://docs.openclaw.ai/web/webchat)
|
|
379
389
|
|
|
380
390
|
- Uses the Gateway WebSocket; no separate WebChat port/config.
|
|
381
391
|
|
|
@@ -385,87 +395,88 @@ Browser control (optional):
|
|
|
385
395
|
{
|
|
386
396
|
browser: {
|
|
387
397
|
enabled: true,
|
|
388
|
-
color: "#FF4500"
|
|
389
|
-
}
|
|
398
|
+
color: "#FF4500",
|
|
399
|
+
},
|
|
390
400
|
}
|
|
391
401
|
```
|
|
392
402
|
|
|
393
403
|
## Docs
|
|
394
404
|
|
|
395
405
|
Use these when you’re past the onboarding flow and want the deeper reference.
|
|
396
|
-
|
|
397
|
-
- [
|
|
398
|
-
- [
|
|
399
|
-
- [
|
|
400
|
-
- [
|
|
401
|
-
- [
|
|
402
|
-
- [
|
|
403
|
-
- [
|
|
404
|
-
- [
|
|
405
|
-
- [
|
|
406
|
-
- [
|
|
407
|
-
- [
|
|
408
|
-
- [
|
|
406
|
+
|
|
407
|
+
- [Start with the docs index for navigation and “what’s where.”](https://docs.openclaw.ai)
|
|
408
|
+
- [Read the architecture overview for the gateway + protocol model.](https://docs.openclaw.ai/concepts/architecture)
|
|
409
|
+
- [Use the full configuration reference when you need every key and example.](https://docs.openclaw.ai/gateway/configuration)
|
|
410
|
+
- [Run the Gateway by the book with the operational runbook.](https://docs.openclaw.ai/gateway)
|
|
411
|
+
- [Learn how the Control UI/Web surfaces work and how to expose them safely.](https://docs.openclaw.ai/web)
|
|
412
|
+
- [Understand remote access over SSH tunnels or tailnets.](https://docs.openclaw.ai/gateway/remote)
|
|
413
|
+
- [Follow the onboarding wizard flow for a guided setup.](https://docs.openclaw.ai/start/wizard)
|
|
414
|
+
- [Wire external triggers via the webhook surface.](https://docs.openclaw.ai/automation/webhook)
|
|
415
|
+
- [Set up Gmail Pub/Sub triggers.](https://docs.openclaw.ai/automation/gmail-pubsub)
|
|
416
|
+
- [Learn the macOS menu bar companion details.](https://docs.openclaw.ai/platforms/mac/menu-bar)
|
|
417
|
+
- [Platform guides: Windows (WSL2)](https://docs.openclaw.ai/platforms/windows), [Linux](https://docs.openclaw.ai/platforms/linux), [macOS](https://docs.openclaw.ai/platforms/macos), [iOS](https://docs.openclaw.ai/platforms/ios), [Android](https://docs.openclaw.ai/platforms/android)
|
|
418
|
+
- [Debug common failures with the troubleshooting guide.](https://docs.openclaw.ai/channels/troubleshooting)
|
|
419
|
+
- [Review security guidance before exposing anything.](https://docs.openclaw.ai/gateway/security)
|
|
409
420
|
|
|
410
421
|
## Advanced docs (discovery + control)
|
|
411
422
|
|
|
412
|
-
- [Discovery + transports](https://docs.
|
|
413
|
-
- [Bonjour/mDNS](https://docs.
|
|
414
|
-
- [Gateway pairing](https://docs.
|
|
415
|
-
- [Remote gateway README](https://docs.
|
|
416
|
-
- [Control UI](https://docs.
|
|
417
|
-
- [Dashboard](https://docs.
|
|
423
|
+
- [Discovery + transports](https://docs.openclaw.ai/gateway/discovery)
|
|
424
|
+
- [Bonjour/mDNS](https://docs.openclaw.ai/gateway/bonjour)
|
|
425
|
+
- [Gateway pairing](https://docs.openclaw.ai/gateway/pairing)
|
|
426
|
+
- [Remote gateway README](https://docs.openclaw.ai/gateway/remote-gateway-readme)
|
|
427
|
+
- [Control UI](https://docs.openclaw.ai/web/control-ui)
|
|
428
|
+
- [Dashboard](https://docs.openclaw.ai/web/dashboard)
|
|
418
429
|
|
|
419
430
|
## Operations & troubleshooting
|
|
420
431
|
|
|
421
|
-
- [Health checks](https://docs.
|
|
422
|
-
- [Gateway lock](https://docs.
|
|
423
|
-
- [Background process](https://docs.
|
|
424
|
-
- [Browser troubleshooting (Linux)](https://docs.
|
|
425
|
-
- [Logging](https://docs.
|
|
432
|
+
- [Health checks](https://docs.openclaw.ai/gateway/health)
|
|
433
|
+
- [Gateway lock](https://docs.openclaw.ai/gateway/gateway-lock)
|
|
434
|
+
- [Background process](https://docs.openclaw.ai/gateway/background-process)
|
|
435
|
+
- [Browser troubleshooting (Linux)](https://docs.openclaw.ai/tools/browser-linux-troubleshooting)
|
|
436
|
+
- [Logging](https://docs.openclaw.ai/logging)
|
|
426
437
|
|
|
427
438
|
## Deep dives
|
|
428
439
|
|
|
429
|
-
- [Agent loop](https://docs.
|
|
430
|
-
- [Presence](https://docs.
|
|
431
|
-
- [TypeBox schemas](https://docs.
|
|
432
|
-
- [RPC adapters](https://docs.
|
|
433
|
-
- [Queue](https://docs.
|
|
440
|
+
- [Agent loop](https://docs.openclaw.ai/concepts/agent-loop)
|
|
441
|
+
- [Presence](https://docs.openclaw.ai/concepts/presence)
|
|
442
|
+
- [TypeBox schemas](https://docs.openclaw.ai/concepts/typebox)
|
|
443
|
+
- [RPC adapters](https://docs.openclaw.ai/reference/rpc)
|
|
444
|
+
- [Queue](https://docs.openclaw.ai/concepts/queue)
|
|
434
445
|
|
|
435
446
|
## Workspace & skills
|
|
436
447
|
|
|
437
|
-
- [Skills config](https://docs.
|
|
438
|
-
- [Default AGENTS](https://docs.
|
|
439
|
-
- [Templates: AGENTS](https://docs.
|
|
440
|
-
- [Templates: BOOTSTRAP](https://docs.
|
|
441
|
-
- [Templates: IDENTITY](https://docs.
|
|
442
|
-
- [Templates: SOUL](https://docs.
|
|
443
|
-
- [Templates: TOOLS](https://docs.
|
|
444
|
-
- [Templates: USER](https://docs.
|
|
448
|
+
- [Skills config](https://docs.openclaw.ai/tools/skills-config)
|
|
449
|
+
- [Default AGENTS](https://docs.openclaw.ai/reference/AGENTS.default)
|
|
450
|
+
- [Templates: AGENTS](https://docs.openclaw.ai/reference/templates/AGENTS)
|
|
451
|
+
- [Templates: BOOTSTRAP](https://docs.openclaw.ai/reference/templates/BOOTSTRAP)
|
|
452
|
+
- [Templates: IDENTITY](https://docs.openclaw.ai/reference/templates/IDENTITY)
|
|
453
|
+
- [Templates: SOUL](https://docs.openclaw.ai/reference/templates/SOUL)
|
|
454
|
+
- [Templates: TOOLS](https://docs.openclaw.ai/reference/templates/TOOLS)
|
|
455
|
+
- [Templates: USER](https://docs.openclaw.ai/reference/templates/USER)
|
|
445
456
|
|
|
446
457
|
## Platform internals
|
|
447
458
|
|
|
448
|
-
- [macOS dev setup](https://docs.
|
|
449
|
-
- [macOS menu bar](https://docs.
|
|
450
|
-
- [macOS voice wake](https://docs.
|
|
451
|
-
- [iOS node](https://docs.
|
|
452
|
-
- [Android node](https://docs.
|
|
453
|
-
- [Windows (WSL2)](https://docs.
|
|
454
|
-
- [Linux app](https://docs.
|
|
459
|
+
- [macOS dev setup](https://docs.openclaw.ai/platforms/mac/dev-setup)
|
|
460
|
+
- [macOS menu bar](https://docs.openclaw.ai/platforms/mac/menu-bar)
|
|
461
|
+
- [macOS voice wake](https://docs.openclaw.ai/platforms/mac/voicewake)
|
|
462
|
+
- [iOS node](https://docs.openclaw.ai/platforms/ios)
|
|
463
|
+
- [Android node](https://docs.openclaw.ai/platforms/android)
|
|
464
|
+
- [Windows (WSL2)](https://docs.openclaw.ai/platforms/windows)
|
|
465
|
+
- [Linux app](https://docs.openclaw.ai/platforms/linux)
|
|
455
466
|
|
|
456
467
|
## Email hooks (Gmail)
|
|
457
468
|
|
|
458
|
-
- [docs.
|
|
469
|
+
- [docs.openclaw.ai/gmail-pubsub](https://docs.openclaw.ai/automation/gmail-pubsub)
|
|
459
470
|
|
|
460
471
|
## Molty
|
|
461
472
|
|
|
462
|
-
|
|
473
|
+
OpenClaw was built for **Molty**, a space lobster AI assistant. 🦞
|
|
463
474
|
by Peter Steinberger and the community.
|
|
464
475
|
|
|
465
|
-
- [
|
|
476
|
+
- [openclaw.ai](https://openclaw.ai)
|
|
466
477
|
- [soul.md](https://soul.md)
|
|
467
478
|
- [steipete.me](https://steipete.me)
|
|
468
|
-
- [@
|
|
479
|
+
- [@openclaw](https://x.com/openclaw)
|
|
469
480
|
|
|
470
481
|
## Community
|
|
471
482
|
|
|
@@ -474,41 +485,46 @@ AI/vibe-coded PRs welcome! 🤖
|
|
|
474
485
|
|
|
475
486
|
Special thanks to [Mario Zechner](https://mariozechner.at/) for his support and for
|
|
476
487
|
[pi-mono](https://github.com/badlogic/pi-mono).
|
|
488
|
+
Special thanks to Adam Doppelt for lobster.bot.
|
|
477
489
|
|
|
478
490
|
Thanks to all clawtributors:
|
|
479
491
|
|
|
480
492
|
<p align="left">
|
|
481
|
-
<a href="https://github.com/steipete"><img src="https://avatars.githubusercontent.com/u/58493?v=4&s=48" width="48" height="48" alt="steipete" title="steipete"/></a> <a href="https://github.com/
|
|
482
|
-
<a href="https://github.com/
|
|
483
|
-
<a href="https://github.com/
|
|
484
|
-
<a href="https://github.com/
|
|
485
|
-
<a href="https://github.com/
|
|
486
|
-
<a href="https://github.com/
|
|
487
|
-
<a href="https://github.com/
|
|
488
|
-
<a href="https://github.com/
|
|
489
|
-
<a href="https://github.com/
|
|
490
|
-
<a href="https://github.com/
|
|
491
|
-
<a href="https://github.com/
|
|
492
|
-
<a href="https://github.com/
|
|
493
|
-
<a href="https://github.com/
|
|
494
|
-
<a href="https://github.com/
|
|
495
|
-
<a href="https://github.com/
|
|
496
|
-
<a href="https://github.com/
|
|
497
|
-
<a href="https://github.com/
|
|
498
|
-
<a href="https://github.com/
|
|
499
|
-
<a href="https://github.com/
|
|
500
|
-
<a href="https://github.com/
|
|
501
|
-
<a href="https://github.com/
|
|
502
|
-
<a href="https://github.com/
|
|
503
|
-
<a href="https://github.com/
|
|
504
|
-
<a href="https://github.com/
|
|
505
|
-
<a href="https://github.com/
|
|
506
|
-
<a href="https://github.com/
|
|
507
|
-
<a href="https://github.com/
|
|
508
|
-
<a href="https://github.com/
|
|
509
|
-
<a href="https://github.com/
|
|
510
|
-
<a href="https://github.com/
|
|
511
|
-
<a href="https://github.com/
|
|
512
|
-
<a href="https://github.com/
|
|
513
|
-
<a href="https://github.com/search?q=
|
|
493
|
+
<a href="https://github.com/steipete"><img src="https://avatars.githubusercontent.com/u/58493?v=4&s=48" width="48" height="48" alt="steipete" title="steipete"/></a> <a href="https://github.com/cpojer"><img src="https://avatars.githubusercontent.com/u/13352?v=4&s=48" width="48" height="48" alt="cpojer" title="cpojer"/></a> <a href="https://github.com/plum-dawg"><img src="https://avatars.githubusercontent.com/u/5909950?v=4&s=48" width="48" height="48" alt="plum-dawg" title="plum-dawg"/></a> <a href="https://github.com/bohdanpodvirnyi"><img src="https://avatars.githubusercontent.com/u/31819391?v=4&s=48" width="48" height="48" alt="bohdanpodvirnyi" title="bohdanpodvirnyi"/></a> <a href="https://github.com/iHildy"><img src="https://avatars.githubusercontent.com/u/25069719?v=4&s=48" width="48" height="48" alt="iHildy" title="iHildy"/></a> <a href="https://github.com/jaydenfyi"><img src="https://avatars.githubusercontent.com/u/213395523?v=4&s=48" width="48" height="48" alt="jaydenfyi" title="jaydenfyi"/></a> <a href="https://github.com/joaohlisboa"><img src="https://avatars.githubusercontent.com/u/8200873?v=4&s=48" width="48" height="48" alt="joaohlisboa" title="joaohlisboa"/></a> <a href="https://github.com/mneves75"><img src="https://avatars.githubusercontent.com/u/2423436?v=4&s=48" width="48" height="48" alt="mneves75" title="mneves75"/></a> <a href="https://github.com/MatthieuBizien"><img src="https://avatars.githubusercontent.com/u/173090?v=4&s=48" width="48" height="48" alt="MatthieuBizien" title="MatthieuBizien"/></a> <a href="https://github.com/MaudeBot"><img src="https://avatars.githubusercontent.com/u/255777700?v=4&s=48" width="48" height="48" alt="MaudeBot" title="MaudeBot"/></a>
|
|
494
|
+
<a href="https://github.com/Glucksberg"><img src="https://avatars.githubusercontent.com/u/80581902?v=4&s=48" width="48" height="48" alt="Glucksberg" title="Glucksberg"/></a> <a href="https://github.com/rahthakor"><img src="https://avatars.githubusercontent.com/u/8470553?v=4&s=48" width="48" height="48" alt="rahthakor" title="rahthakor"/></a> <a href="https://github.com/vrknetha"><img src="https://avatars.githubusercontent.com/u/20596261?v=4&s=48" width="48" height="48" alt="vrknetha" title="vrknetha"/></a> <a href="https://github.com/radek-paclt"><img src="https://avatars.githubusercontent.com/u/50451445?v=4&s=48" width="48" height="48" alt="radek-paclt" title="radek-paclt"/></a> <a href="https://github.com/vignesh07"><img src="https://avatars.githubusercontent.com/u/1436853?v=4&s=48" width="48" height="48" alt="vignesh07" title="vignesh07"/></a> <a href="https://github.com/joshp123"><img src="https://avatars.githubusercontent.com/u/1497361?v=4&s=48" width="48" height="48" alt="joshp123" title="joshp123"/></a> <a href="https://github.com/tobiasbischoff"><img src="https://avatars.githubusercontent.com/u/711564?v=4&s=48" width="48" height="48" alt="Tobias Bischoff" title="Tobias Bischoff"/></a> <a href="https://github.com/czekaj"><img src="https://avatars.githubusercontent.com/u/1464539?v=4&s=48" width="48" height="48" alt="czekaj" title="czekaj"/></a> <a href="https://github.com/mukhtharcm"><img src="https://avatars.githubusercontent.com/u/56378562?v=4&s=48" width="48" height="48" alt="mukhtharcm" title="mukhtharcm"/></a> <a href="https://github.com/sebslight"><img src="https://avatars.githubusercontent.com/u/19554889?v=4&s=48" width="48" height="48" alt="sebslight" title="sebslight"/></a>
|
|
495
|
+
<a href="https://github.com/maxsumrall"><img src="https://avatars.githubusercontent.com/u/628843?v=4&s=48" width="48" height="48" alt="maxsumrall" title="maxsumrall"/></a> <a href="https://github.com/xadenryan"><img src="https://avatars.githubusercontent.com/u/165437834?v=4&s=48" width="48" height="48" alt="xadenryan" title="xadenryan"/></a> <a href="https://github.com/rodrigouroz"><img src="https://avatars.githubusercontent.com/u/384037?v=4&s=48" width="48" height="48" alt="rodrigouroz" title="rodrigouroz"/></a> <a href="https://github.com/mbelinky"><img src="https://avatars.githubusercontent.com/u/132747814?v=4&s=48" width="48" height="48" alt="Mariano Belinky" title="Mariano Belinky"/></a> <a href="https://github.com/tyler6204"><img src="https://avatars.githubusercontent.com/u/64381258?v=4&s=48" width="48" height="48" alt="tyler6204" title="tyler6204"/></a> <a href="https://github.com/juanpablodlc"><img src="https://avatars.githubusercontent.com/u/92012363?v=4&s=48" width="48" height="48" alt="juanpablodlc" title="juanpablodlc"/></a> <a href="https://github.com/hsrvc"><img src="https://avatars.githubusercontent.com/u/129702169?v=4&s=48" width="48" height="48" alt="hsrvc" title="hsrvc"/></a> <a href="https://github.com/magimetal"><img src="https://avatars.githubusercontent.com/u/36491250?v=4&s=48" width="48" height="48" alt="magimetal" title="magimetal"/></a> <a href="https://github.com/zerone0x"><img src="https://avatars.githubusercontent.com/u/39543393?v=4&s=48" width="48" height="48" alt="zerone0x" title="zerone0x"/></a> <a href="https://github.com/meaningfool"><img src="https://avatars.githubusercontent.com/u/2862331?v=4&s=48" width="48" height="48" alt="meaningfool" title="meaningfool"/></a>
|
|
496
|
+
<a href="https://github.com/patelhiren"><img src="https://avatars.githubusercontent.com/u/172098?v=4&s=48" width="48" height="48" alt="patelhiren" title="patelhiren"/></a> <a href="https://github.com/NicholasSpisak"><img src="https://avatars.githubusercontent.com/u/129075147?v=4&s=48" width="48" height="48" alt="NicholasSpisak" title="NicholasSpisak"/></a> <a href="https://github.com/jonisjongithub"><img src="https://avatars.githubusercontent.com/u/86072337?v=4&s=48" width="48" height="48" alt="jonisjongithub" title="jonisjongithub"/></a> <a href="https://github.com/AbhisekBasu1"><img src="https://avatars.githubusercontent.com/u/40645221?v=4&s=48" width="48" height="48" alt="abhisekbasu1" title="abhisekbasu1"/></a> <a href="https://github.com/jamesgroat"><img src="https://avatars.githubusercontent.com/u/2634024?v=4&s=48" width="48" height="48" alt="jamesgroat" title="jamesgroat"/></a> <a href="https://github.com/claude"><img src="https://avatars.githubusercontent.com/u/81847?v=4&s=48" width="48" height="48" alt="claude" title="claude"/></a> <a href="https://github.com/JustYannicc"><img src="https://avatars.githubusercontent.com/u/52761674?v=4&s=48" width="48" height="48" alt="JustYannicc" title="JustYannicc"/></a> <a href="https://github.com/SocialNerd42069"><img src="https://avatars.githubusercontent.com/u/118244303?v=4&s=48" width="48" height="48" alt="SocialNerd42069" title="SocialNerd42069"/></a> <a href="https://github.com/Hyaxia"><img src="https://avatars.githubusercontent.com/u/36747317?v=4&s=48" width="48" height="48" alt="Hyaxia" title="Hyaxia"/></a> <a href="https://github.com/dantelex"><img src="https://avatars.githubusercontent.com/u/631543?v=4&s=48" width="48" height="48" alt="dantelex" title="dantelex"/></a>
|
|
497
|
+
<a href="https://github.com/daveonkels"><img src="https://avatars.githubusercontent.com/u/533642?v=4&s=48" width="48" height="48" alt="daveonkels" title="daveonkels"/></a> <a href="https://github.com/apps/google-labs-jules"><img src="https://avatars.githubusercontent.com/in/842251?v=4&s=48" width="48" height="48" alt="google-labs-jules[bot]" title="google-labs-jules[bot]"/></a> <a href="https://github.com/lc0rp"><img src="https://avatars.githubusercontent.com/u/2609441?v=4&s=48" width="48" height="48" alt="lc0rp" title="lc0rp"/></a> <a href="https://github.com/adam91holt"><img src="https://avatars.githubusercontent.com/u/9592417?v=4&s=48" width="48" height="48" alt="adam91holt" title="adam91holt"/></a> <a href="https://github.com/mousberg"><img src="https://avatars.githubusercontent.com/u/57605064?v=4&s=48" width="48" height="48" alt="mousberg" title="mousberg"/></a> <a href="https://github.com/hougangdev"><img src="https://avatars.githubusercontent.com/u/105773686?v=4&s=48" width="48" height="48" alt="hougangdev" title="hougangdev"/></a> <a href="https://github.com/gumadeiras"><img src="https://avatars.githubusercontent.com/u/5599352?v=4&s=48" width="48" height="48" alt="gumadeiras" title="gumadeiras"/></a> <a href="https://github.com/shakkernerd"><img src="https://avatars.githubusercontent.com/u/165377636?v=4&s=48" width="48" height="48" alt="shakkernerd" title="shakkernerd"/></a> <a href="https://github.com/mteam88"><img src="https://avatars.githubusercontent.com/u/84196639?v=4&s=48" width="48" height="48" alt="mteam88" title="mteam88"/></a> <a href="https://github.com/hirefrank"><img src="https://avatars.githubusercontent.com/u/183158?v=4&s=48" width="48" height="48" alt="hirefrank" title="hirefrank"/></a>
|
|
498
|
+
<a href="https://github.com/joeynyc"><img src="https://avatars.githubusercontent.com/u/17919866?v=4&s=48" width="48" height="48" alt="joeynyc" title="joeynyc"/></a> <a href="https://github.com/orlyjamie"><img src="https://avatars.githubusercontent.com/u/6668807?v=4&s=48" width="48" height="48" alt="orlyjamie" title="orlyjamie"/></a> <a href="https://github.com/omniwired"><img src="https://avatars.githubusercontent.com/u/322761?v=4&s=48" width="48" height="48" alt="Eng. Juan Combetto" title="Eng. Juan Combetto"/></a> <a href="https://github.com/dbhurley"><img src="https://avatars.githubusercontent.com/u/5251425?v=4&s=48" width="48" height="48" alt="dbhurley" title="dbhurley"/></a> <a href="https://github.com/TSavo"><img src="https://avatars.githubusercontent.com/u/877990?v=4&s=48" width="48" height="48" alt="TSavo" title="TSavo"/></a> <a href="https://github.com/julianengel"><img src="https://avatars.githubusercontent.com/u/10634231?v=4&s=48" width="48" height="48" alt="julianengel" title="julianengel"/></a> <a href="https://github.com/bradleypriest"><img src="https://avatars.githubusercontent.com/u/167215?v=4&s=48" width="48" height="48" alt="bradleypriest" title="bradleypriest"/></a> <a href="https://github.com/benithors"><img src="https://avatars.githubusercontent.com/u/20652882?v=4&s=48" width="48" height="48" alt="benithors" title="benithors"/></a> <a href="https://github.com/rohannagpal"><img src="https://avatars.githubusercontent.com/u/4009239?v=4&s=48" width="48" height="48" alt="rohannagpal" title="rohannagpal"/></a> <a href="https://github.com/elliotsecops"><img src="https://avatars.githubusercontent.com/u/141947839?v=4&s=48" width="48" height="48" alt="elliotsecops" title="elliotsecops"/></a>
|
|
499
|
+
<a href="https://github.com/timolins"><img src="https://avatars.githubusercontent.com/u/1440854?v=4&s=48" width="48" height="48" alt="timolins" title="timolins"/></a> <a href="https://github.com/benostein"><img src="https://avatars.githubusercontent.com/u/31802821?v=4&s=48" width="48" height="48" alt="benostein" title="benostein"/></a> <a href="https://github.com/f-trycua"><img src="https://avatars.githubusercontent.com/u/195596869?v=4&s=48" width="48" height="48" alt="f-trycua" title="f-trycua"/></a> <a href="https://github.com/Nachx639"><img src="https://avatars.githubusercontent.com/u/71144023?v=4&s=48" width="48" height="48" alt="nachx639" title="nachx639"/></a> <a href="https://github.com/pvoo"><img src="https://avatars.githubusercontent.com/u/20116814?v=4&s=48" width="48" height="48" alt="pvoo" title="pvoo"/></a> <a href="https://github.com/sreekaransrinath"><img src="https://avatars.githubusercontent.com/u/50989977?v=4&s=48" width="48" height="48" alt="sreekaransrinath" title="sreekaransrinath"/></a> <a href="https://github.com/gupsammy"><img src="https://avatars.githubusercontent.com/u/20296019?v=4&s=48" width="48" height="48" alt="gupsammy" title="gupsammy"/></a> <a href="https://github.com/cristip73"><img src="https://avatars.githubusercontent.com/u/24499421?v=4&s=48" width="48" height="48" alt="cristip73" title="cristip73"/></a> <a href="https://github.com/stefangalescu"><img src="https://avatars.githubusercontent.com/u/52995748?v=4&s=48" width="48" height="48" alt="stefangalescu" title="stefangalescu"/></a> <a href="https://github.com/nachoiacovino"><img src="https://avatars.githubusercontent.com/u/50103937?v=4&s=48" width="48" height="48" alt="nachoiacovino" title="nachoiacovino"/></a>
|
|
500
|
+
<a href="https://github.com/vsabavat"><img src="https://avatars.githubusercontent.com/u/50385532?v=4&s=48" width="48" height="48" alt="Vasanth Rao Naik Sabavat" title="Vasanth Rao Naik Sabavat"/></a> <a href="https://github.com/petter-b"><img src="https://avatars.githubusercontent.com/u/62076402?v=4&s=48" width="48" height="48" alt="petter-b" title="petter-b"/></a> <a href="https://github.com/thewilloftheshadow"><img src="https://avatars.githubusercontent.com/u/35580099?v=4&s=48" width="48" height="48" alt="thewilloftheshadow" title="thewilloftheshadow"/></a> <a href="https://github.com/scald"><img src="https://avatars.githubusercontent.com/u/1215913?v=4&s=48" width="48" height="48" alt="scald" title="scald"/></a> <a href="https://github.com/andranik-sahakyan"><img src="https://avatars.githubusercontent.com/u/8908029?v=4&s=48" width="48" height="48" alt="andranik-sahakyan" title="andranik-sahakyan"/></a> <a href="https://github.com/davidguttman"><img src="https://avatars.githubusercontent.com/u/431696?v=4&s=48" width="48" height="48" alt="davidguttman" title="davidguttman"/></a> <a href="https://github.com/sleontenko"><img src="https://avatars.githubusercontent.com/u/7135949?v=4&s=48" width="48" height="48" alt="sleontenko" title="sleontenko"/></a> <a href="https://github.com/denysvitali"><img src="https://avatars.githubusercontent.com/u/4939519?v=4&s=48" width="48" height="48" alt="denysvitali" title="denysvitali"/></a> <a href="https://github.com/sircrumpet"><img src="https://avatars.githubusercontent.com/u/4436535?v=4&s=48" width="48" height="48" alt="sircrumpet" title="sircrumpet"/></a> <a href="https://github.com/peschee"><img src="https://avatars.githubusercontent.com/u/63866?v=4&s=48" width="48" height="48" alt="peschee" title="peschee"/></a>
|
|
501
|
+
<a href="https://github.com/rafaelreis-r"><img src="https://avatars.githubusercontent.com/u/57492577?v=4&s=48" width="48" height="48" alt="rafaelreis-r" title="rafaelreis-r"/></a> <a href="https://github.com/nonggialiang"><img src="https://avatars.githubusercontent.com/u/14367839?v=4&s=48" width="48" height="48" alt="nonggialiang" title="nonggialiang"/></a> <a href="https://github.com/dominicnunez"><img src="https://avatars.githubusercontent.com/u/43616264?v=4&s=48" width="48" height="48" alt="dominicnunez" title="dominicnunez"/></a> <a href="https://github.com/lploc94"><img src="https://avatars.githubusercontent.com/u/28453843?v=4&s=48" width="48" height="48" alt="lploc94" title="lploc94"/></a> <a href="https://github.com/ratulsarna"><img src="https://avatars.githubusercontent.com/u/105903728?v=4&s=48" width="48" height="48" alt="ratulsarna" title="ratulsarna"/></a> <a href="https://github.com/lutr0"><img src="https://avatars.githubusercontent.com/u/76906369?v=4&s=48" width="48" height="48" alt="lutr0" title="lutr0"/></a> <a href="https://github.com/kiranjd"><img src="https://avatars.githubusercontent.com/u/25822851?v=4&s=48" width="48" height="48" alt="kiranjd" title="kiranjd"/></a> <a href="https://github.com/danielz1z"><img src="https://avatars.githubusercontent.com/u/235270390?v=4&s=48" width="48" height="48" alt="danielz1z" title="danielz1z"/></a> <a href="https://github.com/AdeboyeDN"><img src="https://avatars.githubusercontent.com/u/65312338?v=4&s=48" width="48" height="48" alt="AdeboyeDN" title="AdeboyeDN"/></a> <a href="https://github.com/Alg0rix"><img src="https://avatars.githubusercontent.com/u/53804949?v=4&s=48" width="48" height="48" alt="Alg0rix" title="Alg0rix"/></a>
|
|
502
|
+
<a href="https://github.com/papago2355"><img src="https://avatars.githubusercontent.com/u/68721273?v=4&s=48" width="48" height="48" alt="papago2355" title="papago2355"/></a> <a href="https://github.com/emanuelst"><img src="https://avatars.githubusercontent.com/u/9994339?v=4&s=48" width="48" height="48" alt="emanuelst" title="emanuelst"/></a> <a href="https://github.com/evanotero"><img src="https://avatars.githubusercontent.com/u/13204105?v=4&s=48" width="48" height="48" alt="evanotero" title="evanotero"/></a> <a href="https://github.com/KristijanJovanovski"><img src="https://avatars.githubusercontent.com/u/8942284?v=4&s=48" width="48" height="48" alt="KristijanJovanovski" title="KristijanJovanovski"/></a> <a href="https://github.com/CashWilliams"><img src="https://avatars.githubusercontent.com/u/613573?v=4&s=48" width="48" height="48" alt="CashWilliams" title="CashWilliams"/></a> <a href="https://github.com/jlowin"><img src="https://avatars.githubusercontent.com/u/153965?v=4&s=48" width="48" height="48" alt="jlowin" title="jlowin"/></a> <a href="https://github.com/rdev"><img src="https://avatars.githubusercontent.com/u/8418866?v=4&s=48" width="48" height="48" alt="rdev" title="rdev"/></a> <a href="https://github.com/rhuanssauro"><img src="https://avatars.githubusercontent.com/u/164682191?v=4&s=48" width="48" height="48" alt="rhuanssauro" title="rhuanssauro"/></a> <a href="https://github.com/osolmaz"><img src="https://avatars.githubusercontent.com/u/2453968?v=4&s=48" width="48" height="48" alt="osolmaz" title="osolmaz"/></a> <a href="https://github.com/joshrad-dev"><img src="https://avatars.githubusercontent.com/u/62785552?v=4&s=48" width="48" height="48" alt="joshrad-dev" title="joshrad-dev"/></a>
|
|
503
|
+
<a href="https://github.com/adityashaw2"><img src="https://avatars.githubusercontent.com/u/41204444?v=4&s=48" width="48" height="48" alt="adityashaw2" title="adityashaw2"/></a> <a href="https://github.com/search?q=sheeek"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="sheeek" title="sheeek"/></a> <a href="https://github.com/ryancontent"><img src="https://avatars.githubusercontent.com/u/39743613?v=4&s=48" width="48" height="48" alt="ryancontent" title="ryancontent"/></a> <a href="https://github.com/jasonsschin"><img src="https://avatars.githubusercontent.com/u/1456889?v=4&s=48" width="48" height="48" alt="jasonsschin" title="jasonsschin"/></a> <a href="https://github.com/obviyus"><img src="https://avatars.githubusercontent.com/u/22031114?v=4&s=48" width="48" height="48" alt="obviyus" title="obviyus"/></a> <a href="https://github.com/artuskg"><img src="https://avatars.githubusercontent.com/u/11966157?v=4&s=48" width="48" height="48" alt="artuskg" title="artuskg"/></a> <a href="https://github.com/Takhoffman"><img src="https://avatars.githubusercontent.com/u/781889?v=4&s=48" width="48" height="48" alt="Takhoffman" title="Takhoffman"/></a> <a href="https://github.com/onutc"><img src="https://avatars.githubusercontent.com/u/152018508?v=4&s=48" width="48" height="48" alt="onutc" title="onutc"/></a> <a href="https://github.com/pauloportella"><img src="https://avatars.githubusercontent.com/u/22947229?v=4&s=48" width="48" height="48" alt="pauloportella" title="pauloportella"/></a> <a href="https://github.com/HirokiKobayashi-R"><img src="https://avatars.githubusercontent.com/u/37167840?v=4&s=48" width="48" height="48" alt="HirokiKobayashi-R" title="HirokiKobayashi-R"/></a>
|
|
504
|
+
<a href="https://github.com/ThanhNguyxn"><img src="https://avatars.githubusercontent.com/u/74597207?v=4&s=48" width="48" height="48" alt="ThanhNguyxn" title="ThanhNguyxn"/></a> <a href="https://github.com/yuting0624"><img src="https://avatars.githubusercontent.com/u/32728916?v=4&s=48" width="48" height="48" alt="yuting0624" title="yuting0624"/></a> <a href="https://github.com/neooriginal"><img src="https://avatars.githubusercontent.com/u/54811660?v=4&s=48" width="48" height="48" alt="neooriginal" title="neooriginal"/></a> <a href="https://github.com/ManuelHettich"><img src="https://avatars.githubusercontent.com/u/17690367?v=4&s=48" width="48" height="48" alt="manuelhettich" title="manuelhettich"/></a> <a href="https://github.com/minghinmatthewlam"><img src="https://avatars.githubusercontent.com/u/14224566?v=4&s=48" width="48" height="48" alt="minghinmatthewlam" title="minghinmatthewlam"/></a> <a href="https://github.com/manikv12"><img src="https://avatars.githubusercontent.com/u/49544491?v=4&s=48" width="48" height="48" alt="manikv12" title="manikv12"/></a> <a href="https://github.com/myfunc"><img src="https://avatars.githubusercontent.com/u/19294627?v=4&s=48" width="48" height="48" alt="myfunc" title="myfunc"/></a> <a href="https://github.com/travisirby"><img src="https://avatars.githubusercontent.com/u/5958376?v=4&s=48" width="48" height="48" alt="travisirby" title="travisirby"/></a> <a href="https://github.com/buddyh"><img src="https://avatars.githubusercontent.com/u/31752869?v=4&s=48" width="48" height="48" alt="buddyh" title="buddyh"/></a> <a href="https://github.com/connorshea"><img src="https://avatars.githubusercontent.com/u/2977353?v=4&s=48" width="48" height="48" alt="connorshea" title="connorshea"/></a>
|
|
505
|
+
<a href="https://github.com/kyleok"><img src="https://avatars.githubusercontent.com/u/58307870?v=4&s=48" width="48" height="48" alt="kyleok" title="kyleok"/></a> <a href="https://github.com/mcinteerj"><img src="https://avatars.githubusercontent.com/u/3613653?v=4&s=48" width="48" height="48" alt="mcinteerj" title="mcinteerj"/></a> <a href="https://github.com/apps/dependabot"><img src="https://avatars.githubusercontent.com/in/29110?v=4&s=48" width="48" height="48" alt="dependabot[bot]" title="dependabot[bot]"/></a> <a href="https://github.com/amitbiswal007"><img src="https://avatars.githubusercontent.com/u/108086198?v=4&s=48" width="48" height="48" alt="amitbiswal007" title="amitbiswal007"/></a> <a href="https://github.com/John-Rood"><img src="https://avatars.githubusercontent.com/u/62669593?v=4&s=48" width="48" height="48" alt="John-Rood" title="John-Rood"/></a> <a href="https://github.com/timkrase"><img src="https://avatars.githubusercontent.com/u/38947626?v=4&s=48" width="48" height="48" alt="timkrase" title="timkrase"/></a> <a href="https://github.com/uos-status"><img src="https://avatars.githubusercontent.com/u/255712580?v=4&s=48" width="48" height="48" alt="uos-status" title="uos-status"/></a> <a href="https://github.com/gerardward2007"><img src="https://avatars.githubusercontent.com/u/3002155?v=4&s=48" width="48" height="48" alt="gerardward2007" title="gerardward2007"/></a> <a href="https://github.com/roshanasingh4"><img src="https://avatars.githubusercontent.com/u/88576930?v=4&s=48" width="48" height="48" alt="roshanasingh4" title="roshanasingh4"/></a> <a href="https://github.com/tosh-hamburg"><img src="https://avatars.githubusercontent.com/u/58424326?v=4&s=48" width="48" height="48" alt="tosh-hamburg" title="tosh-hamburg"/></a>
|
|
506
|
+
<a href="https://github.com/azade-c"><img src="https://avatars.githubusercontent.com/u/252790079?v=4&s=48" width="48" height="48" alt="azade-c" title="azade-c"/></a> <a href="https://github.com/dlauer"><img src="https://avatars.githubusercontent.com/u/757041?v=4&s=48" width="48" height="48" alt="dlauer" title="dlauer"/></a> <a href="https://github.com/JonUleis"><img src="https://avatars.githubusercontent.com/u/7644941?v=4&s=48" width="48" height="48" alt="JonUleis" title="JonUleis"/></a> <a href="https://github.com/shivamraut101"><img src="https://avatars.githubusercontent.com/u/110457469?v=4&s=48" width="48" height="48" alt="shivamraut101" title="shivamraut101"/></a> <a href="https://github.com/bjesuiter"><img src="https://avatars.githubusercontent.com/u/2365676?v=4&s=48" width="48" height="48" alt="bjesuiter" title="bjesuiter"/></a> <a href="https://github.com/cheeeee"><img src="https://avatars.githubusercontent.com/u/21245729?v=4&s=48" width="48" height="48" alt="cheeeee" title="cheeeee"/></a> <a href="https://github.com/robbyczgw-cla"><img src="https://avatars.githubusercontent.com/u/239660374?v=4&s=48" width="48" height="48" alt="robbyczgw-cla" title="robbyczgw-cla"/></a> <a href="https://github.com/YuriNachos"><img src="https://avatars.githubusercontent.com/u/19365375?v=4&s=48" width="48" height="48" alt="YuriNachos" title="YuriNachos"/></a> <a href="https://github.com/badlogic"><img src="https://avatars.githubusercontent.com/u/514052?v=4&s=48" width="48" height="48" alt="badlogic" title="badlogic"/></a> <a href="https://github.com/conroywhitney"><img src="https://avatars.githubusercontent.com/u/249891?v=4&s=48" width="48" height="48" alt="conroywhitney" title="conroywhitney"/></a>
|
|
507
|
+
<a href="https://github.com/j1philli"><img src="https://avatars.githubusercontent.com/u/3744255?v=4&s=48" width="48" height="48" alt="Josh Phillips" title="Josh Phillips"/></a> <a href="https://github.com/pookNast"><img src="https://avatars.githubusercontent.com/u/14242552?v=4&s=48" width="48" height="48" alt="pookNast" title="pookNast"/></a> <a href="https://github.com/Whoaa512"><img src="https://avatars.githubusercontent.com/u/1581943?v=4&s=48" width="48" height="48" alt="Whoaa512" title="Whoaa512"/></a> <a href="https://github.com/chriseidhof"><img src="https://avatars.githubusercontent.com/u/5382?v=4&s=48" width="48" height="48" alt="chriseidhof" title="chriseidhof"/></a> <a href="https://github.com/ngutman"><img src="https://avatars.githubusercontent.com/u/1540134?v=4&s=48" width="48" height="48" alt="ngutman" title="ngutman"/></a> <a href="https://github.com/ysqander"><img src="https://avatars.githubusercontent.com/u/80843820?v=4&s=48" width="48" height="48" alt="ysqander" title="ysqander"/></a> <a href="https://github.com/search?q=Yurii%20Chukhlib"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Yurii Chukhlib" title="Yurii Chukhlib"/></a> <a href="https://github.com/aj47"><img src="https://avatars.githubusercontent.com/u/8023513?v=4&s=48" width="48" height="48" alt="aj47" title="aj47"/></a> <a href="https://github.com/kennyklee"><img src="https://avatars.githubusercontent.com/u/1432489?v=4&s=48" width="48" height="48" alt="kennyklee" title="kennyklee"/></a> <a href="https://github.com/superman32432432"><img src="https://avatars.githubusercontent.com/u/7228420?v=4&s=48" width="48" height="48" alt="superman32432432" title="superman32432432"/></a>
|
|
508
|
+
<a href="https://github.com/grp06"><img src="https://avatars.githubusercontent.com/u/1573959?v=4&s=48" width="48" height="48" alt="grp06" title="grp06"/></a> <a href="https://github.com/Hisleren"><img src="https://avatars.githubusercontent.com/u/83217244?v=4&s=48" width="48" height="48" alt="Hisleren" title="Hisleren"/></a> <a href="https://github.com/antons"><img src="https://avatars.githubusercontent.com/u/129705?v=4&s=48" width="48" height="48" alt="antons" title="antons"/></a> <a href="https://github.com/austinm911"><img src="https://avatars.githubusercontent.com/u/31991302?v=4&s=48" width="48" height="48" alt="austinm911" title="austinm911"/></a> <a href="https://github.com/apps/blacksmith-sh"><img src="https://avatars.githubusercontent.com/in/807020?v=4&s=48" width="48" height="48" alt="blacksmith-sh[bot]" title="blacksmith-sh[bot]"/></a> <a href="https://github.com/damoahdominic"><img src="https://avatars.githubusercontent.com/u/4623434?v=4&s=48" width="48" height="48" alt="damoahdominic" title="damoahdominic"/></a> <a href="https://github.com/dan-dr"><img src="https://avatars.githubusercontent.com/u/6669808?v=4&s=48" width="48" height="48" alt="dan-dr" title="dan-dr"/></a> <a href="https://github.com/HeimdallStrategy"><img src="https://avatars.githubusercontent.com/u/223014405?v=4&s=48" width="48" height="48" alt="HeimdallStrategy" title="HeimdallStrategy"/></a> <a href="https://github.com/imfing"><img src="https://avatars.githubusercontent.com/u/5097752?v=4&s=48" width="48" height="48" alt="imfing" title="imfing"/></a> <a href="https://github.com/jalehman"><img src="https://avatars.githubusercontent.com/u/550978?v=4&s=48" width="48" height="48" alt="jalehman" title="jalehman"/></a>
|
|
509
|
+
<a href="https://github.com/jarvis-medmatic"><img src="https://avatars.githubusercontent.com/u/252428873?v=4&s=48" width="48" height="48" alt="jarvis-medmatic" title="jarvis-medmatic"/></a> <a href="https://github.com/kkarimi"><img src="https://avatars.githubusercontent.com/u/875218?v=4&s=48" width="48" height="48" alt="kkarimi" title="kkarimi"/></a> <a href="https://github.com/mahmoudashraf93"><img src="https://avatars.githubusercontent.com/u/9130129?v=4&s=48" width="48" height="48" alt="mahmoudashraf93" title="mahmoudashraf93"/></a> <a href="https://github.com/pkrmf"><img src="https://avatars.githubusercontent.com/u/1714267?v=4&s=48" width="48" height="48" alt="pkrmf" title="pkrmf"/></a> <a href="https://github.com/RandyVentures"><img src="https://avatars.githubusercontent.com/u/149904821?v=4&s=48" width="48" height="48" alt="RandyVentures" title="RandyVentures"/></a> <a href="https://github.com/robhparker"><img src="https://avatars.githubusercontent.com/u/7404740?v=4&s=48" width="48" height="48" alt="robhparker" title="robhparker"/></a> <a href="https://github.com/search?q=Ryan%20Lisse"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Ryan Lisse" title="Ryan Lisse"/></a> <a href="https://github.com/dougvk"><img src="https://avatars.githubusercontent.com/u/401660?v=4&s=48" width="48" height="48" alt="dougvk" title="dougvk"/></a> <a href="https://github.com/erikpr1994"><img src="https://avatars.githubusercontent.com/u/6299331?v=4&s=48" width="48" height="48" alt="erikpr1994" title="erikpr1994"/></a> <a href="https://github.com/fal3"><img src="https://avatars.githubusercontent.com/u/6484295?v=4&s=48" width="48" height="48" alt="fal3" title="fal3"/></a>
|
|
510
|
+
<a href="https://github.com/search?q=Ghost"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Ghost" title="Ghost"/></a> <a href="https://github.com/jonasjancarik"><img src="https://avatars.githubusercontent.com/u/2459191?v=4&s=48" width="48" height="48" alt="jonasjancarik" title="jonasjancarik"/></a> <a href="https://github.com/search?q=Keith%20the%20Silly%20Goose"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Keith the Silly Goose" title="Keith the Silly Goose"/></a> <a href="https://github.com/search?q=L36%20Server"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="L36 Server" title="L36 Server"/></a> <a href="https://github.com/search?q=Marc"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Marc" title="Marc"/></a> <a href="https://github.com/mitschabaude-bot"><img src="https://avatars.githubusercontent.com/u/247582884?v=4&s=48" width="48" height="48" alt="mitschabaude-bot" title="mitschabaude-bot"/></a> <a href="https://github.com/mkbehr"><img src="https://avatars.githubusercontent.com/u/1285?v=4&s=48" width="48" height="48" alt="mkbehr" title="mkbehr"/></a> <a href="https://github.com/neist"><img src="https://avatars.githubusercontent.com/u/1029724?v=4&s=48" width="48" height="48" alt="neist" title="neist"/></a> <a href="https://github.com/sibbl"><img src="https://avatars.githubusercontent.com/u/866535?v=4&s=48" width="48" height="48" alt="sibbl" title="sibbl"/></a> <a href="https://github.com/chrisrodz"><img src="https://avatars.githubusercontent.com/u/2967620?v=4&s=48" width="48" height="48" alt="chrisrodz" title="chrisrodz"/></a>
|
|
511
|
+
<a href="https://github.com/search?q=Friederike%20Seiler"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Friederike Seiler" title="Friederike Seiler"/></a> <a href="https://github.com/gabriel-trigo"><img src="https://avatars.githubusercontent.com/u/38991125?v=4&s=48" width="48" height="48" alt="gabriel-trigo" title="gabriel-trigo"/></a> <a href="https://github.com/Iamadig"><img src="https://avatars.githubusercontent.com/u/102129234?v=4&s=48" width="48" height="48" alt="iamadig" title="iamadig"/></a> <a href="https://github.com/jdrhyne"><img src="https://avatars.githubusercontent.com/u/7828464?v=4&s=48" width="48" height="48" alt="Jonathan D. Rhyne (DJ-D)" title="Jonathan D. Rhyne (DJ-D)"/></a> <a href="https://github.com/search?q=Joshua%20Mitchell"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Joshua Mitchell" title="Joshua Mitchell"/></a> <a href="https://github.com/search?q=Kit"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Kit" title="Kit"/></a> <a href="https://github.com/koala73"><img src="https://avatars.githubusercontent.com/u/996596?v=4&s=48" width="48" height="48" alt="koala73" title="koala73"/></a> <a href="https://github.com/manmal"><img src="https://avatars.githubusercontent.com/u/142797?v=4&s=48" width="48" height="48" alt="manmal" title="manmal"/></a> <a href="https://github.com/ogulcancelik"><img src="https://avatars.githubusercontent.com/u/7064011?v=4&s=48" width="48" height="48" alt="ogulcancelik" title="ogulcancelik"/></a> <a href="https://github.com/pasogott"><img src="https://avatars.githubusercontent.com/u/23458152?v=4&s=48" width="48" height="48" alt="pasogott" title="pasogott"/></a>
|
|
512
|
+
<a href="https://github.com/petradonka"><img src="https://avatars.githubusercontent.com/u/7353770?v=4&s=48" width="48" height="48" alt="petradonka" title="petradonka"/></a> <a href="https://github.com/rubyrunsstuff"><img src="https://avatars.githubusercontent.com/u/246602379?v=4&s=48" width="48" height="48" alt="rubyrunsstuff" title="rubyrunsstuff"/></a> <a href="https://github.com/siddhantjain"><img src="https://avatars.githubusercontent.com/u/4835232?v=4&s=48" width="48" height="48" alt="siddhantjain" title="siddhantjain"/></a> <a href="https://github.com/spiceoogway"><img src="https://avatars.githubusercontent.com/u/105812383?v=4&s=48" width="48" height="48" alt="spiceoogway" title="spiceoogway"/></a> <a href="https://github.com/suminhthanh"><img src="https://avatars.githubusercontent.com/u/2907636?v=4&s=48" width="48" height="48" alt="suminhthanh" title="suminhthanh"/></a> <a href="https://github.com/svkozak"><img src="https://avatars.githubusercontent.com/u/31941359?v=4&s=48" width="48" height="48" alt="svkozak" title="svkozak"/></a> <a href="https://github.com/VACInc"><img src="https://avatars.githubusercontent.com/u/3279061?v=4&s=48" width="48" height="48" alt="VACInc" title="VACInc"/></a> <a href="https://github.com/wes-davis"><img src="https://avatars.githubusercontent.com/u/16506720?v=4&s=48" width="48" height="48" alt="wes-davis" title="wes-davis"/></a> <a href="https://github.com/zats"><img src="https://avatars.githubusercontent.com/u/2688806?v=4&s=48" width="48" height="48" alt="zats" title="zats"/></a> <a href="https://github.com/24601"><img src="https://avatars.githubusercontent.com/u/1157207?v=4&s=48" width="48" height="48" alt="24601" title="24601"/></a>
|
|
513
|
+
<a href="https://github.com/ameno-"><img src="https://avatars.githubusercontent.com/u/2416135?v=4&s=48" width="48" height="48" alt="ameno-" title="ameno-"/></a> <a href="https://github.com/search?q=Chris%20Taylor"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Chris Taylor" title="Chris Taylor"/></a> <a href="https://github.com/dguido"><img src="https://avatars.githubusercontent.com/u/294844?v=4&s=48" width="48" height="48" alt="dguido" title="dguido"/></a> <a href="https://github.com/djangonavarro220"><img src="https://avatars.githubusercontent.com/u/251162586?v=4&s=48" width="48" height="48" alt="Django Navarro" title="Django Navarro"/></a> <a href="https://github.com/evalexpr"><img src="https://avatars.githubusercontent.com/u/23485511?v=4&s=48" width="48" height="48" alt="evalexpr" title="evalexpr"/></a> <a href="https://github.com/henrino3"><img src="https://avatars.githubusercontent.com/u/4260288?v=4&s=48" width="48" height="48" alt="henrino3" title="henrino3"/></a> <a href="https://github.com/humanwritten"><img src="https://avatars.githubusercontent.com/u/206531610?v=4&s=48" width="48" height="48" alt="humanwritten" title="humanwritten"/></a> <a href="https://github.com/larlyssa"><img src="https://avatars.githubusercontent.com/u/13128869?v=4&s=48" width="48" height="48" alt="larlyssa" title="larlyssa"/></a> <a href="https://github.com/Lukavyi"><img src="https://avatars.githubusercontent.com/u/1013690?v=4&s=48" width="48" height="48" alt="Lukavyi" title="Lukavyi"/></a> <a href="https://github.com/odysseus0"><img src="https://avatars.githubusercontent.com/u/8635094?v=4&s=48" width="48" height="48" alt="odysseus0" title="odysseus0"/></a>
|
|
514
|
+
<a href="https://github.com/oswalpalash"><img src="https://avatars.githubusercontent.com/u/6431196?v=4&s=48" width="48" height="48" alt="oswalpalash" title="oswalpalash"/></a> <a href="https://github.com/pcty-nextgen-service-account"><img src="https://avatars.githubusercontent.com/u/112553441?v=4&s=48" width="48" height="48" alt="pcty-nextgen-service-account" title="pcty-nextgen-service-account"/></a> <a href="https://github.com/pi0"><img src="https://avatars.githubusercontent.com/u/5158436?v=4&s=48" width="48" height="48" alt="pi0" title="pi0"/></a> <a href="https://github.com/rmorse"><img src="https://avatars.githubusercontent.com/u/853547?v=4&s=48" width="48" height="48" alt="rmorse" title="rmorse"/></a> <a href="https://github.com/search?q=Roopak%20Nijhara"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Roopak Nijhara" title="Roopak Nijhara"/></a> <a href="https://github.com/Syhids"><img src="https://avatars.githubusercontent.com/u/671202?v=4&s=48" width="48" height="48" alt="Syhids" title="Syhids"/></a> <a href="https://github.com/search?q=Ubuntu"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Ubuntu" title="Ubuntu"/></a> <a href="https://github.com/search?q=Aaron%20Konyer"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Aaron Konyer" title="Aaron Konyer"/></a> <a href="https://github.com/aaronveklabs"><img src="https://avatars.githubusercontent.com/u/225997828?v=4&s=48" width="48" height="48" alt="aaronveklabs" title="aaronveklabs"/></a> <a href="https://github.com/andreabadesso"><img src="https://avatars.githubusercontent.com/u/3586068?v=4&s=48" width="48" height="48" alt="andreabadesso" title="andreabadesso"/></a>
|
|
515
|
+
<a href="https://github.com/search?q=Andrii"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Andrii" title="Andrii"/></a> <a href="https://github.com/cash-echo-bot"><img src="https://avatars.githubusercontent.com/u/252747386?v=4&s=48" width="48" height="48" alt="cash-echo-bot" title="cash-echo-bot"/></a> <a href="https://github.com/search?q=Clawd"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Clawd" title="Clawd"/></a> <a href="https://github.com/search?q=ClawdFx"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="ClawdFx" title="ClawdFx"/></a> <a href="https://github.com/EnzeD"><img src="https://avatars.githubusercontent.com/u/9866900?v=4&s=48" width="48" height="48" alt="EnzeD" title="EnzeD"/></a> <a href="https://github.com/erik-agens"><img src="https://avatars.githubusercontent.com/u/80908960?v=4&s=48" width="48" height="48" alt="erik-agens" title="erik-agens"/></a> <a href="https://github.com/Evizero"><img src="https://avatars.githubusercontent.com/u/10854026?v=4&s=48" width="48" height="48" alt="Evizero" title="Evizero"/></a> <a href="https://github.com/fcatuhe"><img src="https://avatars.githubusercontent.com/u/17382215?v=4&s=48" width="48" height="48" alt="fcatuhe" title="fcatuhe"/></a> <a href="https://github.com/itsjaydesu"><img src="https://avatars.githubusercontent.com/u/220390?v=4&s=48" width="48" height="48" alt="itsjaydesu" title="itsjaydesu"/></a> <a href="https://github.com/ivancasco"><img src="https://avatars.githubusercontent.com/u/2452858?v=4&s=48" width="48" height="48" alt="ivancasco" title="ivancasco"/></a>
|
|
516
|
+
<a href="https://github.com/ivanrvpereira"><img src="https://avatars.githubusercontent.com/u/183991?v=4&s=48" width="48" height="48" alt="ivanrvpereira" title="ivanrvpereira"/></a> <a href="https://github.com/search?q=Jarvis"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Jarvis" title="Jarvis"/></a> <a href="https://github.com/jayhickey"><img src="https://avatars.githubusercontent.com/u/1676460?v=4&s=48" width="48" height="48" alt="jayhickey" title="jayhickey"/></a> <a href="https://github.com/jeffersonwarrior"><img src="https://avatars.githubusercontent.com/u/89030989?v=4&s=48" width="48" height="48" alt="jeffersonwarrior" title="jeffersonwarrior"/></a> <a href="https://github.com/search?q=jeffersonwarrior"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="jeffersonwarrior" title="jeffersonwarrior"/></a> <a href="https://github.com/jverdi"><img src="https://avatars.githubusercontent.com/u/345050?v=4&s=48" width="48" height="48" alt="jverdi" title="jverdi"/></a> <a href="https://github.com/longmaba"><img src="https://avatars.githubusercontent.com/u/9361500?v=4&s=48" width="48" height="48" alt="longmaba" title="longmaba"/></a> <a href="https://github.com/MarvinCui"><img src="https://avatars.githubusercontent.com/u/130876763?v=4&s=48" width="48" height="48" alt="MarvinCui" title="MarvinCui"/></a> <a href="https://github.com/mjrussell"><img src="https://avatars.githubusercontent.com/u/1641895?v=4&s=48" width="48" height="48" alt="mjrussell" title="mjrussell"/></a> <a href="https://github.com/odnxe"><img src="https://avatars.githubusercontent.com/u/403141?v=4&s=48" width="48" height="48" alt="odnxe" title="odnxe"/></a>
|
|
517
|
+
<a href="https://github.com/optimikelabs"><img src="https://avatars.githubusercontent.com/u/31423109?v=4&s=48" width="48" height="48" alt="optimikelabs" title="optimikelabs"/></a> <a href="https://github.com/p6l-richard"><img src="https://avatars.githubusercontent.com/u/18185649?v=4&s=48" width="48" height="48" alt="p6l-richard" title="p6l-richard"/></a> <a href="https://github.com/philipp-spiess"><img src="https://avatars.githubusercontent.com/u/458591?v=4&s=48" width="48" height="48" alt="philipp-spiess" title="philipp-spiess"/></a> <a href="https://github.com/search?q=Pocket%20Clawd"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Pocket Clawd" title="Pocket Clawd"/></a> <a href="https://github.com/robaxelsen"><img src="https://avatars.githubusercontent.com/u/13132899?v=4&s=48" width="48" height="48" alt="robaxelsen" title="robaxelsen"/></a> <a href="https://github.com/search?q=Sash%20Catanzarite"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Sash Catanzarite" title="Sash Catanzarite"/></a> <a href="https://github.com/Suksham-sharma"><img src="https://avatars.githubusercontent.com/u/94667656?v=4&s=48" width="48" height="48" alt="Suksham-sharma" title="Suksham-sharma"/></a> <a href="https://github.com/T5-AndyML"><img src="https://avatars.githubusercontent.com/u/22801233?v=4&s=48" width="48" height="48" alt="T5-AndyML" title="T5-AndyML"/></a> <a href="https://github.com/tewatia"><img src="https://avatars.githubusercontent.com/u/22875334?v=4&s=48" width="48" height="48" alt="tewatia" title="tewatia"/></a> <a href="https://github.com/travisp"><img src="https://avatars.githubusercontent.com/u/165698?v=4&s=48" width="48" height="48" alt="travisp" title="travisp"/></a>
|
|
518
|
+
<a href="https://github.com/search?q=VAC"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="VAC" title="VAC"/></a> <a href="https://github.com/search?q=william%20arzt"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="william arzt" title="william arzt"/></a> <a href="https://github.com/zknicker"><img src="https://avatars.githubusercontent.com/u/1164085?v=4&s=48" width="48" height="48" alt="zknicker" title="zknicker"/></a> <a href="https://github.com/0oAstro"><img src="https://avatars.githubusercontent.com/u/79555780?v=4&s=48" width="48" height="48" alt="0oAstro" title="0oAstro"/></a> <a href="https://github.com/abhaymundhara"><img src="https://avatars.githubusercontent.com/u/62872231?v=4&s=48" width="48" height="48" alt="abhaymundhara" title="abhaymundhara"/></a> <a href="https://github.com/aduk059"><img src="https://avatars.githubusercontent.com/u/257603478?v=4&s=48" width="48" height="48" alt="aduk059" title="aduk059"/></a> <a href="https://github.com/search?q=alejandro%20maza"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="alejandro maza" title="alejandro maza"/></a> <a href="https://github.com/Alex-Alaniz"><img src="https://avatars.githubusercontent.com/u/88956822?v=4&s=48" width="48" height="48" alt="Alex-Alaniz" title="Alex-Alaniz"/></a> <a href="https://github.com/alexstyl"><img src="https://avatars.githubusercontent.com/u/1665273?v=4&s=48" width="48" height="48" alt="alexstyl" title="alexstyl"/></a> <a href="https://github.com/andrewting19"><img src="https://avatars.githubusercontent.com/u/10536704?v=4&s=48" width="48" height="48" alt="andrewting19" title="andrewting19"/></a>
|
|
519
|
+
<a href="https://github.com/anpoirier"><img src="https://avatars.githubusercontent.com/u/1245729?v=4&s=48" width="48" height="48" alt="anpoirier" title="anpoirier"/></a> <a href="https://github.com/araa47"><img src="https://avatars.githubusercontent.com/u/22760261?v=4&s=48" width="48" height="48" alt="araa47" title="araa47"/></a> <a href="https://github.com/arthyn"><img src="https://avatars.githubusercontent.com/u/5466421?v=4&s=48" width="48" height="48" alt="arthyn" title="arthyn"/></a> <a href="https://github.com/Asleep123"><img src="https://avatars.githubusercontent.com/u/122379135?v=4&s=48" width="48" height="48" alt="Asleep123" title="Asleep123"/></a> <a href="https://github.com/search?q=Ayush%20Ojha"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Ayush Ojha" title="Ayush Ojha"/></a> <a href="https://github.com/Ayush10"><img src="https://avatars.githubusercontent.com/u/7945279?v=4&s=48" width="48" height="48" alt="Ayush10" title="Ayush10"/></a> <a href="https://github.com/bguidolim"><img src="https://avatars.githubusercontent.com/u/987360?v=4&s=48" width="48" height="48" alt="bguidolim" title="bguidolim"/></a> <a href="https://github.com/bolismauro"><img src="https://avatars.githubusercontent.com/u/771999?v=4&s=48" width="48" height="48" alt="bolismauro" title="bolismauro"/></a> <a href="https://github.com/championswimmer"><img src="https://avatars.githubusercontent.com/u/1327050?v=4&s=48" width="48" height="48" alt="championswimmer" title="championswimmer"/></a> <a href="https://github.com/chenyuan99"><img src="https://avatars.githubusercontent.com/u/25518100?v=4&s=48" width="48" height="48" alt="chenyuan99" title="chenyuan99"/></a>
|
|
520
|
+
<a href="https://github.com/Chloe-VP"><img src="https://avatars.githubusercontent.com/u/257371598?v=4&s=48" width="48" height="48" alt="Chloe-VP" title="Chloe-VP"/></a> <a href="https://github.com/search?q=Clawdbot%20Maintainers"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Clawdbot Maintainers" title="Clawdbot Maintainers"/></a> <a href="https://github.com/conhecendoia"><img src="https://avatars.githubusercontent.com/u/82890727?v=4&s=48" width="48" height="48" alt="conhecendoia" title="conhecendoia"/></a> <a href="https://github.com/dasilva333"><img src="https://avatars.githubusercontent.com/u/947827?v=4&s=48" width="48" height="48" alt="dasilva333" title="dasilva333"/></a> <a href="https://github.com/David-Marsh-Photo"><img src="https://avatars.githubusercontent.com/u/228404527?v=4&s=48" width="48" height="48" alt="David-Marsh-Photo" title="David-Marsh-Photo"/></a> <a href="https://github.com/search?q=Developer"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Developer" title="Developer"/></a> <a href="https://github.com/search?q=Dimitrios%20Ploutarchos"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Dimitrios Ploutarchos" title="Dimitrios Ploutarchos"/></a> <a href="https://github.com/search?q=Drake%20Thomsen"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Drake Thomsen" title="Drake Thomsen"/></a> <a href="https://github.com/dylanneve1"><img src="https://avatars.githubusercontent.com/u/31746704?v=4&s=48" width="48" height="48" alt="dylanneve1" title="dylanneve1"/></a> <a href="https://github.com/search?q=Felix%20Krause"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Felix Krause" title="Felix Krause"/></a>
|
|
521
|
+
<a href="https://github.com/foeken"><img src="https://avatars.githubusercontent.com/u/13864?v=4&s=48" width="48" height="48" alt="foeken" title="foeken"/></a> <a href="https://github.com/frankekn"><img src="https://avatars.githubusercontent.com/u/4488090?v=4&s=48" width="48" height="48" alt="frankekn" title="frankekn"/></a> <a href="https://github.com/search?q=ganghyun%20kim"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="ganghyun kim" title="ganghyun kim"/></a> <a href="https://github.com/grrowl"><img src="https://avatars.githubusercontent.com/u/907140?v=4&s=48" width="48" height="48" alt="grrowl" title="grrowl"/></a> <a href="https://github.com/gtsifrikas"><img src="https://avatars.githubusercontent.com/u/8904378?v=4&s=48" width="48" height="48" alt="gtsifrikas" title="gtsifrikas"/></a> <a href="https://github.com/HazAT"><img src="https://avatars.githubusercontent.com/u/363802?v=4&s=48" width="48" height="48" alt="HazAT" title="HazAT"/></a> <a href="https://github.com/hrdwdmrbl"><img src="https://avatars.githubusercontent.com/u/554881?v=4&s=48" width="48" height="48" alt="hrdwdmrbl" title="hrdwdmrbl"/></a> <a href="https://github.com/hugobarauna"><img src="https://avatars.githubusercontent.com/u/2719?v=4&s=48" width="48" height="48" alt="hugobarauna" title="hugobarauna"/></a> <a href="https://github.com/search?q=Jamie%20Openshaw"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Jamie Openshaw" title="Jamie Openshaw"/></a> <a href="https://github.com/search?q=Jane"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Jane" title="Jane"/></a>
|
|
522
|
+
<a href="https://github.com/search?q=Jarvis%20Deploy"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Jarvis Deploy" title="Jarvis Deploy"/></a> <a href="https://github.com/search?q=Jefferson%20Nunn"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Jefferson Nunn" title="Jefferson Nunn"/></a> <a href="https://github.com/jogi47"><img src="https://avatars.githubusercontent.com/u/1710139?v=4&s=48" width="48" height="48" alt="jogi47" title="jogi47"/></a> <a href="https://github.com/kentaro"><img src="https://avatars.githubusercontent.com/u/3458?v=4&s=48" width="48" height="48" alt="kentaro" title="kentaro"/></a> <a href="https://github.com/search?q=Kevin%20Lin"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Kevin Lin" title="Kevin Lin"/></a> <a href="https://github.com/kira-ariaki"><img src="https://avatars.githubusercontent.com/u/257352493?v=4&s=48" width="48" height="48" alt="kira-ariaki" title="kira-ariaki"/></a> <a href="https://github.com/kitze"><img src="https://avatars.githubusercontent.com/u/1160594?v=4&s=48" width="48" height="48" alt="kitze" title="kitze"/></a> <a href="https://github.com/Kiwitwitter"><img src="https://avatars.githubusercontent.com/u/25277769?v=4&s=48" width="48" height="48" alt="Kiwitwitter" title="Kiwitwitter"/></a> <a href="https://github.com/levifig"><img src="https://avatars.githubusercontent.com/u/1605?v=4&s=48" width="48" height="48" alt="levifig" title="levifig"/></a> <a href="https://github.com/search?q=Lloyd"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Lloyd" title="Lloyd"/></a>
|
|
523
|
+
<a href="https://github.com/longjos"><img src="https://avatars.githubusercontent.com/u/740160?v=4&s=48" width="48" height="48" alt="longjos" title="longjos"/></a> <a href="https://github.com/loukotal"><img src="https://avatars.githubusercontent.com/u/18210858?v=4&s=48" width="48" height="48" alt="loukotal" title="loukotal"/></a> <a href="https://github.com/louzhixian"><img src="https://avatars.githubusercontent.com/u/7994361?v=4&s=48" width="48" height="48" alt="louzhixian" title="louzhixian"/></a> <a href="https://github.com/martinpucik"><img src="https://avatars.githubusercontent.com/u/5503097?v=4&s=48" width="48" height="48" alt="martinpucik" title="martinpucik"/></a> <a href="https://github.com/search?q=Matt%20mini"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Matt mini" title="Matt mini"/></a> <a href="https://github.com/mertcicekci0"><img src="https://avatars.githubusercontent.com/u/179321902?v=4&s=48" width="48" height="48" alt="mertcicekci0" title="mertcicekci0"/></a> <a href="https://github.com/search?q=Miles"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Miles" title="Miles"/></a> <a href="https://github.com/mitsuhiko"><img src="https://avatars.githubusercontent.com/u/7396?v=4&s=48" width="48" height="48" alt="mitsuhiko" title="mitsuhiko"/></a> <a href="https://github.com/mrdbstn"><img src="https://avatars.githubusercontent.com/u/58957632?v=4&s=48" width="48" height="48" alt="mrdbstn" title="mrdbstn"/></a> <a href="https://github.com/MSch"><img src="https://avatars.githubusercontent.com/u/7475?v=4&s=48" width="48" height="48" alt="MSch" title="MSch"/></a>
|
|
524
|
+
<a href="https://github.com/search?q=Mustafa%20Tag%20Eldeen"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Mustafa Tag Eldeen" title="Mustafa Tag Eldeen"/></a> <a href="https://github.com/mylukin"><img src="https://avatars.githubusercontent.com/u/1021019?v=4&s=48" width="48" height="48" alt="mylukin" title="mylukin"/></a> <a href="https://github.com/nathanbosse"><img src="https://avatars.githubusercontent.com/u/4040669?v=4&s=48" width="48" height="48" alt="nathanbosse" title="nathanbosse"/></a> <a href="https://github.com/ndraiman"><img src="https://avatars.githubusercontent.com/u/12609607?v=4&s=48" width="48" height="48" alt="ndraiman" title="ndraiman"/></a> <a href="https://github.com/nexty5870"><img src="https://avatars.githubusercontent.com/u/3869659?v=4&s=48" width="48" height="48" alt="nexty5870" title="nexty5870"/></a> <a href="https://github.com/Noctivoro"><img src="https://avatars.githubusercontent.com/u/183974570?v=4&s=48" width="48" height="48" alt="Noctivoro" title="Noctivoro"/></a> <a href="https://github.com/ppamment"><img src="https://avatars.githubusercontent.com/u/2122919?v=4&s=48" width="48" height="48" alt="ppamment" title="ppamment"/></a> <a href="https://github.com/prathamdby"><img src="https://avatars.githubusercontent.com/u/134331217?v=4&s=48" width="48" height="48" alt="prathamdby" title="prathamdby"/></a> <a href="https://github.com/ptn1411"><img src="https://avatars.githubusercontent.com/u/57529765?v=4&s=48" width="48" height="48" alt="ptn1411" title="ptn1411"/></a> <a href="https://github.com/reeltimeapps"><img src="https://avatars.githubusercontent.com/u/637338?v=4&s=48" width="48" height="48" alt="reeltimeapps" title="reeltimeapps"/></a>
|
|
525
|
+
<a href="https://github.com/RLTCmpe"><img src="https://avatars.githubusercontent.com/u/10762242?v=4&s=48" width="48" height="48" alt="RLTCmpe" title="RLTCmpe"/></a> <a href="https://github.com/search?q=Rolf%20Fredheim"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Rolf Fredheim" title="Rolf Fredheim"/></a> <a href="https://github.com/search?q=Rony%20Kelner"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Rony Kelner" title="Rony Kelner"/></a> <a href="https://github.com/search?q=Samrat%20Jha"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Samrat Jha" title="Samrat Jha"/></a> <a href="https://github.com/senoldogann"><img src="https://avatars.githubusercontent.com/u/45736551?v=4&s=48" width="48" height="48" alt="senoldogann" title="senoldogann"/></a> <a href="https://github.com/Seredeep"><img src="https://avatars.githubusercontent.com/u/22802816?v=4&s=48" width="48" height="48" alt="Seredeep" title="Seredeep"/></a> <a href="https://github.com/sergical"><img src="https://avatars.githubusercontent.com/u/3760543?v=4&s=48" width="48" height="48" alt="sergical" title="sergical"/></a> <a href="https://github.com/shiv19"><img src="https://avatars.githubusercontent.com/u/9407019?v=4&s=48" width="48" height="48" alt="shiv19" title="shiv19"/></a> <a href="https://github.com/shiyuanhai"><img src="https://avatars.githubusercontent.com/u/1187370?v=4&s=48" width="48" height="48" alt="shiyuanhai" title="shiyuanhai"/></a> <a href="https://github.com/siraht"><img src="https://avatars.githubusercontent.com/u/73152895?v=4&s=48" width="48" height="48" alt="siraht" title="siraht"/></a>
|
|
526
|
+
<a href="https://github.com/snopoke"><img src="https://avatars.githubusercontent.com/u/249606?v=4&s=48" width="48" height="48" alt="snopoke" title="snopoke"/></a> <a href="https://github.com/search?q=techboss"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="techboss" title="techboss"/></a> <a href="https://github.com/testingabc321"><img src="https://avatars.githubusercontent.com/u/8577388?v=4&s=48" width="48" height="48" alt="testingabc321" title="testingabc321"/></a> <a href="https://github.com/search?q=The%20Admiral"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="The Admiral" title="The Admiral"/></a> <a href="https://github.com/thesash"><img src="https://avatars.githubusercontent.com/u/1166151?v=4&s=48" width="48" height="48" alt="thesash" title="thesash"/></a> <a href="https://github.com/search?q=Vibe%20Kanban"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Vibe Kanban" title="Vibe Kanban"/></a> <a href="https://github.com/voidserf"><img src="https://avatars.githubusercontent.com/u/477673?v=4&s=48" width="48" height="48" alt="voidserf" title="voidserf"/></a> <a href="https://github.com/search?q=Vultr-Clawd%20Admin"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Vultr-Clawd Admin" title="Vultr-Clawd Admin"/></a> <a href="https://github.com/search?q=Wimmie"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Wimmie" title="Wimmie"/></a> <a href="https://github.com/search?q=wolfred"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="wolfred" title="wolfred"/></a>
|
|
527
|
+
<a href="https://github.com/wstock"><img src="https://avatars.githubusercontent.com/u/1394687?v=4&s=48" width="48" height="48" alt="wstock" title="wstock"/></a> <a href="https://github.com/YangHuang2280"><img src="https://avatars.githubusercontent.com/u/201681634?v=4&s=48" width="48" height="48" alt="YangHuang2280" title="YangHuang2280"/></a> <a href="https://github.com/yazinsai"><img src="https://avatars.githubusercontent.com/u/1846034?v=4&s=48" width="48" height="48" alt="yazinsai" title="yazinsai"/></a> <a href="https://github.com/yevhen"><img src="https://avatars.githubusercontent.com/u/107726?v=4&s=48" width="48" height="48" alt="yevhen" title="yevhen"/></a> <a href="https://github.com/YiWang24"><img src="https://avatars.githubusercontent.com/u/176262341?v=4&s=48" width="48" height="48" alt="YiWang24" title="YiWang24"/></a> <a href="https://github.com/search?q=ymat19"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="ymat19" title="ymat19"/></a> <a href="https://github.com/search?q=Zach%20Knickerbocker"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Zach Knickerbocker" title="Zach Knickerbocker"/></a> <a href="https://github.com/zackerthescar"><img src="https://avatars.githubusercontent.com/u/38077284?v=4&s=48" width="48" height="48" alt="zackerthescar" title="zackerthescar"/></a> <a href="https://github.com/0xJonHoldsCrypto"><img src="https://avatars.githubusercontent.com/u/81202085?v=4&s=48" width="48" height="48" alt="0xJonHoldsCrypto" title="0xJonHoldsCrypto"/></a> <a href="https://github.com/aaronn"><img src="https://avatars.githubusercontent.com/u/1653630?v=4&s=48" width="48" height="48" alt="aaronn" title="aaronn"/></a>
|
|
528
|
+
<a href="https://github.com/Alphonse-arianee"><img src="https://avatars.githubusercontent.com/u/254457365?v=4&s=48" width="48" height="48" alt="Alphonse-arianee" title="Alphonse-arianee"/></a> <a href="https://github.com/atalovesyou"><img src="https://avatars.githubusercontent.com/u/3534502?v=4&s=48" width="48" height="48" alt="atalovesyou" title="atalovesyou"/></a> <a href="https://github.com/search?q=Azade"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Azade" title="Azade"/></a> <a href="https://github.com/carlulsoe"><img src="https://avatars.githubusercontent.com/u/34673973?v=4&s=48" width="48" height="48" alt="carlulsoe" title="carlulsoe"/></a> <a href="https://github.com/search?q=ddyo"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="ddyo" title="ddyo"/></a> <a href="https://github.com/search?q=Erik"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Erik" title="Erik"/></a> <a href="https://github.com/latitudeki5223"><img src="https://avatars.githubusercontent.com/u/119656367?v=4&s=48" width="48" height="48" alt="latitudeki5223" title="latitudeki5223"/></a> <a href="https://github.com/search?q=Manuel%20Maly"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Manuel Maly" title="Manuel Maly"/></a> <a href="https://github.com/search?q=Mourad%20Boustani"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Mourad Boustani" title="Mourad Boustani"/></a> <a href="https://github.com/odrobnik"><img src="https://avatars.githubusercontent.com/u/333270?v=4&s=48" width="48" height="48" alt="odrobnik" title="odrobnik"/></a>
|
|
529
|
+
<a href="https://github.com/pcty-nextgen-ios-builder"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="pcty-nextgen-ios-builder" title="pcty-nextgen-ios-builder"/></a> <a href="https://github.com/search?q=Quentin"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Quentin" title="Quentin"/></a> <a href="https://github.com/search?q=Randy%20Torres"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="Randy Torres" title="Randy Torres"/></a> <a href="https://github.com/rhjoh"><img src="https://avatars.githubusercontent.com/u/105699450?v=4&s=48" width="48" height="48" alt="rhjoh" title="rhjoh"/></a> <a href="https://github.com/ronak-guliani"><img src="https://avatars.githubusercontent.com/u/23518228?v=4&s=48" width="48" height="48" alt="ronak-guliani" title="ronak-guliani"/></a> <a href="https://github.com/search?q=William%20Stock"><img src="assets/avatar-placeholder.svg" width="48" height="48" alt="William Stock" title="William Stock"/></a>
|
|
514
530
|
</p>
|