@oh-my-pi/pi-coding-agent 15.1.1 โ 15.1.3
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 +54 -0
- package/dist/types/async/index.d.ts +2 -0
- package/dist/types/async/job-manager.d.ts +87 -0
- package/dist/types/async/support.d.ts +2 -0
- package/dist/types/autoresearch/dashboard.d.ts +4 -0
- package/dist/types/autoresearch/git.d.ts +36 -0
- package/dist/types/autoresearch/helpers.d.ts +24 -0
- package/dist/types/autoresearch/index.d.ts +2 -0
- package/dist/types/autoresearch/state.d.ts +17 -0
- package/dist/types/autoresearch/storage.d.ts +142 -0
- package/dist/types/autoresearch/tools/init-experiment.d.ts +31 -0
- package/dist/types/autoresearch/tools/log-experiment.d.ts +23 -0
- package/dist/types/autoresearch/tools/run-experiment.d.ts +8 -0
- package/dist/types/autoresearch/tools/update-notes.d.ts +12 -0
- package/dist/types/autoresearch/types.d.ts +154 -0
- package/dist/types/capability/context-file.d.ts +17 -0
- package/dist/types/capability/extension-module.d.ts +15 -0
- package/dist/types/capability/extension.d.ts +28 -0
- package/dist/types/capability/fs.d.ts +20 -0
- package/dist/types/capability/hook.d.ts +19 -0
- package/dist/types/capability/index.d.ts +80 -0
- package/dist/types/capability/instruction.d.ts +17 -0
- package/dist/types/capability/mcp.d.ts +45 -0
- package/dist/types/capability/prompt.d.ts +15 -0
- package/dist/types/capability/rule.d.ts +61 -0
- package/dist/types/capability/settings.d.ts +15 -0
- package/dist/types/capability/skill.d.ts +36 -0
- package/dist/types/capability/slash-command.d.ts +17 -0
- package/dist/types/capability/ssh.d.ts +23 -0
- package/dist/types/capability/system-prompt.d.ts +15 -0
- package/dist/types/capability/tool.d.ts +19 -0
- package/dist/types/capability/types.d.ts +154 -0
- package/dist/types/cli/agents-cli.d.ts +12 -0
- package/dist/types/cli/args.d.ts +52 -0
- package/dist/types/cli/auth-broker-cli.d.ts +25 -0
- package/dist/types/cli/auth-gateway-cli.d.ts +18 -0
- package/dist/types/cli/classify-install-target.d.ts +18 -0
- package/dist/types/cli/commands/init-xdg.d.ts +1 -0
- package/dist/types/cli/config-cli.d.ts +22 -0
- package/dist/types/cli/file-processor.d.ts +11 -0
- package/dist/types/cli/grep-cli.d.ts +17 -0
- package/dist/types/cli/grievances-cli.d.ts +37 -0
- package/dist/types/cli/initial-message.d.ts +17 -0
- package/dist/types/cli/list-models.d.ts +30 -0
- package/dist/types/cli/plugin-cli.d.ts +32 -0
- package/dist/types/cli/read-cli.d.ts +4 -0
- package/dist/types/cli/session-picker.d.ts +3 -0
- package/dist/types/cli/setup-cli.d.ts +24 -0
- package/dist/types/cli/shell-cli.d.ts +8 -0
- package/dist/types/cli/ssh-cli.d.ts +21 -0
- package/dist/types/cli/stats-cli.d.ts +17 -0
- package/dist/types/cli/update-cli.d.ts +20 -0
- package/dist/types/cli/web-search-cli.d.ts +20 -0
- package/dist/types/cli.d.ts +3 -0
- package/dist/types/commands/acp.d.ts +12 -0
- package/dist/types/commands/agents.d.ts +34 -0
- package/dist/types/commands/auth-broker.d.ts +54 -0
- package/dist/types/commands/auth-gateway.d.ts +32 -0
- package/dist/types/commands/commit.d.ts +27 -0
- package/dist/types/commands/config.d.ts +30 -0
- package/dist/types/commands/grep.d.ts +42 -0
- package/dist/types/commands/grievances.d.ts +40 -0
- package/dist/types/commands/launch.d.ts +118 -0
- package/dist/types/commands/plugin.d.ts +52 -0
- package/dist/types/commands/read.d.ts +15 -0
- package/dist/types/commands/setup.d.ts +25 -0
- package/dist/types/commands/shell.d.ts +21 -0
- package/dist/types/commands/ssh.d.ts +48 -0
- package/dist/types/commands/stats.d.ts +25 -0
- package/dist/types/commands/update.d.ts +20 -0
- package/dist/types/commands/web-search.d.ts +33 -0
- package/dist/types/commit/agentic/agent.d.ts +31 -0
- package/dist/types/commit/agentic/fallback.d.ts +5 -0
- package/dist/types/commit/agentic/index.d.ts +2 -0
- package/dist/types/commit/agentic/state.d.ts +58 -0
- package/dist/types/commit/agentic/tools/analyze-file.d.ts +19 -0
- package/dist/types/commit/agentic/tools/git-file-diff.d.ts +10 -0
- package/dist/types/commit/agentic/tools/git-hunk.d.ts +9 -0
- package/dist/types/commit/agentic/tools/git-overview.d.ts +9 -0
- package/dist/types/commit/agentic/tools/index.d.ts +16 -0
- package/dist/types/commit/agentic/tools/propose-changelog.d.ts +28 -0
- package/dist/types/commit/agentic/tools/propose-commit.d.ts +36 -0
- package/dist/types/commit/agentic/tools/recent-commits.d.ts +7 -0
- package/dist/types/commit/agentic/tools/schemas.d.ts +27 -0
- package/dist/types/commit/agentic/tools/split-commit.d.ts +53 -0
- package/dist/types/commit/agentic/topo-sort.d.ts +4 -0
- package/dist/types/commit/agentic/trivial.d.ts +7 -0
- package/dist/types/commit/agentic/validation.d.ts +20 -0
- package/dist/types/commit/analysis/conventional.d.ts +22 -0
- package/dist/types/commit/analysis/index.d.ts +4 -0
- package/dist/types/commit/analysis/scope.d.ts +6 -0
- package/dist/types/commit/analysis/summary.d.ts +19 -0
- package/dist/types/commit/analysis/validation.d.ts +8 -0
- package/dist/types/commit/changelog/detect.d.ts +2 -0
- package/dist/types/commit/changelog/generate.d.ts +30 -0
- package/dist/types/commit/changelog/index.d.ts +30 -0
- package/dist/types/commit/changelog/parse.d.ts +2 -0
- package/dist/types/commit/cli.d.ts +3 -0
- package/dist/types/commit/git/diff.d.ts +5 -0
- package/dist/types/commit/index.d.ts +4 -0
- package/dist/types/commit/map-reduce/index.d.ts +28 -0
- package/dist/types/commit/map-reduce/map-phase.d.ts +17 -0
- package/dist/types/commit/map-reduce/reduce-phase.d.ts +13 -0
- package/dist/types/commit/map-reduce/utils.d.ts +2 -0
- package/dist/types/commit/message.d.ts +2 -0
- package/dist/types/commit/model-selection.d.ts +15 -0
- package/dist/types/commit/pipeline.d.ts +5 -0
- package/dist/types/commit/shared-llm.d.ts +54 -0
- package/dist/types/commit/types.d.ts +78 -0
- package/dist/types/commit/utils/exclusions.d.ts +4 -0
- package/dist/types/commit/utils.d.ts +20 -0
- package/dist/types/config/config-file.d.ts +58 -0
- package/dist/types/config/file-lock.d.ts +6 -0
- package/dist/types/config/keybindings.d.ts +334 -0
- package/dist/types/config/model-equivalence.d.ts +24 -0
- package/dist/types/config/model-registry.d.ts +363 -0
- package/dist/types/config/model-resolver.d.ts +230 -0
- package/dist/types/config/models-config-schema.d.ts +503 -0
- package/dist/types/config/prompt-templates.d.ts +32 -0
- package/dist/types/config/resolve-config-value.d.ts +17 -0
- package/dist/types/config/settings-schema.d.ts +3361 -0
- package/dist/types/config/settings.d.ts +126 -0
- package/dist/types/config.d.ts +66 -0
- package/dist/types/cursor.d.ts +22 -0
- package/dist/types/dap/client.d.ts +38 -0
- package/dist/types/dap/config.d.ts +6 -0
- package/dist/types/dap/index.d.ts +4 -0
- package/dist/types/dap/session.d.ts +108 -0
- package/dist/types/dap/types.d.ts +524 -0
- package/dist/types/debug/index.d.ts +15 -0
- package/dist/types/debug/log-formatting.d.ts +4 -0
- package/dist/types/debug/log-viewer.d.ts +68 -0
- package/dist/types/debug/profiler.d.ts +24 -0
- package/dist/types/debug/raw-sse-buffer.d.ts +44 -0
- package/dist/types/debug/raw-sse.d.ts +16 -0
- package/dist/types/debug/report-bundle.d.ts +55 -0
- package/dist/types/debug/system-info.d.ts +26 -0
- package/dist/types/discovery/agents-md.d.ts +1 -0
- package/dist/types/discovery/agents.d.ts +12 -0
- package/dist/types/discovery/builtin.d.ts +1 -0
- package/dist/types/discovery/claude-plugins.d.ts +1 -0
- package/dist/types/discovery/claude.d.ts +1 -0
- package/dist/types/discovery/cline.d.ts +1 -0
- package/dist/types/discovery/codex.d.ts +1 -0
- package/dist/types/discovery/cursor.d.ts +16 -0
- package/dist/types/discovery/gemini.d.ts +1 -0
- package/dist/types/discovery/github.d.ts +1 -0
- package/dist/types/discovery/helpers.d.ts +267 -0
- package/dist/types/discovery/index.d.ts +51 -0
- package/dist/types/discovery/mcp-json.d.ts +1 -0
- package/dist/types/discovery/opencode.d.ts +1 -0
- package/dist/types/discovery/plugin-dir-roots.d.ts +15 -0
- package/dist/types/discovery/ssh.d.ts +1 -0
- package/dist/types/discovery/substitute-plugin-root.d.ts +5 -0
- package/dist/types/discovery/vscode.d.ts +1 -0
- package/dist/types/discovery/windsurf.d.ts +13 -0
- package/dist/types/edit/apply-patch/index.d.ts +35 -0
- package/dist/types/edit/apply-patch/parser.d.ts +34 -0
- package/dist/types/edit/diff.d.ts +59 -0
- package/dist/types/edit/file-read-cache.d.ts +25 -0
- package/dist/types/edit/index.d.ts +58 -0
- package/dist/types/edit/modes/apply-patch.d.ts +24 -0
- package/dist/types/edit/modes/patch.d.ts +99 -0
- package/dist/types/edit/modes/replace.d.ts +142 -0
- package/dist/types/edit/normalize.d.ts +43 -0
- package/dist/types/edit/notebook.d.ts +23 -0
- package/dist/types/edit/read-file.d.ts +2 -0
- package/dist/types/edit/renderer.d.ts +110 -0
- package/dist/types/edit/streaming.d.ts +59 -0
- package/dist/types/eval/backend.d.ts +40 -0
- package/dist/types/eval/index.d.ts +4 -0
- package/dist/types/eval/js/context-manager.d.ts +24 -0
- package/dist/types/eval/js/executor.d.ts +28 -0
- package/dist/types/eval/js/index.d.ts +10 -0
- package/dist/types/eval/js/shared/helpers.d.ts +38 -0
- package/dist/types/eval/js/shared/indirect-eval.d.ts +14 -0
- package/dist/types/eval/js/shared/prelude.d.ts +1 -0
- package/dist/types/eval/js/shared/rewrite-imports.d.ts +6 -0
- package/dist/types/eval/js/shared/runtime.d.ts +47 -0
- package/dist/types/eval/js/shared/types.d.ts +24 -0
- package/dist/types/eval/js/tool-bridge.d.ts +18 -0
- package/dist/types/eval/js/worker-core.d.ts +5 -0
- package/dist/types/eval/js/worker-entry.d.ts +1 -0
- package/dist/types/eval/js/worker-protocol.d.ts +77 -0
- package/dist/types/eval/py/display.d.ts +25 -0
- package/dist/types/eval/py/executor.d.ts +83 -0
- package/dist/types/eval/py/index.d.ts +10 -0
- package/dist/types/eval/py/kernel.d.ts +55 -0
- package/dist/types/eval/py/prelude.d.ts +1 -0
- package/dist/types/eval/py/runtime.d.ts +21 -0
- package/dist/types/eval/py/tool-bridge.d.ts +20 -0
- package/dist/types/eval/types.d.ts +52 -0
- package/dist/types/exa/factory.d.ts +13 -0
- package/dist/types/exa/index.d.ts +20 -0
- package/dist/types/exa/mcp-client.d.ts +45 -0
- package/dist/types/exa/render.d.ts +19 -0
- package/dist/types/exa/researcher.d.ts +9 -0
- package/dist/types/exa/search.d.ts +9 -0
- package/dist/types/exa/types.d.ts +155 -0
- package/dist/types/exa/websets.d.ts +9 -0
- package/dist/types/exec/bash-executor.d.ts +41 -0
- package/dist/types/exec/exec.d.ts +25 -0
- package/dist/types/exec/idle-timeout-watchdog.d.ts +18 -0
- package/dist/types/exec/non-interactive-env.d.ts +1 -0
- package/dist/types/export/custom-share.d.ts +20 -0
- package/dist/types/export/html/index.d.ts +10 -0
- package/dist/types/export/html/template.generated.d.ts +1 -0
- package/dist/types/export/html/template.macro.d.ts +5 -0
- package/dist/types/export/ttsr.d.ts +44 -0
- package/dist/types/extensibility/custom-commands/bundled/ci-green/index.d.ts +9 -0
- package/dist/types/extensibility/custom-commands/bundled/review/index.d.ts +10 -0
- package/dist/types/extensibility/custom-commands/index.d.ts +2 -0
- package/dist/types/extensibility/custom-commands/loader.d.ts +29 -0
- package/dist/types/extensibility/custom-commands/types.d.ts +106 -0
- package/dist/types/extensibility/custom-tools/index.d.ts +6 -0
- package/dist/types/extensibility/custom-tools/loader.d.ts +69 -0
- package/dist/types/extensibility/custom-tools/types.d.ts +226 -0
- package/dist/types/extensibility/custom-tools/wrapper.d.ts +23 -0
- package/dist/types/extensibility/extensions/compact-handler.d.ts +26 -0
- package/dist/types/extensibility/extensions/get-commands-handler.d.ts +29 -0
- package/dist/types/extensibility/extensions/index.d.ts +8 -0
- package/dist/types/extensibility/extensions/loader.d.ts +43 -0
- package/dist/types/extensibility/extensions/runner.d.ts +134 -0
- package/dist/types/extensibility/extensions/types.d.ts +864 -0
- package/dist/types/extensibility/extensions/wrapper.d.ts +54 -0
- package/dist/types/extensibility/hooks/index.d.ts +5 -0
- package/dist/types/extensibility/hooks/loader.d.ts +89 -0
- package/dist/types/extensibility/hooks/runner.d.ts +126 -0
- package/dist/types/extensibility/hooks/tool-wrapper.d.ts +25 -0
- package/dist/types/extensibility/hooks/types.d.ts +431 -0
- package/dist/types/extensibility/plugins/doctor.d.ts +3 -0
- package/dist/types/extensibility/plugins/git-url.d.ts +34 -0
- package/dist/types/extensibility/plugins/index.d.ts +7 -0
- package/dist/types/extensibility/plugins/installer.d.ts +5 -0
- package/dist/types/extensibility/plugins/legacy-pi-compat.d.ts +2 -0
- package/dist/types/extensibility/plugins/loader.d.ts +31 -0
- package/dist/types/extensibility/plugins/manager.d.ts +65 -0
- package/dist/types/extensibility/plugins/marketplace/cache.d.ts +41 -0
- package/dist/types/extensibility/plugins/marketplace/fetcher.d.ts +48 -0
- package/dist/types/extensibility/plugins/marketplace/index.d.ts +6 -0
- package/dist/types/extensibility/plugins/marketplace/manager.d.ts +57 -0
- package/dist/types/extensibility/plugins/marketplace/registry.d.ts +34 -0
- package/dist/types/extensibility/plugins/marketplace/source-resolver.d.ts +28 -0
- package/dist/types/extensibility/plugins/marketplace/types.d.ts +130 -0
- package/dist/types/extensibility/plugins/parser.d.ts +52 -0
- package/dist/types/extensibility/plugins/types.d.ts +149 -0
- package/dist/types/extensibility/shared-events.d.ts +279 -0
- package/dist/types/extensibility/skills.d.ts +57 -0
- package/dist/types/extensibility/slash-commands.d.ts +48 -0
- package/dist/types/extensibility/tool-proxy.d.ts +4 -0
- package/dist/types/extensibility/typebox.d.ts +155 -0
- package/dist/types/extensibility/utils.d.ts +12 -0
- package/dist/types/goals/index.d.ts +3 -0
- package/dist/types/goals/runtime.d.ts +63 -0
- package/dist/types/goals/state.d.ts +35 -0
- package/dist/types/goals/tools/goal-tool.d.ts +62 -0
- package/dist/types/hashline/anchors.d.ts +20 -0
- package/dist/types/hashline/apply.d.ts +14 -0
- package/dist/types/hashline/constants.d.ts +21 -0
- package/dist/types/hashline/diff-preview.d.ts +2 -0
- package/dist/types/hashline/diff.d.ts +17 -0
- package/dist/types/hashline/execute.d.ts +4 -0
- package/dist/types/hashline/hash.d.ts +149 -0
- package/dist/types/hashline/index.d.ts +13 -0
- package/dist/types/hashline/input.d.ts +11 -0
- package/dist/types/hashline/parser.d.ts +7 -0
- package/dist/types/hashline/prefixes.d.ts +7 -0
- package/dist/types/hashline/recovery.d.ts +22 -0
- package/dist/types/hashline/stream.d.ts +2 -0
- package/dist/types/hashline/types.d.ts +77 -0
- package/dist/types/hindsight/backend.d.ts +13 -0
- package/dist/types/hindsight/bank.d.ts +54 -0
- package/dist/types/hindsight/client.d.ts +224 -0
- package/dist/types/hindsight/config.d.ts +51 -0
- package/dist/types/hindsight/content.d.ts +70 -0
- package/dist/types/hindsight/index.d.ts +8 -0
- package/dist/types/hindsight/mental-models.d.ts +125 -0
- package/dist/types/hindsight/state.d.ts +99 -0
- package/dist/types/hindsight/transcript.d.ts +28 -0
- package/dist/types/index.d.ts +33 -0
- package/dist/types/internal-urls/agent-protocol.d.ts +12 -0
- package/dist/types/internal-urls/artifact-protocol.d.ts +6 -0
- package/dist/types/internal-urls/docs-index.generated.d.ts +2 -0
- package/dist/types/internal-urls/index.d.ts +22 -0
- package/dist/types/internal-urls/issue-pr-protocol.d.ts +17 -0
- package/dist/types/internal-urls/json-query.d.ts +30 -0
- package/dist/types/internal-urls/local-protocol.d.ts +39 -0
- package/dist/types/internal-urls/mcp-protocol.d.ts +12 -0
- package/dist/types/internal-urls/memory-protocol.d.ts +17 -0
- package/dist/types/internal-urls/omp-protocol.d.ts +12 -0
- package/dist/types/internal-urls/parse.d.ts +19 -0
- package/dist/types/internal-urls/registry-helpers.d.ts +10 -0
- package/dist/types/internal-urls/router.d.ts +14 -0
- package/dist/types/internal-urls/rule-protocol.d.ts +6 -0
- package/dist/types/internal-urls/skill-protocol.d.ts +13 -0
- package/dist/types/internal-urls/types.d.ts +105 -0
- package/dist/types/lsp/client.d.ts +65 -0
- package/dist/types/lsp/clients/biome-client.d.ts +16 -0
- package/dist/types/lsp/clients/index.d.ts +19 -0
- package/dist/types/lsp/clients/lsp-linter-client.d.ts +16 -0
- package/dist/types/lsp/clients/swiftlint-client.d.ts +20 -0
- package/dist/types/lsp/config.d.ts +65 -0
- package/dist/types/lsp/edits.d.ts +16 -0
- package/dist/types/lsp/index.d.ts +130 -0
- package/dist/types/lsp/lspmux.d.ts +58 -0
- package/dist/types/lsp/render.d.ts +32 -0
- package/dist/types/lsp/startup-events.d.ts +11 -0
- package/dist/types/lsp/types.d.ts +302 -0
- package/dist/types/lsp/utils.d.ts +108 -0
- package/dist/types/main.d.ts +17 -0
- package/dist/types/mcp/client.d.ts +74 -0
- package/dist/types/mcp/config-writer.d.ts +53 -0
- package/dist/types/mcp/config.d.ts +75 -0
- package/dist/types/mcp/discoverable-tool-metadata.d.ts +7 -0
- package/dist/types/mcp/index.d.ts +18 -0
- package/dist/types/mcp/json-rpc.d.ts +22 -0
- package/dist/types/mcp/loader.d.ts +43 -0
- package/dist/types/mcp/manager.d.ts +193 -0
- package/dist/types/mcp/oauth-discovery.d.ts +40 -0
- package/dist/types/mcp/oauth-flow.d.ts +59 -0
- package/dist/types/mcp/render.d.ts +25 -0
- package/dist/types/mcp/smithery-auth.d.ts +16 -0
- package/dist/types/mcp/smithery-connect.d.ts +38 -0
- package/dist/types/mcp/smithery-registry.d.ts +51 -0
- package/dist/types/mcp/tool-bridge.d.ts +86 -0
- package/dist/types/mcp/tool-cache.d.ts +8 -0
- package/dist/types/mcp/transports/http.d.ts +36 -0
- package/dist/types/mcp/transports/index.d.ts +5 -0
- package/dist/types/mcp/transports/stdio.d.ts +32 -0
- package/dist/types/mcp/types.d.ts +333 -0
- package/dist/types/memories/index.d.ts +28 -0
- package/dist/types/memories/storage.d.ts +110 -0
- package/dist/types/memory-backend/index.d.ts +4 -0
- package/dist/types/memory-backend/local-backend.d.ts +9 -0
- package/dist/types/memory-backend/off-backend.d.ts +7 -0
- package/dist/types/memory-backend/resolve.d.ts +15 -0
- package/dist/types/memory-backend/types.d.ts +61 -0
- package/dist/types/modes/acp/acp-agent.d.ts +61 -0
- package/dist/types/modes/acp/acp-client-bridge.d.ts +9 -0
- package/dist/types/modes/acp/acp-event-mapper.d.ts +20 -0
- package/dist/types/modes/acp/acp-mode.d.ts +3 -0
- package/dist/types/modes/acp/index.d.ts +2 -0
- package/dist/types/modes/acp/terminal-auth.d.ts +6 -0
- package/dist/types/modes/components/agent-dashboard.d.ts +21 -0
- package/dist/types/modes/components/assistant-message.d.ts +16 -0
- package/dist/types/modes/components/bash-execution.d.ts +29 -0
- package/dist/types/modes/components/bordered-loader.d.ts +11 -0
- package/dist/types/modes/components/branch-summary-message.d.ts +13 -0
- package/dist/types/modes/components/btw-panel.d.ts +16 -0
- package/dist/types/modes/components/compaction-summary-message.d.ts +13 -0
- package/dist/types/modes/components/countdown-timer.d.ts +14 -0
- package/dist/types/modes/components/custom-editor.d.ts +47 -0
- package/dist/types/modes/components/custom-message.d.ts +15 -0
- package/dist/types/modes/components/diff.d.ts +11 -0
- package/dist/types/modes/components/dynamic-border.d.ts +14 -0
- package/dist/types/modes/components/eval-execution.d.ts +23 -0
- package/dist/types/modes/components/execution-shared.d.ts +46 -0
- package/dist/types/modes/components/extensions/extension-dashboard.d.ts +26 -0
- package/dist/types/modes/components/extensions/extension-list.d.ts +39 -0
- package/dist/types/modes/components/extensions/index.d.ts +8 -0
- package/dist/types/modes/components/extensions/inspector-panel.d.ts +8 -0
- package/dist/types/modes/components/extensions/state-manager.d.ts +50 -0
- package/dist/types/modes/components/extensions/types.d.ts +151 -0
- package/dist/types/modes/components/footer.d.ts +30 -0
- package/dist/types/modes/components/history-search.d.ts +7 -0
- package/dist/types/modes/components/hook-editor.d.ts +18 -0
- package/dist/types/modes/components/hook-input.d.ts +15 -0
- package/dist/types/modes/components/hook-message.d.ts +15 -0
- package/dist/types/modes/components/hook-selector.d.ts +23 -0
- package/dist/types/modes/components/index.d.ts +35 -0
- package/dist/types/modes/components/keybinding-hints.d.ts +40 -0
- package/dist/types/modes/components/login-dialog.d.ts +32 -0
- package/dist/types/modes/components/mcp-add-wizard.d.ts +25 -0
- package/dist/types/modes/components/message-frame.d.ts +42 -0
- package/dist/types/modes/components/model-selector.d.ts +26 -0
- package/dist/types/modes/components/oauth-selector.d.ts +14 -0
- package/dist/types/modes/components/plugin-selector.d.ts +26 -0
- package/dist/types/modes/components/plugin-settings.d.ts +66 -0
- package/dist/types/modes/components/queue-mode-selector.d.ts +9 -0
- package/dist/types/modes/components/read-tool-group.d.ts +30 -0
- package/dist/types/modes/components/session-observer-overlay.d.ts +11 -0
- package/dist/types/modes/components/session-selector.d.ts +30 -0
- package/dist/types/modes/components/settings-defs.d.ts +50 -0
- package/dist/types/modes/components/settings-selector.d.ts +54 -0
- package/dist/types/modes/components/show-images-selector.d.ts +9 -0
- package/dist/types/modes/components/skill-message.d.ts +9 -0
- package/dist/types/modes/components/status-line/context-thresholds.d.ts +4 -0
- package/dist/types/modes/components/status-line/git-utils.d.ts +22 -0
- package/dist/types/modes/components/status-line/index.d.ts +4 -0
- package/dist/types/modes/components/status-line/presets.d.ts +3 -0
- package/dist/types/modes/components/status-line/segments.d.ts +5 -0
- package/dist/types/modes/components/status-line/separators.d.ts +3 -0
- package/dist/types/modes/components/status-line/token-rate.d.ts +10 -0
- package/dist/types/modes/components/status-line/types.d.ts +70 -0
- package/dist/types/modes/components/status-line-segment-editor.d.ts +24 -0
- package/dist/types/modes/components/status-line.d.ts +61 -0
- package/dist/types/modes/components/theme-selector.d.ts +10 -0
- package/dist/types/modes/components/thinking-selector.d.ts +10 -0
- package/dist/types/modes/components/todo-reminder.d.ts +13 -0
- package/dist/types/modes/components/tool-execution.d.ts +53 -0
- package/dist/types/modes/components/tree-selector.d.ts +31 -0
- package/dist/types/modes/components/ttsr-notification.d.ts +13 -0
- package/dist/types/modes/components/user-message-selector.d.ts +28 -0
- package/dist/types/modes/components/user-message.d.ts +8 -0
- package/dist/types/modes/components/visual-truncate.d.ts +19 -0
- package/dist/types/modes/components/welcome.d.ts +33 -0
- package/dist/types/modes/controllers/btw-controller.d.ts +10 -0
- package/dist/types/modes/controllers/command-controller-shared.d.ts +47 -0
- package/dist/types/modes/controllers/command-controller.d.ts +36 -0
- package/dist/types/modes/controllers/event-controller.d.ts +12 -0
- package/dist/types/modes/controllers/extension-ui-controller.d.ts +80 -0
- package/dist/types/modes/controllers/input-controller.d.ts +35 -0
- package/dist/types/modes/controllers/mcp-command-controller.d.ts +10 -0
- package/dist/types/modes/controllers/selector-controller.d.ts +45 -0
- package/dist/types/modes/controllers/ssh-command-controller.d.ts +10 -0
- package/dist/types/modes/controllers/todo-command-controller.d.ts +7 -0
- package/dist/types/modes/emoji-autocomplete.d.ts +16 -0
- package/dist/types/modes/index.d.ts +9 -0
- package/dist/types/modes/interactive-mode.d.ts +267 -0
- package/dist/types/modes/loop-limit.d.ts +22 -0
- package/dist/types/modes/oauth-manual-input.d.ts +8 -0
- package/dist/types/modes/print-mode.d.ts +27 -0
- package/dist/types/modes/prompt-action-autocomplete.d.ts +46 -0
- package/dist/types/modes/rpc/host-tools.d.ts +16 -0
- package/dist/types/modes/rpc/host-uris.d.ts +38 -0
- package/dist/types/modes/rpc/rpc-client.d.ts +249 -0
- package/dist/types/modes/rpc/rpc-mode.d.ts +17 -0
- package/dist/types/modes/rpc/rpc-types.d.ts +586 -0
- package/dist/types/modes/runtime-init.d.ts +21 -0
- package/dist/types/modes/session-observer-registry.d.ts +26 -0
- package/dist/types/modes/shared.d.ts +6 -0
- package/dist/types/modes/theme/defaults/index.d.ts +9436 -0
- package/dist/types/modes/theme/mermaid-cache.d.ts +9 -0
- package/dist/types/modes/theme/theme.d.ts +273 -0
- package/dist/types/modes/types.d.ts +274 -0
- package/dist/types/modes/utils/context-usage.d.ts +30 -0
- package/dist/types/modes/utils/hotkeys-markdown.d.ts +5 -0
- package/dist/types/modes/utils/keybinding-matchers.d.ts +10 -0
- package/dist/types/modes/utils/tools-markdown.d.ts +5 -0
- package/dist/types/modes/utils/ui-helpers.d.ts +49 -0
- package/dist/types/plan-mode/approved-plan.d.ts +29 -0
- package/dist/types/plan-mode/state.d.ts +6 -0
- package/dist/types/registry/agent-registry.d.ts +62 -0
- package/dist/types/sdk.d.ts +253 -0
- package/dist/types/secrets/index.d.ts +9 -0
- package/dist/types/secrets/obfuscator.d.ts +23 -0
- package/dist/types/secrets/regex.d.ts +2 -0
- package/dist/types/session/agent-session.d.ts +898 -0
- package/dist/types/session/agent-storage.d.ts +93 -0
- package/dist/types/session/artifacts.d.ts +61 -0
- package/dist/types/session/auth-broker-config.d.ts +13 -0
- package/dist/types/session/auth-storage.d.ts +6 -0
- package/dist/types/session/blob-store.d.ts +63 -0
- package/dist/types/session/client-bridge.d.ts +84 -0
- package/dist/types/session/history-storage.d.ts +16 -0
- package/dist/types/session/messages.d.ts +162 -0
- package/dist/types/session/session-dump-format.d.ts +22 -0
- package/dist/types/session/session-manager.d.ts +539 -0
- package/dist/types/session/session-storage.d.ts +82 -0
- package/dist/types/session/streaming-output.d.ts +185 -0
- package/dist/types/session/tool-choice-queue.d.ts +78 -0
- package/dist/types/slash-commands/acp-builtins.d.ts +18 -0
- package/dist/types/slash-commands/builtin-registry.d.ts +23 -0
- package/dist/types/slash-commands/helpers/context-report.d.ts +7 -0
- package/dist/types/slash-commands/helpers/format.d.ts +7 -0
- package/dist/types/slash-commands/helpers/marketplace-manager.d.ts +8 -0
- package/dist/types/slash-commands/helpers/mcp.d.ts +3 -0
- package/dist/types/slash-commands/helpers/parse.d.ts +33 -0
- package/dist/types/slash-commands/helpers/ssh.d.ts +3 -0
- package/dist/types/slash-commands/helpers/todo.d.ts +3 -0
- package/dist/types/slash-commands/helpers/usage-report.d.ts +7 -0
- package/dist/types/slash-commands/marketplace-install-parser.d.ts +33 -0
- package/dist/types/slash-commands/types.d.ts +119 -0
- package/dist/types/ssh/config-writer.d.ts +49 -0
- package/dist/types/ssh/connection-manager.d.ts +33 -0
- package/dist/types/ssh/ssh-executor.d.ts +37 -0
- package/dist/types/ssh/sshfs-mount.d.ts +6 -0
- package/dist/types/ssh/utils.d.ts +2 -0
- package/dist/types/stt/downloader.d.ts +9 -0
- package/dist/types/stt/index.d.ts +3 -0
- package/dist/types/stt/recorder.d.ts +13 -0
- package/dist/types/stt/setup.d.ts +18 -0
- package/dist/types/stt/stt-controller.d.ts +16 -0
- package/dist/types/stt/transcriber.d.ts +16 -0
- package/dist/types/system-prompt.d.ts +93 -0
- package/dist/types/task/agents.d.ts +28 -0
- package/dist/types/task/commands.d.ts +35 -0
- package/dist/types/task/discovery.d.ts +18 -0
- package/dist/types/task/executor.d.ts +106 -0
- package/dist/types/task/index.d.ts +38 -0
- package/dist/types/task/name-generator.d.ts +16 -0
- package/dist/types/task/omp-command.d.ts +7 -0
- package/dist/types/task/output-manager.d.ts +36 -0
- package/dist/types/task/parallel.d.ts +34 -0
- package/dist/types/task/render.d.ts +22 -0
- package/dist/types/task/simple-mode.d.ts +8 -0
- package/dist/types/task/subprocess-tool-registry.d.ts +72 -0
- package/dist/types/task/types.d.ts +251 -0
- package/dist/types/task/worktree.d.ts +95 -0
- package/dist/types/thinking.d.ts +30 -0
- package/dist/types/tool-discovery/tool-index.d.ts +107 -0
- package/dist/types/tools/archive-reader.d.ts +40 -0
- package/dist/types/tools/ask.d.ts +109 -0
- package/dist/types/tools/ast-edit.d.ts +72 -0
- package/dist/types/tools/ast-grep.d.ts +64 -0
- package/dist/types/tools/auto-generated-guard.d.ts +17 -0
- package/dist/types/tools/bash-command-fixup.d.ts +16 -0
- package/dist/types/tools/bash-interactive.d.ts +16 -0
- package/dist/types/tools/bash-interceptor.d.ts +24 -0
- package/dist/types/tools/bash-pty-selection.d.ts +7 -0
- package/dist/types/tools/bash-skill-urls.d.ts +31 -0
- package/dist/types/tools/bash.d.ts +130 -0
- package/dist/types/tools/browser/attach.d.ts +34 -0
- package/dist/types/tools/browser/launch.d.ts +60 -0
- package/dist/types/tools/browser/readable.d.ts +17 -0
- package/dist/types/tools/browser/registry.d.ts +42 -0
- package/dist/types/tools/browser/render.d.ts +50 -0
- package/dist/types/tools/browser/tab-protocol.d.ts +144 -0
- package/dist/types/tools/browser/tab-supervisor.d.ts +63 -0
- package/dist/types/tools/browser/tab-worker-entry.d.ts +1 -0
- package/dist/types/tools/browser/tab-worker.d.ts +19 -0
- package/dist/types/tools/browser.d.ts +114 -0
- package/dist/types/tools/calculator.d.ts +76 -0
- package/dist/types/tools/checkpoint.d.ts +63 -0
- package/dist/types/tools/conflict-detect.d.ts +205 -0
- package/dist/types/tools/context.d.ts +19 -0
- package/dist/types/tools/debug.d.ts +209 -0
- package/dist/types/tools/eval.d.ts +108 -0
- package/dist/types/tools/fetch.d.ts +61 -0
- package/dist/types/tools/file-recorder.d.ts +13 -0
- package/dist/types/tools/find.d.ts +88 -0
- package/dist/types/tools/fs-cache-invalidation.d.ts +15 -0
- package/dist/types/tools/gh-format.d.ts +6 -0
- package/dist/types/tools/gh-renderer.d.ts +25 -0
- package/dist/types/tools/gh.d.ts +356 -0
- package/dist/types/tools/github-cache.d.ts +103 -0
- package/dist/types/tools/grouped-file-output.d.ts +36 -0
- package/dist/types/tools/hindsight-recall.d.ts +23 -0
- package/dist/types/tools/hindsight-reflect.d.ts +25 -0
- package/dist/types/tools/hindsight-retain.d.ts +29 -0
- package/dist/types/tools/image-gen.d.ts +78 -0
- package/dist/types/tools/index.d.ts +244 -0
- package/dist/types/tools/inspect-image-renderer.d.ts +26 -0
- package/dist/types/tools/inspect-image.d.ts +31 -0
- package/dist/types/tools/irc.d.ts +79 -0
- package/dist/types/tools/job.d.ts +65 -0
- package/dist/types/tools/json-tree.d.ts +23 -0
- package/dist/types/tools/jtd-to-json-schema.d.ts +29 -0
- package/dist/types/tools/jtd-to-typescript.d.ts +26 -0
- package/dist/types/tools/jtd-utils.d.ts +42 -0
- package/dist/types/tools/list-limit.d.ts +12 -0
- package/dist/types/tools/match-line-format.d.ts +11 -0
- package/dist/types/tools/output-meta.d.ts +204 -0
- package/dist/types/tools/path-utils.d.ts +125 -0
- package/dist/types/tools/plan-mode-guard.d.ts +18 -0
- package/dist/types/tools/read.d.ts +85 -0
- package/dist/types/tools/recipe/index.d.ts +45 -0
- package/dist/types/tools/recipe/render.d.ts +36 -0
- package/dist/types/tools/recipe/runner.d.ts +60 -0
- package/dist/types/tools/recipe/runners/cargo.d.ts +16 -0
- package/dist/types/tools/recipe/runners/index.d.ts +2 -0
- package/dist/types/tools/recipe/runners/just.d.ts +2 -0
- package/dist/types/tools/recipe/runners/make.d.ts +2 -0
- package/dist/types/tools/recipe/runners/pkg.d.ts +2 -0
- package/dist/types/tools/recipe/runners/task.d.ts +2 -0
- package/dist/types/tools/render-mermaid.d.ts +37 -0
- package/dist/types/tools/render-utils.d.ts +148 -0
- package/dist/types/tools/renderers.d.ts +26 -0
- package/dist/types/tools/report-tool-issue.d.ts +123 -0
- package/dist/types/tools/resolve.d.ts +85 -0
- package/dist/types/tools/review.d.ts +50 -0
- package/dist/types/tools/search-tool-bm25.d.ts +65 -0
- package/dist/types/tools/search.d.ts +90 -0
- package/dist/types/tools/sqlite-reader.d.ts +93 -0
- package/dist/types/tools/ssh.d.ts +67 -0
- package/dist/types/tools/todo-write.d.ts +120 -0
- package/dist/types/tools/tool-errors.d.ts +33 -0
- package/dist/types/tools/tool-result.d.ts +30 -0
- package/dist/types/tools/tool-timeouts.d.ts +51 -0
- package/dist/types/tools/vim.d.ts +58 -0
- package/dist/types/tools/write.d.ts +59 -0
- package/dist/types/tools/yield.d.ts +25 -0
- package/dist/types/tui/code-cell.d.ts +32 -0
- package/dist/types/tui/file-list.d.ts +16 -0
- package/dist/types/tui/index.d.ts +10 -0
- package/dist/types/tui/output-block.d.ts +28 -0
- package/dist/types/tui/status-line.d.ts +18 -0
- package/dist/types/tui/tree-list.d.ts +19 -0
- package/dist/types/tui/types.d.ts +13 -0
- package/dist/types/tui/utils.d.ts +36 -0
- package/dist/types/utils/changelog.d.ts +20 -0
- package/dist/types/utils/clipboard.d.ts +20 -0
- package/dist/types/utils/command-args.d.ts +9 -0
- package/dist/types/utils/commit-message-generator.d.ts +7 -0
- package/dist/types/utils/edit-mode.d.ts +13 -0
- package/dist/types/utils/event-bus.d.ts +6 -0
- package/dist/types/utils/external-editor.d.ts +17 -0
- package/dist/types/utils/file-display-mode.d.ts +27 -0
- package/dist/types/utils/file-mentions.d.ts +11 -0
- package/dist/types/utils/git.d.ts +360 -0
- package/dist/types/utils/image-loading.d.ts +26 -0
- package/dist/types/utils/image-resize.d.ts +36 -0
- package/dist/types/utils/lang-from-path.d.ts +8 -0
- package/dist/types/utils/markit.d.ts +7 -0
- package/dist/types/utils/open.d.ts +2 -0
- package/dist/types/utils/session-color.d.ts +10 -0
- package/dist/types/utils/shell-snapshot.d.ts +5 -0
- package/dist/types/utils/sixel.d.ts +21 -0
- package/dist/types/utils/title-generator.d.ts +31 -0
- package/dist/types/utils/tool-choice.d.ts +6 -0
- package/dist/types/utils/tools-manager.d.ts +9 -0
- package/dist/types/vim/buffer.d.ts +41 -0
- package/dist/types/vim/commands.d.ts +6 -0
- package/dist/types/vim/engine.d.ts +47 -0
- package/dist/types/vim/parser.d.ts +3 -0
- package/dist/types/vim/render.d.ts +25 -0
- package/dist/types/vim/types.d.ts +182 -0
- package/dist/types/web/kagi.d.ts +21 -0
- package/dist/types/web/parallel.d.ts +57 -0
- package/dist/types/web/scrapers/artifacthub.d.ts +6 -0
- package/dist/types/web/scrapers/arxiv.d.ts +5 -0
- package/dist/types/web/scrapers/aur.d.ts +5 -0
- package/dist/types/web/scrapers/biorxiv.d.ts +5 -0
- package/dist/types/web/scrapers/bluesky.d.ts +5 -0
- package/dist/types/web/scrapers/brew.d.ts +5 -0
- package/dist/types/web/scrapers/cheatsh.d.ts +8 -0
- package/dist/types/web/scrapers/chocolatey.d.ts +5 -0
- package/dist/types/web/scrapers/choosealicense.d.ts +2 -0
- package/dist/types/web/scrapers/cisa-kev.d.ts +5 -0
- package/dist/types/web/scrapers/clojars.d.ts +5 -0
- package/dist/types/web/scrapers/coingecko.d.ts +5 -0
- package/dist/types/web/scrapers/crates-io.d.ts +5 -0
- package/dist/types/web/scrapers/crossref.d.ts +2 -0
- package/dist/types/web/scrapers/devto.d.ts +5 -0
- package/dist/types/web/scrapers/discogs.d.ts +8 -0
- package/dist/types/web/scrapers/discourse.d.ts +5 -0
- package/dist/types/web/scrapers/dockerhub.d.ts +5 -0
- package/dist/types/web/scrapers/docs-rs.d.ts +2 -0
- package/dist/types/web/scrapers/fdroid.d.ts +5 -0
- package/dist/types/web/scrapers/firefox-addons.d.ts +2 -0
- package/dist/types/web/scrapers/flathub.d.ts +2 -0
- package/dist/types/web/scrapers/github-gist.d.ts +5 -0
- package/dist/types/web/scrapers/github.d.ts +12 -0
- package/dist/types/web/scrapers/gitlab.d.ts +5 -0
- package/dist/types/web/scrapers/go-pkg.d.ts +5 -0
- package/dist/types/web/scrapers/hackage.d.ts +5 -0
- package/dist/types/web/scrapers/hackernews.d.ts +2 -0
- package/dist/types/web/scrapers/hex.d.ts +5 -0
- package/dist/types/web/scrapers/huggingface.d.ts +2 -0
- package/dist/types/web/scrapers/iacr.d.ts +5 -0
- package/dist/types/web/scrapers/index.d.ts +84 -0
- package/dist/types/web/scrapers/jetbrains-marketplace.d.ts +2 -0
- package/dist/types/web/scrapers/lemmy.d.ts +2 -0
- package/dist/types/web/scrapers/lobsters.d.ts +5 -0
- package/dist/types/web/scrapers/mastodon.d.ts +5 -0
- package/dist/types/web/scrapers/maven.d.ts +6 -0
- package/dist/types/web/scrapers/mdn.d.ts +2 -0
- package/dist/types/web/scrapers/metacpan.d.ts +5 -0
- package/dist/types/web/scrapers/musicbrainz.d.ts +5 -0
- package/dist/types/web/scrapers/npm.d.ts +5 -0
- package/dist/types/web/scrapers/nuget.d.ts +5 -0
- package/dist/types/web/scrapers/nvd.d.ts +5 -0
- package/dist/types/web/scrapers/ollama.d.ts +2 -0
- package/dist/types/web/scrapers/open-vsx.d.ts +5 -0
- package/dist/types/web/scrapers/opencorporates.d.ts +5 -0
- package/dist/types/web/scrapers/openlibrary.d.ts +5 -0
- package/dist/types/web/scrapers/orcid.d.ts +5 -0
- package/dist/types/web/scrapers/osv.d.ts +5 -0
- package/dist/types/web/scrapers/packagist.d.ts +5 -0
- package/dist/types/web/scrapers/pub-dev.d.ts +5 -0
- package/dist/types/web/scrapers/pubmed.d.ts +5 -0
- package/dist/types/web/scrapers/pypi.d.ts +5 -0
- package/dist/types/web/scrapers/rawg.d.ts +2 -0
- package/dist/types/web/scrapers/readthedocs.d.ts +2 -0
- package/dist/types/web/scrapers/reddit.d.ts +5 -0
- package/dist/types/web/scrapers/repology.d.ts +5 -0
- package/dist/types/web/scrapers/rfc.d.ts +5 -0
- package/dist/types/web/scrapers/rubygems.d.ts +5 -0
- package/dist/types/web/scrapers/searchcode.d.ts +2 -0
- package/dist/types/web/scrapers/sec-edgar.d.ts +5 -0
- package/dist/types/web/scrapers/semantic-scholar.d.ts +2 -0
- package/dist/types/web/scrapers/snapcraft.d.ts +2 -0
- package/dist/types/web/scrapers/sourcegraph.d.ts +2 -0
- package/dist/types/web/scrapers/spdx.d.ts +5 -0
- package/dist/types/web/scrapers/spotify.d.ts +8 -0
- package/dist/types/web/scrapers/stackoverflow.d.ts +6 -0
- package/dist/types/web/scrapers/terraform.d.ts +5 -0
- package/dist/types/web/scrapers/tldr.d.ts +7 -0
- package/dist/types/web/scrapers/twitter.d.ts +5 -0
- package/dist/types/web/scrapers/types.d.ts +77 -0
- package/dist/types/web/scrapers/utils.d.ts +26 -0
- package/dist/types/web/scrapers/vimeo.d.ts +5 -0
- package/dist/types/web/scrapers/vscode-marketplace.d.ts +5 -0
- package/dist/types/web/scrapers/w3c.d.ts +2 -0
- package/dist/types/web/scrapers/wikidata.d.ts +5 -0
- package/dist/types/web/scrapers/wikipedia.d.ts +5 -0
- package/dist/types/web/scrapers/youtube.d.ts +5 -0
- package/dist/types/web/search/index.d.ts +76 -0
- package/dist/types/web/search/provider.d.ts +20 -0
- package/dist/types/web/search/providers/anthropic.d.ts +27 -0
- package/dist/types/web/search/providers/base.d.ts +35 -0
- package/dist/types/web/search/providers/brave.d.ts +20 -0
- package/dist/types/web/search/providers/codex.d.ts +31 -0
- package/dist/types/web/search/providers/exa.d.ts +43 -0
- package/dist/types/web/search/providers/gemini.d.ts +60 -0
- package/dist/types/web/search/providers/jina.d.ts +25 -0
- package/dist/types/web/search/providers/kagi.d.ts +21 -0
- package/dist/types/web/search/providers/kimi.d.ts +18 -0
- package/dist/types/web/search/providers/parallel.d.ts +14 -0
- package/dist/types/web/search/providers/perplexity.d.ts +35 -0
- package/dist/types/web/search/providers/searxng.d.ts +43 -0
- package/dist/types/web/search/providers/synthetic.d.ts +24 -0
- package/dist/types/web/search/providers/tavily.d.ts +22 -0
- package/dist/types/web/search/providers/utils.d.ts +24 -0
- package/dist/types/web/search/providers/zai.d.ts +19 -0
- package/dist/types/web/search/render.d.ts +35 -0
- package/dist/types/web/search/types.d.ts +344 -0
- package/dist/types/web/search/utils.d.ts +4 -0
- package/dist/types/workspace-tree.d.ts +42 -0
- package/examples/custom-tools/README.md +3 -12
- package/examples/extensions/README.md +2 -15
- package/examples/extensions/api-demo.ts +1 -7
- package/package.json +124 -123
- package/src/autoresearch/tools/init-experiment.ts +11 -33
- package/src/autoresearch/tools/log-experiment.ts +10 -24
- package/src/autoresearch/tools/run-experiment.ts +1 -1
- package/src/autoresearch/tools/update-notes.ts +2 -9
- package/src/cli/auth-broker-cli.ts +746 -0
- package/src/cli/auth-gateway-cli.ts +342 -0
- package/src/cli/grievances-cli.ts +109 -16
- package/src/cli.ts +4 -2
- package/src/commands/auth-broker.ts +96 -0
- package/src/commands/auth-gateway.ts +61 -0
- package/src/commands/grievances.ts +13 -8
- package/src/commands/launch.ts +1 -1
- package/src/commit/agentic/agent.ts +2 -0
- package/src/commit/agentic/tools/analyze-file.ts +2 -2
- package/src/commit/agentic/tools/git-file-diff.ts +2 -2
- package/src/commit/agentic/tools/git-hunk.ts +3 -3
- package/src/commit/agentic/tools/git-overview.ts +2 -2
- package/src/commit/agentic/tools/propose-changelog.ts +1 -3
- package/src/commit/agentic/tools/recent-commits.ts +1 -1
- package/src/commit/agentic/tools/schemas.ts +1 -9
- package/src/config/mcp-schema.json +1 -1
- package/src/config/model-equivalence.ts +279 -174
- package/src/config/model-registry.ts +37 -6
- package/src/config/model-resolver.ts +13 -8
- package/src/config/models-config-schema.ts +8 -0
- package/src/config/settings-schema.ts +52 -0
- package/src/cursor.ts +1 -1
- package/src/debug/log-formatting.ts +1 -1
- package/src/debug/log-viewer.ts +1 -1
- package/src/debug/profiler.ts +4 -0
- package/src/debug/raw-sse-buffer.ts +100 -59
- package/src/debug/raw-sse.ts +1 -1
- package/src/discovery/agents.ts +15 -4
- package/src/edit/modes/apply-patch.ts +1 -5
- package/src/edit/modes/patch.ts +5 -5
- package/src/edit/modes/replace.ts +5 -5
- package/src/edit/normalize.ts +1 -1
- package/src/edit/renderer.ts +2 -1
- package/src/edit/streaming.ts +1 -1
- package/src/eval/index.ts +0 -2
- package/src/eval/js/shared/runtime.ts +25 -0
- package/src/eval/py/kernel.ts +1 -1
- package/src/exa/researcher.ts +4 -4
- package/src/exa/search.ts +10 -22
- package/src/exa/websets.ts +33 -33
- package/src/extensibility/typebox.ts +1 -1
- package/src/goals/tools/goal-tool.ts +3 -3
- package/src/hashline/index.ts +0 -1
- package/src/hashline/input.ts +8 -11
- package/src/hashline/parser.ts +6 -8
- package/src/index.ts +0 -3
- package/src/internal-urls/docs-index.generated.ts +21 -18
- package/src/internal-urls/index.ts +1 -1
- package/src/internal-urls/{pi-protocol.ts โ omp-protocol.ts} +10 -10
- package/src/internal-urls/router.ts +3 -3
- package/src/internal-urls/types.ts +1 -1
- package/src/lsp/types.ts +8 -11
- package/src/main.ts +3 -0
- package/src/mcp/tool-bridge.ts +3 -3
- package/src/modes/acp/acp-agent.ts +89 -25
- package/src/modes/components/bash-execution.ts +1 -1
- package/src/modes/components/diff.ts +1 -2
- package/src/modes/components/eval-execution.ts +1 -1
- package/src/modes/components/oauth-selector.ts +38 -2
- package/src/modes/components/tool-execution.ts +1 -2
- package/src/modes/controllers/command-controller.ts +96 -34
- package/src/modes/controllers/input-controller.ts +4 -3
- package/src/modes/controllers/ssh-command-controller.ts +2 -0
- package/src/modes/data/emojis.json +1 -0
- package/src/modes/emoji-autocomplete.ts +285 -0
- package/src/modes/interactive-mode.ts +92 -19
- package/src/modes/print-mode.ts +3 -3
- package/src/modes/prompt-action-autocomplete.ts +14 -0
- package/src/modes/theme/theme-schema.json +1 -1
- package/src/plan-mode/approved-plan.ts +9 -0
- package/src/prompts/system/system-prompt.md +1 -1
- package/src/prompts/system/ttsr-tool-reminder.md +5 -0
- package/src/prompts/tools/eval.md +25 -26
- package/src/prompts/tools/hashline.md +1 -0
- package/src/prompts/tools/read.md +2 -2
- package/src/prompts/tools/resolve.md +1 -1
- package/src/prompts/tools/search.md +1 -1
- package/src/prompts/tools/web-search.md +1 -1
- package/src/sdk.ts +92 -7
- package/src/session/agent-session.ts +225 -77
- package/src/session/agent-storage.ts +7 -2
- package/src/session/auth-broker-config.ts +102 -0
- package/src/session/auth-storage.ts +7 -1
- package/src/session/streaming-output.ts +1 -1
- package/src/slash-commands/builtin-registry.ts +2 -0
- package/src/slash-commands/helpers/ssh.ts +2 -0
- package/src/ssh/connection-manager.ts +28 -7
- package/src/task/types.ts +10 -35
- package/src/tools/bash-interactive.ts +5 -2
- package/src/tools/bash-pty-selection.ts +14 -0
- package/src/tools/bash.ts +5 -4
- package/src/tools/browser.ts +12 -20
- package/src/tools/eval.ts +77 -100
- package/src/tools/gh.ts +21 -45
- package/src/tools/hindsight-recall.ts +1 -1
- package/src/tools/hindsight-reflect.ts +2 -2
- package/src/tools/hindsight-retain.ts +3 -7
- package/src/tools/index.ts +8 -1
- package/src/tools/inspect-image.ts +4 -1
- package/src/tools/irc.ts +4 -12
- package/src/tools/job.ts +3 -11
- package/src/tools/path-utils.ts +2 -2
- package/src/tools/read.ts +7 -4
- package/src/tools/report-tool-issue.ts +462 -17
- package/src/tools/resolve.ts +2 -7
- package/src/tools/search.ts +7 -0
- package/src/tools/todo-write.ts +8 -15
- package/src/tools/yield.ts +17 -5
- package/src/tui/code-cell.ts +18 -3
- package/src/utils/title-generator.ts +3 -0
- package/src/web/scrapers/searchcode.ts +1 -2
- package/src/web/search/index.ts +6 -6
- package/src/eval/eval.lark +0 -36
- package/src/eval/parse.ts +0 -407
- package/src/eval/sniff.ts +0 -28
- package/src/hashline/utils.ts +0 -3
|
@@ -374,10 +374,15 @@ export class CommandController {
|
|
|
374
374
|
const openaiWebsocketSetting = this.ctx.settings.get("providers.openaiWebsockets") ?? "auto";
|
|
375
375
|
const preferOpenAICodexWebsockets =
|
|
376
376
|
openaiWebsocketSetting === "on" ? true : openaiWebsocketSetting === "off" ? false : undefined;
|
|
377
|
+
const credentialSource = this.ctx.session.modelRegistry.authStorage.describeCredentialSource(
|
|
378
|
+
model.provider,
|
|
379
|
+
stats.sessionId,
|
|
380
|
+
);
|
|
377
381
|
const providerDetails = getProviderDetails({
|
|
378
382
|
model,
|
|
379
383
|
sessionId: stats.sessionId,
|
|
380
384
|
authMode,
|
|
385
|
+
credentialSource,
|
|
381
386
|
preferWebsockets: preferOpenAICodexWebsockets,
|
|
382
387
|
providerSessionState: this.ctx.session.providerSessionState,
|
|
383
388
|
});
|
|
@@ -503,7 +508,8 @@ export class CommandController {
|
|
|
503
508
|
return;
|
|
504
509
|
}
|
|
505
510
|
|
|
506
|
-
const
|
|
511
|
+
const availableWidth = Math.max(40, (this.ctx.ui.terminal.columns ?? 100) - 2);
|
|
512
|
+
const output = renderUsageReports(usageReports, theme, Date.now(), availableWidth);
|
|
507
513
|
this.ctx.chatContainer.addChild(new Spacer(1));
|
|
508
514
|
this.ctx.chatContainer.addChild(new Text(output, 1, 0));
|
|
509
515
|
this.ctx.ui.requestRender();
|
|
@@ -968,6 +974,7 @@ export class CommandController {
|
|
|
968
974
|
clearClaudePluginRootsCache(); // re-warms preloadedPluginRoots with new project dir (async)
|
|
969
975
|
resetCapabilities();
|
|
970
976
|
await this.ctx.refreshSlashCommandState(resolvedPath);
|
|
977
|
+
await this.ctx.session.refreshSshTool({ activateIfAvailable: true });
|
|
971
978
|
|
|
972
979
|
this.ctx.statusLine.invalidate();
|
|
973
980
|
this.ctx.updateEditorTopBorder();
|
|
@@ -1236,8 +1243,8 @@ export class CommandController {
|
|
|
1236
1243
|
}
|
|
1237
1244
|
}
|
|
1238
1245
|
|
|
1239
|
-
const
|
|
1240
|
-
const
|
|
1246
|
+
const BAR_WIDTH_MAX = 24;
|
|
1247
|
+
const BAR_WIDTH_MIN = 4;
|
|
1241
1248
|
|
|
1242
1249
|
function renderJobLine(job: AsyncJobSnapshotItem, now: number): string {
|
|
1243
1250
|
const duration = formatDuration(Math.max(0, now - job.startTime));
|
|
@@ -1265,6 +1272,7 @@ function truncateJobLabel(label: string, maxWidth: number): string {
|
|
|
1265
1272
|
|
|
1266
1273
|
return `${out}โฆ`;
|
|
1267
1274
|
}
|
|
1275
|
+
|
|
1268
1276
|
function formatProviderName(provider: string): string {
|
|
1269
1277
|
return provider
|
|
1270
1278
|
.split(/[-_]/g)
|
|
@@ -1276,10 +1284,6 @@ function formatNumber(value: number, maxFractionDigits = 1): string {
|
|
|
1276
1284
|
return new Intl.NumberFormat("en-US", { maximumFractionDigits: maxFractionDigits }).format(value);
|
|
1277
1285
|
}
|
|
1278
1286
|
|
|
1279
|
-
function formatUsedAccounts(value: number): string {
|
|
1280
|
-
return `${value.toFixed(2)} used`;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
1287
|
function resolveProviderAuthMode(authStorage: AuthStorage, provider: string): string {
|
|
1284
1288
|
if (authStorage.hasOAuth(provider)) {
|
|
1285
1289
|
return "oauth";
|
|
@@ -1363,11 +1367,39 @@ function formatResetShort(limit: UsageLimit, nowMs: number): string | undefined
|
|
|
1363
1367
|
return undefined;
|
|
1364
1368
|
}
|
|
1365
1369
|
|
|
1366
|
-
function
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1370
|
+
function formatAccountHeaderRow(
|
|
1371
|
+
limits: UsageLimit[],
|
|
1372
|
+
reports: UsageReport[],
|
|
1373
|
+
nowMs: number,
|
|
1374
|
+
columnWidth: number,
|
|
1375
|
+
uiTheme: typeof theme,
|
|
1376
|
+
): string[] {
|
|
1377
|
+
const parts = limits.map((limit, index) => {
|
|
1378
|
+
const reset = formatResetShort(limit, nowMs);
|
|
1379
|
+
return {
|
|
1380
|
+
label: formatAccountLabel(limit, reports[index], index),
|
|
1381
|
+
suffix: reset ? `(${reset})` : "",
|
|
1382
|
+
};
|
|
1383
|
+
});
|
|
1384
|
+
const maxSuffixWidth = parts.reduce((max, p) => Math.max(max, visibleWidth(p.suffix)), 0);
|
|
1385
|
+
const gap = maxSuffixWidth > 0 ? 1 : 0;
|
|
1386
|
+
const prefixBudget = columnWidth - maxSuffixWidth - gap;
|
|
1387
|
+
|
|
1388
|
+
// If suffix can't share the cell with at least `xโฆ`, fall back to whole-label truncation.
|
|
1389
|
+
if (prefixBudget < 2) {
|
|
1390
|
+
return parts.map(p => {
|
|
1391
|
+
const full = p.suffix ? `${p.label} ${p.suffix}` : p.label;
|
|
1392
|
+
return padColumn(truncateJobLabel(full, columnWidth), columnWidth);
|
|
1393
|
+
});
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
return parts.map(p => {
|
|
1397
|
+
const prefix = truncateJobLabel(p.label, prefixBudget);
|
|
1398
|
+
const prefixCell = prefix + " ".repeat(prefixBudget - visibleWidth(prefix));
|
|
1399
|
+
if (!p.suffix) return prefixCell + " ".repeat(maxSuffixWidth + gap);
|
|
1400
|
+
const suffixPad = " ".repeat(maxSuffixWidth - visibleWidth(p.suffix));
|
|
1401
|
+
return `${prefixCell} ${suffixPad}${uiTheme.fg("dim", p.suffix)}`;
|
|
1402
|
+
});
|
|
1371
1403
|
}
|
|
1372
1404
|
|
|
1373
1405
|
function padColumn(text: string, width: number): string {
|
|
@@ -1394,10 +1426,8 @@ function formatAggregateAmount(limits: UsageLimit[]): string {
|
|
|
1394
1426
|
.filter((value): value is number => value !== undefined);
|
|
1395
1427
|
if (fractions.length === limits.length && fractions.length > 0) {
|
|
1396
1428
|
const sum = fractions.reduce((total, value) => total + value, 0);
|
|
1397
|
-
const
|
|
1398
|
-
|
|
1399
|
-
const avgRemaining = limits.length > 0 ? remainingPct / limits.length : remainingPct;
|
|
1400
|
-
return `${formatUsedAccounts(sum)} (${formatNumber(avgRemaining)}% left)`;
|
|
1429
|
+
const avgRemaining = Math.max(0, ((limits.length - sum) / limits.length) * 100);
|
|
1430
|
+
return `${formatNumber(avgRemaining)}% free`;
|
|
1401
1431
|
}
|
|
1402
1432
|
|
|
1403
1433
|
const amounts = limits
|
|
@@ -1406,13 +1436,11 @@ function formatAggregateAmount(limits: UsageLimit[]): string {
|
|
|
1406
1436
|
if (amounts.length === limits.length && amounts.length > 0) {
|
|
1407
1437
|
const totalUsed = amounts.reduce((sum, amount) => sum + (amount.used ?? 0), 0);
|
|
1408
1438
|
const totalLimit = amounts.reduce((sum, amount) => sum + (amount.limit ?? 0), 0);
|
|
1409
|
-
const
|
|
1410
|
-
|
|
1411
|
-
const usedAccounts = totalLimit > 0 ? (usedPct / 100) * limits.length : 0;
|
|
1412
|
-
return `${formatUsedAccounts(usedAccounts)} (${formatNumber(remainingPct)}% left)`;
|
|
1439
|
+
const remainingPct = totalLimit > 0 ? Math.max(0, 100 - (totalUsed / totalLimit) * 100) : 0;
|
|
1440
|
+
return `${formatNumber(remainingPct)}% free`;
|
|
1413
1441
|
}
|
|
1414
1442
|
|
|
1415
|
-
return
|
|
1443
|
+
return `${limits.length} accts`;
|
|
1416
1444
|
}
|
|
1417
1445
|
|
|
1418
1446
|
function resolveResetRange(limits: UsageLimit[], nowMs: number): string | null {
|
|
@@ -1443,20 +1471,47 @@ function resolveStatusColor(status: UsageLimit["status"]): "success" | "warning"
|
|
|
1443
1471
|
return "dim";
|
|
1444
1472
|
}
|
|
1445
1473
|
|
|
1446
|
-
function renderUsageBar(limit: UsageLimit, uiTheme: typeof theme): string {
|
|
1474
|
+
function renderUsageBar(limit: UsageLimit, uiTheme: typeof theme, barWidth: number): string {
|
|
1447
1475
|
const fraction = resolveFraction(limit);
|
|
1448
1476
|
if (fraction === undefined) {
|
|
1449
|
-
return uiTheme.fg("dim",
|
|
1477
|
+
return uiTheme.fg("dim", "ยท".repeat(barWidth));
|
|
1450
1478
|
}
|
|
1451
1479
|
const clamped = Math.min(Math.max(fraction, 0), 1);
|
|
1452
|
-
const
|
|
1453
|
-
const
|
|
1454
|
-
const
|
|
1480
|
+
const exact = clamped * barWidth;
|
|
1481
|
+
const fullCells = Math.floor(exact);
|
|
1482
|
+
const remainder = exact - fullCells;
|
|
1483
|
+
let partial = "";
|
|
1484
|
+
if (remainder >= 2 / 3) partial = "โ";
|
|
1485
|
+
else if (remainder >= 1 / 3) partial = "โ";
|
|
1486
|
+
const leading = "โ".repeat(fullCells) + partial;
|
|
1487
|
+
const empty = "โ".repeat(Math.max(0, barWidth - fullCells - (partial ? 1 : 0)));
|
|
1455
1488
|
const color = resolveStatusColor(limit.status);
|
|
1456
|
-
return `${uiTheme.fg(
|
|
1489
|
+
return `${uiTheme.fg(color, leading)}${uiTheme.fg("dim", empty)}`;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
/**
|
|
1493
|
+
* Pick a per-column width so n bars + a trailing amount string fit in `available` columns.
|
|
1494
|
+
* Falls back to the minimum when the terminal is too narrow rather than wrapping.
|
|
1495
|
+
*/
|
|
1496
|
+
function resolveColumnWidth(count: number, available: number, trailing: number): number {
|
|
1497
|
+
if (count <= 0) return BAR_WIDTH_MAX;
|
|
1498
|
+
const indent = 2;
|
|
1499
|
+
const gaps = count - 1;
|
|
1500
|
+
const spaceForBars = available - indent - gaps - (trailing > 0 ? trailing + 1 : 0);
|
|
1501
|
+
const ideal = Math.floor(spaceForBars / count);
|
|
1502
|
+
const min = BAR_WIDTH_MIN;
|
|
1503
|
+
const max = BAR_WIDTH_MAX;
|
|
1504
|
+
if (ideal < min) return min;
|
|
1505
|
+
if (ideal > max) return max;
|
|
1506
|
+
return ideal;
|
|
1457
1507
|
}
|
|
1458
1508
|
|
|
1459
|
-
function renderUsageReports(
|
|
1509
|
+
function renderUsageReports(
|
|
1510
|
+
reports: UsageReport[],
|
|
1511
|
+
uiTheme: typeof theme,
|
|
1512
|
+
nowMs: number,
|
|
1513
|
+
availableWidth: number,
|
|
1514
|
+
): string {
|
|
1460
1515
|
const lines: string[] = [];
|
|
1461
1516
|
const latestFetchedAt = Math.max(...reports.map(report => report.fetchedAt ?? 0));
|
|
1462
1517
|
const headerSuffix = latestFetchedAt ? ` (${formatDuration(nowMs - latestFetchedAt)} ago)` : "";
|
|
@@ -1505,7 +1560,7 @@ function renderUsageReports(reports: UsageReport[], uiTheme: typeof theme, nowMs
|
|
|
1505
1560
|
|
|
1506
1561
|
lines.push(uiTheme.bold(uiTheme.fg("accent", providerName)));
|
|
1507
1562
|
|
|
1508
|
-
|
|
1563
|
+
const renderableGroups = Array.from(limitGroups.values()).map(group => {
|
|
1509
1564
|
const entries = group.limits.map((limit, index) => ({
|
|
1510
1565
|
limit,
|
|
1511
1566
|
report: group.reports[index],
|
|
@@ -1520,18 +1575,25 @@ function renderUsageReports(reports: UsageReport[], uiTheme: typeof theme, nowMs
|
|
|
1520
1575
|
});
|
|
1521
1576
|
const sortedLimits = entries.map(entry => entry.limit);
|
|
1522
1577
|
const sortedReports = entries.map(entry => entry.report);
|
|
1578
|
+
return { group, sortedLimits, sortedReports, amountText: formatAggregateAmount(sortedLimits) };
|
|
1579
|
+
});
|
|
1523
1580
|
|
|
1581
|
+
const sectionCount = renderableGroups.reduce((max, g) => Math.max(max, g.sortedLimits.length), 0);
|
|
1582
|
+
const sectionTrailing = renderableGroups.reduce((max, g) => Math.max(max, visibleWidth(g.amountText)), 0);
|
|
1583
|
+
const sectionColumnWidth = resolveColumnWidth(sectionCount, availableWidth, sectionTrailing);
|
|
1584
|
+
|
|
1585
|
+
for (const { group, sortedLimits, sortedReports, amountText } of renderableGroups) {
|
|
1524
1586
|
const status = resolveAggregateStatus(sortedLimits);
|
|
1525
1587
|
const statusIcon = resolveStatusIcon(status, uiTheme);
|
|
1526
1588
|
|
|
1527
1589
|
const windowSuffix = formatWindowSuffix(group.label, group.windowLabel, uiTheme);
|
|
1528
1590
|
lines.push(`${statusIcon} ${uiTheme.bold(group.label)} ${windowSuffix}`.trim());
|
|
1529
|
-
const accountLabels = sortedLimits
|
|
1530
|
-
padColumn(formatAccountHeader(limit, sortedReports[index], index, nowMs), COLUMN_WIDTH),
|
|
1531
|
-
);
|
|
1591
|
+
const accountLabels = formatAccountHeaderRow(sortedLimits, sortedReports, nowMs, sectionColumnWidth, uiTheme);
|
|
1532
1592
|
lines.push(` ${accountLabels.join(" ")}`.trimEnd());
|
|
1533
|
-
const bars = sortedLimits.map(limit =>
|
|
1534
|
-
|
|
1593
|
+
const bars = sortedLimits.map(limit =>
|
|
1594
|
+
padColumn(renderUsageBar(limit, uiTheme, sectionColumnWidth), sectionColumnWidth),
|
|
1595
|
+
);
|
|
1596
|
+
lines.push(` ${bars.join(" ")} ${amountText}`.trimEnd());
|
|
1535
1597
|
const resetText = sortedLimits.length <= 1 ? resolveResetRange(sortedLimits, nowMs) : null;
|
|
1536
1598
|
if (resetText) {
|
|
1537
1599
|
lines.push(` ${uiTheme.fg("dim", resetText)}`.trimEnd());
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as fs from "node:fs/promises";
|
|
2
2
|
import { type AgentMessage, ThinkingLevel } from "@oh-my-pi/pi-agent-core";
|
|
3
|
-
import { sanitizeText } from "@oh-my-pi/pi-natives";
|
|
4
3
|
import type { AutocompleteProvider, SlashCommand } from "@oh-my-pi/pi-tui";
|
|
5
|
-
import { $env } from "@oh-my-pi/pi-utils";
|
|
6
|
-
import { settings } from "../../config/settings";
|
|
4
|
+
import { $env, sanitizeText } from "@oh-my-pi/pi-utils";
|
|
5
|
+
import { isSettingsInitialized, settings } from "../../config/settings";
|
|
6
|
+
import { expandEmoticons } from "../../modes/emoji-autocomplete";
|
|
7
7
|
import { createPromptActionAutocompleteProvider } from "../../modes/prompt-action-autocomplete";
|
|
8
8
|
import { theme } from "../../modes/theme/theme";
|
|
9
9
|
import type { InteractiveModeContext } from "../../modes/types";
|
|
@@ -187,6 +187,7 @@ export class InputController {
|
|
|
187
187
|
setupEditorSubmitHandler(): void {
|
|
188
188
|
this.ctx.editor.onSubmit = async (text: string) => {
|
|
189
189
|
text = text.trim();
|
|
190
|
+
if ((!isSettingsInitialized() || settings.get("emojiAutocomplete")) && text) text = expandEmoticons(text);
|
|
190
191
|
|
|
191
192
|
// Empty submit while streaming with queued messages: flush queues immediately
|
|
192
193
|
if (!text && this.ctx.session.isStreaming && this.ctx.session.queuedMessageCount > 0) {
|
|
@@ -204,6 +204,7 @@ export class SSHCommandController {
|
|
|
204
204
|
if (compat) hostConfig.compat = true;
|
|
205
205
|
|
|
206
206
|
await addSSHHost(filePath, name, hostConfig);
|
|
207
|
+
await this.ctx.session.refreshSshTool({ activateIfAvailable: true });
|
|
207
208
|
|
|
208
209
|
const scopeLabel = scope === "user" ? "user" : "project";
|
|
209
210
|
const lines = [
|
|
@@ -364,6 +365,7 @@ export class SSHCommandController {
|
|
|
364
365
|
}
|
|
365
366
|
|
|
366
367
|
await removeSSHHost(filePath, name);
|
|
368
|
+
await this.ctx.session.refreshSshTool();
|
|
367
369
|
|
|
368
370
|
this.#showMessage(
|
|
369
371
|
["", theme.fg("success", `โ Removed SSH host "${name}" from ${scope} config`), ""].join("\n"),
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"1":[["100","๐ฏ"],["1234","๐ข"],["1st_place_medal","๐ฅ"]],"2":[["2nd_place_medal","๐ฅ"]],"3":[["3rd_place_medal","๐ฅ"]],"8":[["8ball","๐ฑ"]],"+":[["+1","๐"]],"-":[["-1","๐"]],"a":[["a","๐
ฐ๏ธ"],["ab","๐"],["abacus","๐งฎ"],["abc","๐ค"],["abcd","๐ก"],["accept","๐"],["adult","๐ง"],["aerial_tramway","๐ก"],["afk","๐ถ"],["agree","๐"],["airplane","โ๏ธ"],["alarm_clock","โฐ"],["alembic","โ"],["alien","๐ฝ"],["amazing","๐คฉ"],["ambulance","๐"],["amphora","๐บ"],["anchor","โ"],["angel","๐ผ"],["anger","๐ข"],["angry","๐ "],["anguished","๐ง"],["ant","๐"],["applause","๐"],["apple","๐"],["aquarius","โ"],["aries","โ"],["arrow_backward","โ๏ธ"],["arrow_double_down","โฌ"],["arrow_double_up","โซ"],["arrow_down","โฌ๏ธ"],["arrow_down_small","๐ฝ"],["arrow_forward","โถ๏ธ"],["arrow_heading_down","โคต๏ธ"],["arrow_heading_up","โคด๏ธ"],["arrow_left","โฌ
๏ธ"],["arrow_lower_left","โ๏ธ"],["arrow_lower_right","โ๏ธ"],["arrow_right","โก๏ธ"],["arrow_right_hook","โช๏ธ"],["arrow_up","โฌ๏ธ"],["arrow_up_down","โ๏ธ"],["arrow_up_small","๐ผ"],["arrow_upper_left","โ๏ธ"],["arrow_upper_right","โ๏ธ"],["arrows_clockwise","๐"],["arrows_counterclockwise","๐"],["art","๐จ"],["articulated_lorry","๐"],["artificial_satellite","๐ฐ"],["asterisk","*โฃ"],["astonished","๐ฒ"],["athletic_shoe","๐"],["atm","๐ง"],["atom_symbol","โ"],["avocado","๐ฅ"],["awesome","๐"],["aww","๐ฅน"]],"b":[["b","๐
ฑ๏ธ"],["baby","๐ถ"],["baby_bottle","๐ผ"],["baby_chick","๐ค"],["baby_symbol","๐ผ"],["back","๐"],["bacon","๐ฅ"],["badger","๐ฆก"],["badminton","๐ธ"],["bae","๐"],["bagel","๐ฅฏ"],["baggage_claim","๐"],["baguette_bread","๐ฅ"],["balance_scale","โ"],["balloon","๐"],["ballot_box","๐ณ"],["ballot_box_with_check","โ๏ธ"],["bamboo","๐"],["banana","๐"],["bangbang","โผ๏ธ"],["bank","๐ฆ"],["bar_chart","๐"],["barber","๐"],["baseball","โพ"],["basket","๐งบ"],["basketball","๐"],["basketball_man","โน"],["basketball_woman","โน๏ธโโ๏ธ"],["bat","๐ฆ"],["bath","๐"],["bathtub","๐"],["battery","๐"],["bawling","๐ญ"],["bday","๐ฅณ"],["beach_umbrella","๐"],["bear","๐ป"],["bearded_person","๐ง"],["bed","๐"],["beer","๐บ"],["beers","๐ป"],["beetle","๐"],["beginner","๐ฐ"],["bell","๐"],["bellhop_bell","๐"],["bento","๐ฑ"],["bet","๐"],["bike","๐ฒ"],["biking_man","๐ด"],["biking_woman","๐ดโโ๏ธ"],["bikini","๐"],["billed_hat","๐งข"],["biohazard","โฃ"],["bird","๐ฆ"],["birthday","๐"],["black_circle","โซ"],["black_flag","๐ด"],["black_heart","๐ค"],["black_joker","๐"],["black_large_square","โฌ"],["black_medium_small_square","โพ"],["black_medium_square","โผ๏ธ"],["black_nib","โ๏ธ"],["black_small_square","โช๏ธ"],["black_square_button","๐ฒ"],["blonde_man","๐ฑ"],["blonde_woman","๐ฑโโ๏ธ"],["blossom","๐ผ"],["blowfish","๐ก"],["blue_book","๐"],["blue_car","๐"],["blue_heart","๐"],["blush","๐"],["boar","๐"],["bomb","๐ฃ"],["bone","๐ฆด"],["bookmark","๐"],["bookmark_tabs","๐"],["books","๐"],["boom","๐ฅ"],["boot","๐ข"],["bored","๐ฅฑ"],["bouquet","๐"],["bow_and_arrow","๐น"],["bowing_man","๐"],["bowing_woman","๐โโ๏ธ"],["bowl_with_spoon","๐ฅฃ"],["bowling","๐ณ"],["boxing_glove","๐ฅ"],["boy","๐ฆ"],["brain","๐ง "],["brb","๐"],["bread","๐"],["breastfeeding","๐คฑ"],["brick","๐งฑ"],["bride_with_veil","๐ฐ"],["bridge_at_night","๐"],["briefcase","๐ผ"],["broccoli","๐ฅฆ"],["broken_heart","๐"],["broom","๐งน"],["bruh","๐"],["bs","๐ฉ"],["bug","๐"],["building_construction","๐"],["bulb","๐ก"],["bullettrain_front","๐
"],["bullettrain_side","๐"],["bump","๐"],["burrito","๐ฏ"],["bus","๐"],["business_suit_levitating","๐ด"],["busstop","๐"],["bust_in_silhouette","๐ค"],["busts_in_silhouette","๐ฅ"],["butterfly","๐ฆ"],["bye","๐"]],"c":[["cactus","๐ต"],["cake","๐ฐ"],["calendar","๐"],["call_me_hand","๐ค"],["calling","๐ฒ"],["camel","๐ซ"],["camera","๐ท"],["camera_flash","๐ธ"],["camping","๐"],["cancer","โ"],["candle","๐ฏ"],["candy","๐ฌ"],["canned_food","๐ฅซ"],["canoe","๐ถ"],["capital_abcd","๐ "],["capricorn","โ"],["card_file_box","๐"],["card_index","๐"],["card_index_dividers","๐"],["carousel_horse","๐ "],["carrot","๐ฅ"],["cat","๐ฑ"],["cat2","๐"],["cd","๐ฟ"],["celebrate","๐"],["chains","โ"],["champagne","๐พ"],["chart","๐น"],["chart_with_downwards_trend","๐"],["chart_with_upwards_trend","๐"],["chat","๐ฌ"],["checkered_flag","๐"],["cheese","๐ง"],["cherries","๐"],["cherry_blossom","๐ธ"],["chess_pawn","โ"],["chestnut","๐ฐ"],["chicken","๐"],["child","๐ง"],["children_crossing","๐ธ"],["chill","๐"],["chilling","๐"],["chipmunk","๐ฟ"],["chocolate_bar","๐ซ"],["chopsticks","๐ฅข"],["christmas_tree","๐"],["church","โช"],["cinema","๐ฆ"],["circus_tent","๐ช"],["city_sunrise","๐"],["city_sunset","๐"],["cityscape","๐"],["cl","๐"],["clamp","๐"],["clap","๐"],["clapper","๐ฌ"],["classical_building","๐"],["climbing_man","๐งโโ๏ธ"],["climbing_woman","๐งโโ๏ธ"],["clinking_glasses","๐ฅ"],["clipboard","๐"],["clock1","๐"],["clock10","๐"],["clock1030","๐ฅ"],["clock11","๐"],["clock1130","๐ฆ"],["clock12","๐"],["clock1230","๐ง"],["clock130","๐"],["clock2","๐"],["clock230","๐"],["clock3","๐"],["clock330","๐"],["clock4","๐"],["clock430","๐"],["clock5","๐"],["clock530","๐ "],["clock6","๐"],["clock630","๐ก"],["clock7","๐"],["clock730","๐ข"],["clock8","๐"],["clock830","๐ฃ"],["clock9","๐"],["clock930","๐ค"],["closed_book","๐"],["closed_lock_with_key","๐"],["closed_umbrella","๐"],["cloud","โ๏ธ"],["cloud_with_lightning","๐ฉ"],["cloud_with_lightning_and_rain","โ"],["cloud_with_rain","๐ง"],["cloud_with_snow","๐จ"],["clown_face","๐คก"],["clubs","โฃ๏ธ"],["coat","๐งฅ"],["cocktail","๐ธ"],["coconut","๐ฅฅ"],["coffee","โ"],["coffin","โฐ"],["cold","๐ฅถ"],["cold_sweat","๐ฐ"],["comet","โ"],["compass","๐งญ"],["computer","๐ป"],["computer_mouse","๐ฑ"],["confetti_ball","๐"],["confounded","๐"],["confused","๐"],["congrats","๐"],["congratulations","ใ๏ธ"],["construction","๐ง"],["construction_worker_man","๐ท"],["construction_worker_woman","๐ทโโ๏ธ"],["control_knobs","๐"],["convenience_store","๐ช"],["cookie","๐ช"],["cool","๐"],["copyright","ยฉ๏ธ"],["corn","๐ฝ"],["correct","โ
"],["couch_and_lamp","๐"],["couple","๐ซ"],["couple_with_heart_man_man","๐จโโค๏ธโ๐จ"],["couple_with_heart_woman_man","๐"],["couple_with_heart_woman_woman","๐ฉโโค๏ธโ๐ฉ"],["couplekiss_man_man","๐จโโค๏ธโ๐โ๐จ"],["couplekiss_man_woman","๐"],["couplekiss_woman_woman","๐ฉโโค๏ธโ๐โ๐ฉ"],["cow","๐ฎ"],["cow2","๐"],["cowboy_hat_face","๐ค "],["crab","๐ฆ"],["crayon","๐"],["credit_card","๐ณ"],["crescent_moon","๐"],["cricket","๐"],["cringe","๐"],["crocodile","๐"],["croissant","๐ฅ"],["crossed_fingers","๐ค"],["crossed_flags","๐"],["crossed_swords","โ"],["crown","๐"],["crush","๐ฅฐ"],["cry","๐ข"],["crying","๐ญ"],["crying_cat_face","๐ฟ"],["crystal_ball","๐ฎ"],["cucumber","๐ฅ"],["cup_with_straw","๐ฅค"],["cupcake","๐ง"],["cupid","๐"],["curling_stone","๐ฅ"],["curly_loop","โฐ"],["currency_exchange","๐ฑ"],["curry","๐"],["custard","๐ฎ"],["customs","๐"],["cya","๐"],["cyclone","๐"]],"d":[["dagger","๐ก"],["dancer","๐"],["dancing_men","๐ฏโโ๏ธ"],["dancing_women","๐ฏ"],["dango","๐ก"],["dark_sunglasses","๐ถ"],["dart","๐ฏ"],["dash","๐จ"],["date","๐
"],["daydream","๐ญ"],["dead","๐"],["deal","๐ค"],["deciduous_tree","๐ณ"],["deer","๐ฆ"],["delicious","๐"],["department_store","๐ฌ"],["derelict_house","๐"],["desert","๐"],["desert_island","๐"],["desktop_computer","๐ฅ"],["diamond_shape_with_a_dot_inside","๐ "],["diamonds","โฆ๏ธ"],["disappointed","๐"],["disappointed_relieved","๐ฅ"],["dislike","๐"],["dizzy","๐ซ"],["dizzy_face","๐ต"],["dna","๐งฌ"],["do_not_litter","๐ฏ"],["dog","๐ถ"],["dog2","๐"],["dollar","๐ต"],["dolls","๐"],["dolphin","๐ฌ"],["door","๐ช"],["doughnut","๐ฉ"],["dove","๐"],["dragon","๐"],["dragon_face","๐ฒ"],["dream","๐ญ"],["dress","๐"],["dromedary_camel","๐ช"],["drooling_face","๐คค"],["droplet","๐ง"],["drum","๐ฅ"],["duck","๐ฆ"],["dumpling","๐ฅ"],["dvd","๐"]],"e":[["e-mail","๐ง"],["eagle","๐ฆ
"],["ear","๐"],["ear_of_rice","๐พ"],["earth_africa","๐"],["earth_americas","๐"],["earth_asia","๐"],["egg","๐ฅ"],["eggplant","๐"],["eight","8๏ธโฃ"],["eight_pointed_black_star","โด๏ธ"],["eight_spoked_asterisk","โณ๏ธ"],["eject_button","โ๏ธ"],["electric_plug","๐"],["elephant","๐"],["email","โ๏ธ"],["end","๐"],["england","๐ด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ"],["envelope_with_arrow","๐ฉ"],["euro","๐ถ"],["european_castle","๐ฐ"],["european_post_office","๐ค"],["evergreen_tree","๐ฒ"],["ew","๐คฎ"],["exclamation","โ"],["exhausted","๐ฅฑ"],["explode","๐ฅ"],["exploding_head","๐คฏ"],["expressionless","๐"],["eye","๐"],["eyeglasses","๐"],["eyes","๐"]],"f":[["face_with_head_bandage","๐ค"],["face_with_thermometer","๐ค"],["facepalm","๐คฆ"],["facepunch","๐"],["factory","๐ญ"],["fallen_leaf","๐"],["family_man_boy","๐จโ๐ฆ"],["family_man_boy_boy","๐จโ๐ฆโ๐ฆ"],["family_man_girl","๐จโ๐ง"],["family_man_girl_boy","๐จโ๐งโ๐ฆ"],["family_man_girl_girl","๐จโ๐งโ๐ง"],["family_man_man_boy","๐จโ๐จโ๐ฆ"],["family_man_man_boy_boy","๐จโ๐จโ๐ฆโ๐ฆ"],["family_man_man_girl","๐จโ๐จโ๐ง"],["family_man_man_girl_boy","๐จโ๐จโ๐งโ๐ฆ"],["family_man_man_girl_girl","๐จโ๐จโ๐งโ๐ง"],["family_man_woman_boy","๐ช"],["family_man_woman_boy_boy","๐จโ๐ฉโ๐ฆโ๐ฆ"],["family_man_woman_girl","๐จโ๐ฉโ๐ง"],["family_man_woman_girl_boy","๐จโ๐ฉโ๐งโ๐ฆ"],["family_man_woman_girl_girl","๐จโ๐ฉโ๐งโ๐ง"],["family_woman_boy","๐ฉโ๐ฆ"],["family_woman_boy_boy","๐ฉโ๐ฆโ๐ฆ"],["family_woman_girl","๐ฉโ๐ง"],["family_woman_girl_boy","๐ฉโ๐งโ๐ฆ"],["family_woman_girl_girl","๐ฉโ๐งโ๐ง"],["family_woman_woman_boy","๐ฉโ๐ฉโ๐ฆ"],["family_woman_woman_boy_boy","๐ฉโ๐ฉโ๐ฆโ๐ฆ"],["family_woman_woman_girl","๐ฉโ๐ฉโ๐ง"],["family_woman_woman_girl_boy","๐ฉโ๐ฉโ๐งโ๐ฆ"],["family_woman_woman_girl_girl","๐ฉโ๐ฉโ๐งโ๐ง"],["fart","๐จ"],["fast_forward","โฉ"],["fax","๐ "],["fearful","๐จ"],["female_detective","๐ต๏ธโโ๏ธ"],["ferris_wheel","๐ก"],["ferry","โด"],["field_hockey","๐"],["file_cabinet","๐"],["file_folder","๐"],["film_projector","๐ฝ"],["film_strip","๐"],["fingers_crossed","๐ค"],["fire","๐ฅ"],["fire_engine","๐"],["fire_extinguisher","๐งฏ"],["firecracker","๐งจ"],["fireworks","๐"],["first_quarter_moon","๐"],["first_quarter_moon_with_face","๐"],["fish","๐"],["fish_cake","๐ฅ"],["fishing_pole_and_fish","๐ฃ"],["fist","โ"],["fist_left","๐ค"],["fist_right","๐ค"],["fistbump","๐"],["five","5๏ธโฃ"],["flags","๐"],["flashlight","๐ฆ"],["flat_shoe","๐ฅฟ"],["fleek","๐ฏ"],["fleur_de_lis","โ"],["flight_arrival","๐ฌ"],["flight_departure","๐ซ"],["floppy_disk","๐พ"],["flower_playing_cards","๐ด"],["flushed","๐ณ"],["flying_disc","๐ฅ"],["flying_saucer","๐ธ"],["fml","๐ฉ"],["fog","๐ซ"],["foggy","๐"],["foot","๐ฆถ"],["football","๐"],["footprints","๐ฃ"],["fork_and_knife","๐ด"],["fortune_cookie","๐ฅ "],["fountain","โฒ"],["fountain_pen","๐"],["four","4๏ธโฃ"],["four_leaf_clover","๐"],["fox_face","๐ฆ"],["fr","๐ฏ"],["framed_picture","๐ผ"],["free","๐"],["fried_egg","๐ณ"],["fried_shrimp","๐ค"],["fries","๐"],["frog","๐ธ"],["frowning","๐ฆ"],["frowning_face","โน"],["frowning_man","๐โโ๏ธ"],["frowning_woman","๐"],["ftw","๐"],["fu","๐"],["fuelpump","โฝ"],["full_moon","๐"],["full_moon_with_face","๐"],["funeral_urn","โฑ"]],"g":[["game_die","๐ฒ"],["gasp","๐ฎ"],["gear","โ"],["gem","๐"],["gemini","โ"],["germs","๐ท"],["gg","๐"],["ghost","๐ป"],["gift","๐"],["gift_heart","๐"],["giraffe","๐ฆ"],["girl","๐ง"],["gj","๐"],["globe_with_meridians","๐"],["gloves","๐งค"],["gm","โ๏ธ"],["gn","๐ด"],["gnight","๐ด"],["goal_net","๐ฅ
"],["goat","๐"],["goggles","๐ฅฝ"],["golf","โณ"],["golfing_man","๐"],["golfing_woman","๐๏ธโโ๏ธ"],["goodjob","๐"],["goodmorning","โ๏ธ"],["goodnight","๐ด"],["gorilla","๐ฆ"],["gotcha","๐"],["grapes","๐"],["grasshopper","๐ฆ"],["green_apple","๐"],["green_book","๐"],["green_heart","๐"],["green_salad","๐ฅ"],["grey_exclamation","โ"],["grey_question","โ"],["grimacing","๐ฌ"],["grin","๐"],["grinning","๐"],["gtg","๐"],["guardsman","๐"],["guardswoman","๐โโ๏ธ"],["guitar","๐ธ"],["gun","๐ซ"]],"h":[["haha","๐"],["hahaha","๐"],["haircut_man","๐โโ๏ธ"],["haircut_woman","๐"],["hamburger","๐"],["hammer","๐จ"],["hammer_and_pick","โ"],["hammer_and_wrench","๐ "],["hamster","๐น"],["hand_over_mouth","๐คญ"],["handbag","๐"],["handshake","๐ค"],["hash","#๏ธโฃ"],["hatched_chick","๐ฅ"],["hatching_chick","๐ฃ"],["headphones","๐ง"],["hear_no_evil","๐"],["heart","โค๏ธ"],["heart_decoration","๐"],["heart_eyes","๐"],["heart_eyes_cat","๐ป"],["heartbeat","๐"],["heartpulse","๐"],["hearts","โฅ๏ธ"],["heavy_check_mark","โ๏ธ"],["heavy_division_sign","โ"],["heavy_dollar_sign","๐ฒ"],["heavy_heart_exclamation","โฃ"],["heavy_minus_sign","โ"],["heavy_multiplication_x","โ๏ธ"],["heavy_plus_sign","โ"],["hedgehog","๐ฆ"],["helicopter","๐"],["hello","๐"],["herb","๐ฟ"],["hi","๐"],["hibiscus","๐บ"],["high_brightness","๐"],["high_heel","๐ "],["highfive","๐"],["hiking_boot","๐ฅพ"],["hippopotamus","๐ฆ"],["hmm","๐ค"],["hocho","๐ช"],["hole","๐ณ"],["honey_pot","๐ฏ"],["honeybee","๐"],["hooray","๐"],["horse","๐ด"],["horse_racing","๐"],["hospital","๐ฅ"],["hot","๐ฅต"],["hot_pepper","๐ถ"],["hotdog","๐ญ"],["hotel","๐จ"],["hotsprings","โจ๏ธ"],["hourglass","โ"],["hourglass_flowing_sand","โณ"],["house","๐ "],["house_with_garden","๐ก"],["houses","๐"],["hug","๐ค"],["hugs","๐ค"],["huh","๐คจ"],["hushed","๐ฏ"]],"i":[["ice_cream","๐จ"],["ice_hockey","๐"],["ice_skate","โธ"],["icecream","๐ฆ"],["id","๐"],["ideograph_advantage","๐"],["idk","๐คท"],["ill","๐ค"],["ily","โค๏ธ"],["imp","๐ฟ"],["inbox_tray","๐ฅ"],["incoming_envelope","๐จ"],["infinity","โพ"],["information_source","โน๏ธ"],["innocent","๐"],["interrobang","โ๏ธ"],["intoxicated","๐ฅด"],["iphone","๐ฑ"],["izakaya_lantern","๐ฎ"]],"j":[["jack_o_lantern","๐"],["japan","๐พ"],["japanese_castle","๐ฏ"],["japanese_goblin","๐บ"],["japanese_ogre","๐น"],["jealous","๐"],["jeans","๐"],["jelly","๐"],["jigsaw","๐งฉ"],["joke","๐"],["joy","๐"],["joy_cat","๐น"],["joystick","๐น"]],"k":[["kaaba","๐"],["kangaroo","๐ฆ"],["key","๐"],["keyboard","โจ"],["keycap_ten","๐"],["kick_scooter","๐ด"],["kimono","๐"],["kiss","๐"],["kissing","๐"],["kissing_cat","๐ฝ"],["kissing_closed_eyes","๐"],["kissing_heart","๐"],["kissing_smiling_eyes","๐"],["kiwi_fruit","๐ฅ"],["knockedout","๐ต"],["koala","๐จ"],["koko","๐"]],"l":[["labcoat","๐ฅผ"],["label","๐ท"],["lacrosse","๐ฅ"],["large_blue_circle","๐ต"],["large_blue_diamond","๐ท"],["large_orange_diamond","๐ถ"],["last_quarter_moon","๐"],["last_quarter_moon_with_face","๐"],["later","๐"],["latin_cross","โ"],["laughing","๐"],["leafy_greens","๐ฅฌ"],["leaves","๐"],["ledger","๐"],["left_luggage","๐
"],["left_right_arrow","โ๏ธ"],["left_speech_bubble","๐จ"],["leftwards_arrow_with_hook","โฉ๏ธ"],["leg","๐ฆต"],["legit","๐"],["lemon","๐"],["leo","โ"],["leopard","๐"],["level_slider","๐"],["libra","โ"],["light_rail","๐"],["link","๐"],["lion","๐ฆ"],["lips","๐"],["lipstick","๐"],["lizard","๐ฆ"],["llama","๐ฆ"],["lmao","๐"],["lmfao","๐คฃ"],["lobster","๐ฆ"],["lock","๐"],["lock_with_ink_pen","๐"],["lol","๐"],["lollipop","๐ญ"],["looking","๐"],["loop","โฟ"],["lotion_bottle","๐งด"],["loud_sound","๐"],["loudspeaker","๐ข"],["love","โค๏ธ"],["love_hotel","๐ฉ"],["love_letter","๐"],["love_you","๐ค"],["low_brightness","๐
"],["luggage","๐งณ"],["lying_face","๐คฅ"]],"m":[["m","โ๏ธ"],["mad","๐ก"],["mag","๐"],["mag_right","๐"],["magnet","๐งฒ"],["mahjong","๐"],["mailbox","๐ซ"],["mailbox_closed","๐ช"],["mailbox_with_mail","๐ฌ"],["mailbox_with_no_mail","๐ญ"],["male_detective","๐ต"],["man","๐จ"],["man_artist","๐จโ๐จ"],["man_astronaut","๐จโ๐"],["man_cartwheeling","๐คธโโ๏ธ"],["man_cook","๐จโ๐ณ"],["man_dancing","๐บ"],["man_elf","๐งโโ๏ธ"],["man_facepalming","๐คฆโโ๏ธ"],["man_factory_worker","๐จโ๐ญ"],["man_fairy","๐งโโ๏ธ"],["man_farmer","๐จโ๐พ"],["man_firefighter","๐จโ๐"],["man_genie","๐งโโ๏ธ"],["man_health_worker","๐จโโ๏ธ"],["man_in_lotus_position","๐งโโ๏ธ"],["man_in_steamy_room","๐งโโ๏ธ"],["man_in_tuxedo","๐คต"],["man_judge","๐จโโ๏ธ"],["man_juggling","๐คนโโ๏ธ"],["man_mechanic","๐จโ๐ง"],["man_office_worker","๐จโ๐ผ"],["man_pilot","๐จโโ๏ธ"],["man_playing_handball","๐คพโโ๏ธ"],["man_playing_water_polo","๐คฝโโ๏ธ"],["man_scientist","๐จโ๐ฌ"],["man_shrugging","๐คทโโ๏ธ"],["man_singer","๐จโ๐ค"],["man_student","๐จโ๐"],["man_superhero","๐ฆธโโ๏ธ"],["man_supervillain","๐ฆนโโ๏ธ"],["man_teacher","๐จโ๐ซ"],["man_technologist","๐จโ๐ป"],["man_vampire","๐งโโ๏ธ"],["man_with_gua_pi_mao","๐ฒ"],["man_with_turban","๐ณ"],["man_zombie","๐งโโ๏ธ"],["mango","๐ฅญ"],["mans_shoe","๐"],["mantelpiece_clock","๐ฐ"],["maple_leaf","๐"],["martial_arts_uniform","๐ฅ"],["mask","๐ท"],["massage_man","๐โโ๏ธ"],["massage_woman","๐"],["meat_on_bone","๐"],["medal_military","๐"],["medal_sports","๐
"],["mega","๐ฃ"],["meh","๐"],["melon","๐"],["memo","๐"],["men_wrestling","๐คผโโ๏ธ"],["menorah","๐"],["mens","๐น"],["mermaid","๐งโโ๏ธ"],["merman","๐งโโ๏ธ"],["metal","๐ค"],["metro","๐"],["microbe","๐ฆ "],["microphone","๐ค"],["microscope","๐ฌ"],["milk_glass","๐ฅ"],["milky_way","๐"],["mindblown","๐คฏ"],["minibus","๐"],["minidisc","๐ฝ"],["mobile_phone_off","๐ด"],["money_mouth_face","๐ค"],["money_with_wings","๐ธ"],["moneybag","๐ฐ"],["monkey","๐"],["monkey_face","๐ต"],["monocle","๐ง"],["monorail","๐"],["moon_cake","๐ฅฎ"],["morning","โ๏ธ"],["mortar_board","๐"],["mosque","๐"],["mosquito","๐ฆ"],["motor_boat","๐ฅ"],["motor_scooter","๐ต"],["motorcycle","๐"],["motorway","๐ฃ"],["mount_fuji","๐ป"],["mountain","โฐ"],["mountain_biking_man","๐ต"],["mountain_biking_woman","๐ตโโ๏ธ"],["mountain_cableway","๐ "],["mountain_railway","๐"],["mountain_snow","๐"],["mouse","๐ญ"],["mouse2","๐"],["movie_camera","๐ฅ"],["moyai","๐ฟ"],["mrs_claus","๐คถ"],["muah","๐"],["muscle","๐ช"],["mushroom","๐"],["musical_keyboard","๐น"],["musical_note","๐ต"],["musical_score","๐ผ"],["mute","๐"]],"n":[["nah","๐"],["nail_care","๐
"],["name_badge","๐"],["nap","๐ด"],["national_park","๐"],["nauseated_face","๐คข"],["nazar_amulet","๐งฟ"],["necktie","๐"],["negative_squared_cross_mark","โ"],["nerd_face","๐ค"],["nervous","๐
"],["neutral_face","๐"],["new","๐"],["new_moon","๐"],["new_moon_with_face","๐"],["newspaper","๐ฐ"],["newspaper_roll","๐"],["next_track_button","โญ"],["ng","๐"],["night_with_stars","๐"],["nighty","๐ด"],["nine","9๏ธโฃ"],["no_bell","๐"],["no_bicycles","๐ณ"],["no_entry","โ"],["no_entry_sign","๐ซ"],["no_good_man","๐
โโ๏ธ"],["no_good_woman","๐
"],["no_mobile_phones","๐ต"],["no_mouth","๐ถ"],["no_pedestrians","๐ท"],["no_smoking","๐ญ"],["non-potable_water","๐ฑ"],["nope","๐"],["noped","๐"],["nose","๐"],["notebook","๐"],["notebook_with_decorative_cover","๐"],["noted","๐"],["notes","๐ถ"],["nut_and_bolt","๐ฉ"],["nvm","๐คท"]],"o":[["o","โญ"],["o2","๐
พ๏ธ"],["ocean","๐"],["octopus","๐"],["oden","๐ข"],["office","๐ข"],["oil_drum","๐ข"],["ok","๐"],["ok_hand","๐"],["ok_man","๐โโ๏ธ"],["ok_woman","๐"],["old_key","๐"],["older_adult","๐ง"],["older_man","๐ด"],["older_woman","๐ต"],["om","๐"],["omg","๐ฑ"],["on","๐"],["oncoming_automobile","๐"],["oncoming_bus","๐"],["oncoming_police_car","๐"],["oncoming_taxi","๐"],["one","1๏ธโฃ"],["oof","๐ฌ"],["oops","๐ฌ"],["open_book","๐"],["open_file_folder","๐"],["open_hands","๐"],["open_mouth","๐ฎ"],["open_umbrella","โ"],["ophiuchus","โ"],["orange_book","๐"],["orange_heart","๐งก"],["orthodox_cross","โฆ"],["ouch","๐ค"],["outbox_tray","๐ค"],["owl","๐ฆ"],["ox","๐"]],"p":[["package","๐ฆ"],["page_facing_up","๐"],["page_with_curl","๐"],["pager","๐"],["paintbrush","๐"],["palm_tree","๐ด"],["palms_up","๐คฒ"],["pancakes","๐ฅ"],["panda_face","๐ผ"],["paperclip","๐"],["paperclips","๐"],["parasol_on_ground","โฑ"],["parking","๐
ฟ๏ธ"],["parrot","๐ฆ"],["part_alternation_mark","ใฝ๏ธ"],["partly_sunny","โ
"],["party","๐ฅณ"],["partying","๐ฅณ"],["passenger_ship","๐ณ"],["passport_control","๐"],["pause_button","โธ"],["paw_prints","๐พ"],["peace","โ"],["peace_symbol","โฎ"],["peach","๐"],["peacock","๐ฆ"],["peanuts","๐ฅ"],["pear","๐"],["peep","๐"],["pen","๐"],["pencil2","โ๏ธ"],["penguin","๐ง"],["pensive","๐"],["performing_arts","๐ญ"],["persevere","๐ฃ"],["person_fencing","๐คบ"],["petri_dish","๐งซ"],["phone","โ๏ธ"],["pick","โ"],["pie","๐ฅง"],["pig","๐ท"],["pig2","๐"],["pig_nose","๐ฝ"],["pill","๐"],["pineapple","๐"],["ping_pong","๐"],["pirate_flag","๐ดโโ ๏ธ"],["pisces","โ"],["pissed","๐คฌ"],["pizza","๐"],["place_of_worship","๐"],["plate_with_cutlery","๐ฝ"],["play_or_pause_button","โฏ"],["pleading","๐ฅบ"],["pls","๐"],["plz","๐"],["point_down","๐"],["point_left","๐"],["point_right","๐"],["point_up","โ"],["point_up_2","๐"],["police_car","๐"],["policeman","๐ฎ"],["policewoman","๐ฎโโ๏ธ"],["poodle","๐ฉ"],["poop","๐ฉ"],["popcorn","๐ฟ"],["post_office","๐ฃ"],["postal_horn","๐ฏ"],["postbox","๐ฎ"],["potable_water","๐ฐ"],["potato","๐ฅ"],["pouch","๐"],["poultry_leg","๐"],["pound","๐ท"],["pouting_cat","๐พ"],["pouting_man","๐โโ๏ธ"],["pouting_woman","๐"],["praise","๐"],["pray","๐"],["prayer_beads","๐ฟ"],["pregnant_woman","๐คฐ"],["pretzel","๐ฅจ"],["previous_track_button","โฎ"],["prince","๐คด"],["princess","๐ธ"],["printer","๐จ"],["puke","๐คฎ"],["punch","๐"],["purple_heart","๐"],["purse","๐"],["pushpin","๐"],["put_litter_in_its_place","๐ฎ"]],"q":[["question","โ"]],"r":[["rabbit","๐ฐ"],["rabbit2","๐"],["raccoon","๐ฆ"],["racehorse","๐"],["racing_car","๐"],["rad","๐"],["radio","๐ป"],["radio_button","๐"],["radioactive","โข"],["rage","๐ก"],["railway_car","๐"],["railway_track","๐ค"],["rainbow","๐"],["rainbow_flag","๐ณ๏ธโ๐"],["raised_back_of_hand","๐ค"],["raised_eyebrow","๐คจ"],["raised_hand","โ"],["raised_hand_with_fingers_splayed","๐"],["raised_hands","๐"],["raising_hand_man","๐โโ๏ธ"],["raising_hand_woman","๐"],["ram","๐"],["ramen","๐"],["rat","๐"],["receipt","๐งพ"],["record_button","โบ"],["recycle","โป๏ธ"],["red_car","๐"],["red_circle","๐ด"],["red_envelope","๐งง"],["registered","ยฎ๏ธ"],["relaxed","โบ๏ธ"],["relieved","๐"],["reminder_ribbon","๐"],["repeat","๐"],["repeat_one","๐"],["rescue_worker_helmet","โ"],["restroom","๐ป"],["revolving_hearts","๐"],["rewind","โช"],["rhinoceros","๐ฆ"],["ribbon","๐"],["rice","๐"],["rice_ball","๐"],["rice_cracker","๐"],["rice_scene","๐"],["right_anger_bubble","๐ฏ"],["ring","๐"],["rip","โฐ๏ธ"],["robot","๐ค"],["rocket","๐"],["rockon","๐ค"],["rofl","๐คฃ"],["roll_eyes","๐"],["roller_coaster","๐ข"],["rooster","๐"],["rose","๐น"],["rosette","๐ต"],["rotating_light","๐จ"],["round_pushpin","๐"],["rowing_man","๐ฃ"],["rowing_woman","๐ฃโโ๏ธ"],["rugby_football","๐"],["running_man","๐"],["running_shirt_with_sash","๐ฝ"],["running_woman","๐โโ๏ธ"]],"s":[["sa","๐๏ธ"],["safety_pin","๐งท"],["sagittarius","โ"],["sailboat","โต"],["sake","๐ถ"],["salt","๐ง"],["sandal","๐ก"],["sandwich","๐ฅช"],["santa","๐
"],["satellite","๐ก"],["sauropod","๐ฆ"],["saxophone","๐ท"],["scared","๐จ"],["scarf","๐งฃ"],["school","๐ซ"],["school_satchel","๐"],["scissors","โ๏ธ"],["scorpion","๐ฆ"],["scorpius","โ"],["scotland","๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ"],["scream","๐ฑ"],["scream_cat","๐"],["scroll","๐"],["seat","๐บ"],["secret","ใ๏ธ"],["see_no_evil","๐"],["seedling","๐ฑ"],["selfie","๐คณ"],["seven","7๏ธโฃ"],["shallow_pan_of_food","๐ฅ"],["shamrock","โ"],["shark","๐ฆ"],["shaved_ice","๐ง"],["sheep","๐"],["shell","๐"],["shh","๐คซ"],["shield","๐ก"],["shinto_shrine","โฉ"],["ship","๐ข"],["shocked","๐ฑ"],["shopping","๐"],["shopping_cart","๐"],["shower","๐ฟ"],["shrimp","๐ฆ"],["shrug","๐คท"],["shushing","๐คซ"],["shut","๐ค"],["sick","๐ค"],["signal_strength","๐ถ"],["silly","๐"],["six","6๏ธโฃ"],["six_pointed_star","๐ฏ"],["skateboard","๐น"],["ski","๐ฟ"],["skier","โท"],["skull","๐"],["skull_and_crossbones","โ "],["slay","๐"],["sled","๐ท"],["sleep","๐ค"],["sleeping","๐ด"],["sleeping_bed","๐"],["sleepy","๐ช"],["slightly_frowning_face","๐"],["slightly_smiling_face","๐"],["slot_machine","๐ฐ"],["small_airplane","๐ฉ"],["small_blue_diamond","๐น"],["small_orange_diamond","๐ธ"],["small_red_triangle","๐บ"],["small_red_triangle_down","๐ป"],["smh","๐คฆ"],["smile","๐"],["smile_cat","๐ธ"],["smiley","๐"],["smiley_cat","๐บ"],["smiling_face_with_three_hearts","๐ฅฐ"],["smiling_imp","๐"],["smirk","๐"],["smirk_cat","๐ผ"],["smoking","๐ฌ"],["snail","๐"],["snake","๐"],["sneezing_face","๐คง"],["snooze","๐ค"],["snowboarder","๐"],["snowflake","โ๏ธ"],["snowman","โ"],["snowman_with_snow","โ"],["soap","๐งผ"],["sob","๐ญ"],["soccer","โฝ"],["socks","๐งฆ"],["softball","๐ฅ"],["soon","๐"],["sorceress","๐งโโ๏ธ"],["sos","๐"],["sound","๐"],["space_invader","๐พ"],["spades","โ ๏ธ"],["spaghetti","๐"],["sparkle","โ๏ธ"],["sparkler","๐"],["sparkles","โจ"],["sparkling_heart","๐"],["speak_no_evil","๐"],["speaker","๐"],["speaking_head","๐ฃ"],["speech_balloon","๐ฌ"],["speechless","๐ถ"],["speedboat","๐ค"],["spider","๐ท"],["spider_web","๐ธ"],["spiral_calendar","๐"],["spiral_notepad","๐"],["sponge","๐งฝ"],["spoon","๐ฅ"],["squid","๐ฆ"],["stadium","๐"],["star","โญ"],["star2","๐"],["star_and_crescent","โช"],["star_of_david","โก"],["star_struck","๐คฉ"],["stars","๐ "],["station","๐"],["statue_of_liberty","๐ฝ"],["steak","๐ฅฉ"],["steam_locomotive","๐"],["stew","๐ฒ"],["stop_button","โน"],["stop_sign","๐"],["stopwatch","โฑ"],["straight_ruler","๐"],["strawberry","๐"],["stuck_out_tongue","๐"],["stuck_out_tongue_closed_eyes","๐"],["stuck_out_tongue_winking_eye","๐"],["studio_microphone","๐"],["stuffed_flatbread","๐ฅ"],["sun_behind_large_cloud","๐ฅ"],["sun_behind_rain_cloud","๐ฆ"],["sun_behind_small_cloud","๐ค"],["sun_with_face","๐"],["sunflower","๐ป"],["sunglasses","๐"],["sunny","โ๏ธ"],["sunrise","๐
"],["sunrise_over_mountains","๐"],["surfing_man","๐"],["surfing_woman","๐โโ๏ธ"],["sus","๐คจ"],["sushi","๐ฃ"],["suspension_railway","๐"],["swag","๐"],["swan","๐ฆข"],["sweat","๐"],["sweat_drops","๐ฆ"],["sweat_smile","๐
"],["sweet_potato","๐ "],["swimming_man","๐"],["swimming_woman","๐โโ๏ธ"],["symbols","๐ฃ"],["symbols_over_mouth","๐คฌ"],["synagogue","๐"],["syringe","๐"]],"t":[["t-rex","๐ฆ"],["taco","๐ฎ"],["tada","๐"],["takeout_box","๐ฅก"],["tanabata_tree","๐"],["tangerine","๐"],["tasty","๐"],["taurus","โ"],["taxi","๐"],["tea","๐ต"],["teddy_bear","๐งธ"],["telephone_receiver","๐"],["telescope","๐ญ"],["tennis","๐พ"],["tent","โบ"],["test_tube","๐งช"],["text","๐ฌ"],["thanks","๐"],["thermometer","๐ก"],["think","๐ญ"],["thinking","๐ค"],["thought_balloon","๐ญ"],["thread","๐งต"],["three","3๏ธโฃ"],["thumbsdown","๐"],["thumbsup","๐"],["thx","๐"],["ticket","๐ซ"],["tickets","๐"],["tiger","๐ฏ"],["tiger2","๐
"],["timer_clock","โฒ"],["tipping_hand_man","๐โโ๏ธ"],["tipping_hand_woman","๐"],["tipsy","๐ฅด"],["tired","๐ด"],["tired_face","๐ซ"],["tm","โข๏ธ"],["toilet","๐ฝ"],["toilet_paper","๐งป"],["tokyo_tower","๐ผ"],["tomato","๐
"],["tongue","๐
"],["toolbox","๐งฐ"],["tooth","๐ฆท"],["top","๐"],["tophat","๐ฉ"],["tornado","๐ช"],["trackball","๐ฒ"],["tractor","๐"],["traffic_light","๐ฅ"],["train","๐"],["train2","๐"],["tram","๐"],["triangular_flag_on_post","๐ฉ"],["triangular_ruler","๐"],["trident","๐ฑ"],["triumph","๐ค"],["trolleybus","๐"],["trophy","๐"],["tropical_drink","๐น"],["tropical_fish","๐ "],["truck","๐"],["trumpet","๐บ"],["tshirt","๐"],["ttyl","๐"],["tulip","๐ท"],["tumbler_glass","๐ฅ"],["turkey","๐ฆ"],["turtle","๐ข"],["tv","๐บ"],["twisted_rightwards_arrows","๐"],["two","2๏ธโฃ"],["two_hearts","๐"],["two_men_holding_hands","๐ฌ"],["two_women_holding_hands","๐ญ"],["ty","๐"],["typing","๐ฌ"]],"u":[["u5272","๐น"],["u5408","๐ด"],["u55b6","๐บ"],["u6307","๐ฏ"],["u6708","๐ท๏ธ"],["u6709","๐ถ"],["u6e80","๐ต"],["u7121","๐"],["u7533","๐ธ"],["u7981","๐ฒ"],["u7a7a","๐ณ"],["ugh","๐"],["umbrella","โ"],["unamused","๐"],["underage","๐"],["unicorn","๐ฆ"],["unlock","๐"],["up","๐"],["upside_down_face","๐"]],"v":[["v","โ"],["vertical_traffic_light","๐ฆ"],["vhs","๐ผ"],["vibration_mode","๐ณ"],["video_camera","๐น"],["video_game","๐ฎ"],["violin","๐ป"],["virgo","โ"],["volcano","๐"],["volleyball","๐"],["vomiting","๐คฎ"],["vs","๐"],["vulcan_salute","๐"]],"w":[["wales","๐ด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ"],["walking_man","๐ถ"],["walking_woman","๐ถโโ๏ธ"],["waning_crescent_moon","๐"],["waning_gibbous_moon","๐"],["warning","โ ๏ธ"],["wastebasket","๐"],["watch","โ"],["water_buffalo","๐"],["watermelon","๐"],["wave","๐"],["wavy_dash","ใฐ๏ธ"],["waxing_crescent_moon","๐"],["waxing_gibbous_moon","๐"],["wc","๐พ"],["weary","๐ฉ"],["wedding","๐"],["weight_lifting_man","๐"],["weight_lifting_woman","๐๏ธโโ๏ธ"],["weirdo","๐"],["whale","๐ณ"],["whale2","๐"],["whatever","๐"],["wheel_of_dharma","โธ"],["wheelchair","โฟ"],["white_check_mark","โ
"],["white_circle","โช"],["white_flag","๐ณ"],["white_flower","๐ฎ"],["white_large_square","โฌ"],["white_medium_small_square","โฝ"],["white_medium_square","โป๏ธ"],["white_small_square","โซ๏ธ"],["white_square_button","๐ณ"],["whoa","๐ฏ"],["wilted_flower","๐ฅ"],["wind_chime","๐"],["wind_face","๐ฌ"],["wine_glass","๐ท"],["wink","๐"],["wizard","๐งโโ๏ธ"],["woah","๐ฑ"],["wolf","๐บ"],["woman","๐ฉ"],["woman_artist","๐ฉโ๐จ"],["woman_astronaut","๐ฉโ๐"],["woman_cartwheeling","๐คธโโ๏ธ"],["woman_cook","๐ฉโ๐ณ"],["woman_elf","๐งโโ๏ธ"],["woman_facepalming","๐คฆโโ๏ธ"],["woman_factory_worker","๐ฉโ๐ญ"],["woman_fairy","๐งโโ๏ธ"],["woman_farmer","๐ฉโ๐พ"],["woman_firefighter","๐ฉโ๐"],["woman_genie","๐งโโ๏ธ"],["woman_health_worker","๐ฉโโ๏ธ"],["woman_in_lotus_position","๐งโโ๏ธ"],["woman_in_steamy_room","๐งโโ๏ธ"],["woman_judge","๐ฉโโ๏ธ"],["woman_juggling","๐คนโโ๏ธ"],["woman_mechanic","๐ฉโ๐ง"],["woman_office_worker","๐ฉโ๐ผ"],["woman_pilot","๐ฉโโ๏ธ"],["woman_playing_handball","๐คพโโ๏ธ"],["woman_playing_water_polo","๐คฝโโ๏ธ"],["woman_scientist","๐ฉโ๐ฌ"],["woman_shrugging","๐คท"],["woman_singer","๐ฉโ๐ค"],["woman_student","๐ฉโ๐"],["woman_superhero","๐ฆธโโ๏ธ"],["woman_supervillain","๐ฆนโโ๏ธ"],["woman_teacher","๐ฉโ๐ซ"],["woman_technologist","๐ฉโ๐ป"],["woman_vampire","๐งโโ๏ธ"],["woman_with_headscarf","๐ง"],["woman_with_turban","๐ณโโ๏ธ"],["woman_zombie","๐งโโ๏ธ"],["womans_clothes","๐"],["womans_hat","๐"],["women_wrestling","๐คผโโ๏ธ"],["womens","๐บ"],["woozy","๐ฅด"],["world_map","๐บ"],["worried","๐"],["wrench","๐ง"],["writing_hand","โ"],["wtf","๐คฌ"]],"x":[["x","โ"],["xo","๐"],["xoxo","๐"]],"y":[["yarn","๐งถ"],["yawn","๐ช"],["yay","๐"],["yellow_heart","๐"],["yen","๐ด"],["yep","๐"],["yin_yang","โฏ"],["yo","๐"],["yum","๐"],["yummy","๐"],["yup","๐"]],"z":[["zany","๐คช"],["zap","โก"],["zebra","๐ฆ"],["zero","0๏ธโฃ"],["zipper_mouth_face","๐ค"],["zzz","๐ค"]]}
|