shortcutxl 0.2.0
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/README.md +59 -0
- package/agent-docs/README.md +397 -0
- package/agent-docs/docs/compaction.md +390 -0
- package/agent-docs/docs/custom-provider.md +580 -0
- package/agent-docs/docs/development.md +69 -0
- package/agent-docs/docs/extensions.md +1971 -0
- package/agent-docs/docs/json.md +79 -0
- package/agent-docs/docs/keybindings.md +174 -0
- package/agent-docs/docs/models.md +293 -0
- package/agent-docs/docs/packages.md +209 -0
- package/agent-docs/docs/prompt-templates.md +67 -0
- package/agent-docs/docs/providers.md +186 -0
- package/agent-docs/docs/rpc.md +1317 -0
- package/agent-docs/docs/sdk.md +962 -0
- package/agent-docs/docs/session.md +412 -0
- package/agent-docs/docs/settings.md +223 -0
- package/agent-docs/docs/shell-aliases.md +13 -0
- package/agent-docs/docs/skills.md +231 -0
- package/agent-docs/docs/terminal-setup.md +70 -0
- package/agent-docs/docs/termux.md +127 -0
- package/agent-docs/docs/themes.md +295 -0
- package/agent-docs/docs/tree.md +219 -0
- package/agent-docs/docs/tui.md +887 -0
- package/agent-docs/docs/windows.md +17 -0
- package/agent-docs/examples/README.md +25 -0
- package/agent-docs/examples/extensions/README.md +205 -0
- package/agent-docs/examples/extensions/antigravity-image-gen.ts +447 -0
- package/agent-docs/examples/extensions/auto-commit-on-exit.ts +49 -0
- package/agent-docs/examples/extensions/bash-spawn-hook.ts +30 -0
- package/agent-docs/examples/extensions/bookmark.ts +50 -0
- package/agent-docs/examples/extensions/built-in-tool-renderer.ts +256 -0
- package/agent-docs/examples/extensions/claude-rules.ts +86 -0
- package/agent-docs/examples/extensions/commands.ts +75 -0
- package/agent-docs/examples/extensions/confirm-destructive.ts +59 -0
- package/agent-docs/examples/extensions/custom-compaction.ts +126 -0
- package/agent-docs/examples/extensions/custom-footer.ts +63 -0
- package/agent-docs/examples/extensions/custom-header.ts +73 -0
- package/agent-docs/examples/extensions/custom-provider-anthropic/index.ts +660 -0
- package/agent-docs/examples/extensions/custom-provider-anthropic/package-lock.json +24 -0
- package/agent-docs/examples/extensions/custom-provider-anthropic/package.json +19 -0
- package/agent-docs/examples/extensions/custom-provider-gitlab-duo/index.ts +362 -0
- package/agent-docs/examples/extensions/custom-provider-gitlab-duo/package.json +16 -0
- package/agent-docs/examples/extensions/custom-provider-gitlab-duo/test.ts +88 -0
- package/agent-docs/examples/extensions/custom-provider-qwen-cli/index.ts +349 -0
- package/agent-docs/examples/extensions/custom-provider-qwen-cli/package.json +16 -0
- package/agent-docs/examples/extensions/dirty-repo-guard.ts +56 -0
- package/agent-docs/examples/extensions/doom-overlay/README.md +46 -0
- package/agent-docs/examples/extensions/doom-overlay/doom/build.sh +152 -0
- package/agent-docs/examples/extensions/doom-overlay/doom/doomgeneric_pi.c +72 -0
- package/agent-docs/examples/extensions/doom-overlay/doom-component.ts +133 -0
- package/agent-docs/examples/extensions/doom-overlay/doom-engine.ts +186 -0
- package/agent-docs/examples/extensions/doom-overlay/doom-keys.ts +108 -0
- package/agent-docs/examples/extensions/doom-overlay/index.ts +74 -0
- package/agent-docs/examples/extensions/doom-overlay/wad-finder.ts +51 -0
- package/agent-docs/examples/extensions/dynamic-resources/SKILL.md +8 -0
- package/agent-docs/examples/extensions/dynamic-resources/dynamic.json +79 -0
- package/agent-docs/examples/extensions/dynamic-resources/dynamic.md +5 -0
- package/agent-docs/examples/extensions/dynamic-resources/index.ts +15 -0
- package/agent-docs/examples/extensions/dynamic-tools.ts +77 -0
- package/agent-docs/examples/extensions/event-bus.ts +43 -0
- package/agent-docs/examples/extensions/file-trigger.ts +41 -0
- package/agent-docs/examples/extensions/git-checkpoint.ts +53 -0
- package/agent-docs/examples/extensions/handoff.ts +155 -0
- package/agent-docs/examples/extensions/hello.ts +25 -0
- package/agent-docs/examples/extensions/inline-bash.ts +94 -0
- package/agent-docs/examples/extensions/input-transform.ts +43 -0
- package/agent-docs/examples/extensions/interactive-shell.ts +209 -0
- package/agent-docs/examples/extensions/mac-system-theme.ts +47 -0
- package/agent-docs/examples/extensions/message-renderer.ts +59 -0
- package/agent-docs/examples/extensions/minimal-mode.ts +430 -0
- package/agent-docs/examples/extensions/modal-editor.ts +90 -0
- package/agent-docs/examples/extensions/model-status.ts +31 -0
- package/agent-docs/examples/extensions/notify.ts +55 -0
- package/agent-docs/examples/extensions/overlay-qa-tests.ts +936 -0
- package/agent-docs/examples/extensions/overlay-test.ts +159 -0
- package/agent-docs/examples/extensions/permission-gate.ts +37 -0
- package/agent-docs/examples/extensions/pirate.ts +47 -0
- package/agent-docs/examples/extensions/plan-mode/README.md +65 -0
- package/agent-docs/examples/extensions/plan-mode/index.ts +363 -0
- package/agent-docs/examples/extensions/plan-mode/utils.ts +173 -0
- package/agent-docs/examples/extensions/preset.ts +418 -0
- package/agent-docs/examples/extensions/protected-paths.ts +30 -0
- package/agent-docs/examples/extensions/qna.ts +122 -0
- package/agent-docs/examples/extensions/question.ts +278 -0
- package/agent-docs/examples/extensions/questionnaire.ts +440 -0
- package/agent-docs/examples/extensions/rainbow-editor.ts +90 -0
- package/agent-docs/examples/extensions/reload-runtime.ts +37 -0
- package/agent-docs/examples/extensions/rpc-demo.ts +124 -0
- package/agent-docs/examples/extensions/sandbox/index.ts +324 -0
- package/agent-docs/examples/extensions/sandbox/package-lock.json +92 -0
- package/agent-docs/examples/extensions/sandbox/package.json +19 -0
- package/agent-docs/examples/extensions/send-user-message.ts +97 -0
- package/agent-docs/examples/extensions/session-name.ts +27 -0
- package/agent-docs/examples/extensions/shutdown-command.ts +69 -0
- package/agent-docs/examples/extensions/snake.ts +343 -0
- package/agent-docs/examples/extensions/space-invaders.ts +566 -0
- package/agent-docs/examples/extensions/ssh.ts +233 -0
- package/agent-docs/examples/extensions/status-line.ts +40 -0
- package/agent-docs/examples/extensions/subagent/README.md +172 -0
- package/agent-docs/examples/extensions/subagent/agents/planner.md +37 -0
- package/agent-docs/examples/extensions/subagent/agents/reviewer.md +35 -0
- package/agent-docs/examples/extensions/subagent/agents/scout.md +50 -0
- package/agent-docs/examples/extensions/subagent/agents/worker.md +24 -0
- package/agent-docs/examples/extensions/subagent/agents.ts +130 -0
- package/agent-docs/examples/extensions/subagent/index.ts +1068 -0
- package/agent-docs/examples/extensions/subagent/prompts/implement-and-review.md +10 -0
- package/agent-docs/examples/extensions/subagent/prompts/implement.md +10 -0
- package/agent-docs/examples/extensions/subagent/prompts/scout-and-plan.md +9 -0
- package/agent-docs/examples/extensions/summarize.ts +206 -0
- package/agent-docs/examples/extensions/system-prompt-header.ts +17 -0
- package/agent-docs/examples/extensions/timed-confirm.ts +72 -0
- package/agent-docs/examples/extensions/titlebar-spinner.ts +58 -0
- package/agent-docs/examples/extensions/todo.ts +314 -0
- package/agent-docs/examples/extensions/tool-override.ts +146 -0
- package/agent-docs/examples/extensions/tools.ts +145 -0
- package/agent-docs/examples/extensions/trigger-compact.ts +40 -0
- package/agent-docs/examples/extensions/truncated-tool.ts +194 -0
- package/agent-docs/examples/extensions/widget-placement.ts +17 -0
- package/agent-docs/examples/extensions/with-deps/index.ts +37 -0
- package/agent-docs/examples/extensions/with-deps/package-lock.json +31 -0
- package/agent-docs/examples/extensions/with-deps/package.json +22 -0
- package/agent-docs/examples/rpc-extension-ui.ts +654 -0
- package/agent-docs/examples/sdk/01-minimal.ts +22 -0
- package/agent-docs/examples/sdk/02-custom-model.ts +48 -0
- package/agent-docs/examples/sdk/03-custom-prompt.ts +55 -0
- package/agent-docs/examples/sdk/04-skills.ts +53 -0
- package/agent-docs/examples/sdk/05-tools.ts +56 -0
- package/agent-docs/examples/sdk/06-extensions.ts +88 -0
- package/agent-docs/examples/sdk/07-context-files.ts +40 -0
- package/agent-docs/examples/sdk/08-prompt-templates.ts +47 -0
- package/agent-docs/examples/sdk/09-api-keys-and-oauth.ts +48 -0
- package/agent-docs/examples/sdk/10-settings.ts +54 -0
- package/agent-docs/examples/sdk/11-sessions.ts +48 -0
- package/agent-docs/examples/sdk/12-full-control.ts +82 -0
- package/agent-docs/examples/sdk/README.md +144 -0
- package/agent-docs/xll-skill.md +61 -0
- package/agent-docs/xll-spec.md +110 -0
- package/dist/cli/args.js +290 -0
- package/dist/cli/config-selector.js +31 -0
- package/dist/cli/file-processor.js +79 -0
- package/dist/cli/list-models.js +92 -0
- package/dist/cli/package-commands.js +210 -0
- package/dist/cli/report-settings-errors.js +11 -0
- package/dist/cli/session-picker.js +34 -0
- package/dist/cli.js +19 -0
- package/dist/config.js +288 -0
- package/dist/core/abort.js +15 -0
- package/dist/core/agent-loop.js +352 -0
- package/dist/core/agent-session.js +2019 -0
- package/dist/core/agent.js +410 -0
- package/dist/core/auth-storage.js +456 -0
- package/dist/core/bash-executor.js +222 -0
- package/dist/core/compaction/branch-summarization.js +242 -0
- package/dist/core/compaction/compaction.js +610 -0
- package/dist/core/compaction/index.js +7 -0
- package/dist/core/compaction/utils.js +139 -0
- package/dist/core/defaults.js +6 -0
- package/dist/core/diagnostics.js +2 -0
- package/dist/core/event-bus.js +25 -0
- package/dist/core/exec.js +71 -0
- package/dist/core/export-html/ansi-to-html.js +256 -0
- package/dist/core/export-html/index.js +238 -0
- package/dist/core/export-html/session-view-model.js +342 -0
- package/dist/core/export-html/template.css +1110 -0
- package/dist/core/export-html/template.html +76 -0
- package/dist/core/export-html/template.js +1990 -0
- package/dist/core/export-html/tool-renderer.js +63 -0
- package/dist/core/export-html/vendor/highlight.min.js +7725 -0
- package/dist/core/export-html/vendor/marked.min.js +1803 -0
- package/dist/core/extensions/index.js +9 -0
- package/dist/core/extensions/loader.js +422 -0
- package/dist/core/extensions/runner.js +651 -0
- package/dist/core/extensions/types.js +35 -0
- package/dist/core/extensions/wrapper.js +102 -0
- package/dist/core/footer-data-provider.js +162 -0
- package/dist/core/index.js +9 -0
- package/dist/core/keybindings.js +153 -0
- package/dist/core/messages.js +133 -0
- package/dist/core/model-registry.js +539 -0
- package/dist/core/model-resolver.js +370 -0
- package/dist/core/package-manager.js +1485 -0
- package/dist/core/prompt-templates.js +253 -0
- package/dist/core/resolve-config-value.js +59 -0
- package/dist/core/resource-loader.js +700 -0
- package/dist/core/sdk.js +197 -0
- package/dist/core/session-bash.js +99 -0
- package/dist/core/session-compaction.js +165 -0
- package/dist/core/session-manager.js +1153 -0
- package/dist/core/session-models.js +99 -0
- package/dist/core/session-retry.js +155 -0
- package/dist/core/settings-manager.js +572 -0
- package/dist/core/skills.js +382 -0
- package/dist/core/slash-commands.js +31 -0
- package/dist/core/system-prompt.js +161 -0
- package/dist/core/theme.js +770 -0
- package/dist/core/timings.js +26 -0
- package/dist/core/tools/bash.js +258 -0
- package/dist/core/tools/edit-diff.js +245 -0
- package/dist/core/tools/edit.js +148 -0
- package/dist/core/tools/find.js +208 -0
- package/dist/core/tools/grep.js +246 -0
- package/dist/core/tools/index.js +67 -0
- package/dist/core/tools/ls.js +123 -0
- package/dist/core/tools/path-utils.js +81 -0
- package/dist/core/tools/read.js +160 -0
- package/dist/core/tools/truncate.js +70 -0
- package/dist/core/tools/write.js +82 -0
- package/dist/custom/agents/action.js +13 -0
- package/dist/custom/agents/document-reader.js +70 -0
- package/dist/custom/agents/general.js +26 -0
- package/dist/custom/agents/index.js +49 -0
- package/dist/custom/agents/installation.js +13 -0
- package/dist/custom/agents/types.js +7 -0
- package/dist/custom/auth/refresh-timer.js +33 -0
- package/dist/custom/auth/shortcut-oauth.js +145 -0
- package/dist/custom/constants.js +21 -0
- package/dist/custom/context/workbook-summary.js +73 -0
- package/dist/custom/credits/shortcut-credits.js +29 -0
- package/dist/custom/cron/cron-daemon-entry.js +18 -0
- package/dist/custom/cron/daemon-ipc.js +131 -0
- package/dist/custom/cron/daemon.js +224 -0
- package/dist/custom/cron/jobs.js +226 -0
- package/dist/custom/cron/run-log.js +51 -0
- package/dist/custom/cron/schedule.js +72 -0
- package/dist/custom/cron/status-line.js +98 -0
- package/dist/custom/cron/store.js +87 -0
- package/dist/custom/cron/types.js +8 -0
- package/dist/custom/dev/index.js +59 -0
- package/dist/custom/dev/trace-export.js +58 -0
- package/dist/custom/ensure-excel.js +63 -0
- package/dist/custom/excel-config.js +36 -0
- package/dist/custom/preflight.js +422 -0
- package/dist/custom/prompts/action.js +100 -0
- package/dist/custom/prompts/api.js +66 -0
- package/dist/custom/prompts/installation.js +124 -0
- package/dist/custom/prompts/shared.js +138 -0
- package/dist/custom/providers/llm-usage.js +42 -0
- package/dist/custom/providers/message-converter.js +74 -0
- package/dist/custom/providers/provider-ids.js +9 -0
- package/dist/custom/providers/register-openai-codex-provider.js +27 -0
- package/dist/custom/providers/register-shortcut-provider.js +52 -0
- package/dist/custom/providers/shortcut-invoke.js +117 -0
- package/dist/custom/providers/shortcut-stream.js +252 -0
- package/dist/custom/providers/sse-protocol.js +38 -0
- package/dist/custom/sync-xll.js +130 -0
- package/dist/custom/tools/cron.js +413 -0
- package/dist/custom/tools/excel-exec.js +167 -0
- package/dist/custom/tools/excel-range.js +50 -0
- package/dist/custom/tools/llm-analysis.js +265 -0
- package/dist/custom/tools/render-helpers.js +38 -0
- package/dist/custom/tools/switch-mode.js +94 -0
- package/dist/custom/tools/task/agents.js +6 -0
- package/dist/custom/tools/task/index.js +8 -0
- package/dist/custom/tools/task/render.js +348 -0
- package/dist/custom/tools/task/subprocess.js +320 -0
- package/dist/custom/tools/task/task.js +205 -0
- package/dist/custom/tools/todo-list.js +195 -0
- package/dist/custom/tracing/session-upload.js +93 -0
- package/dist/index.js +45 -0
- package/dist/main.js +613 -0
- package/dist/migrations.js +265 -0
- package/dist/modes/index.js +8 -0
- package/dist/modes/interactive/components/armin.js +337 -0
- package/dist/modes/interactive/components/assistant-message.js +94 -0
- package/dist/modes/interactive/components/bash-execution.js +171 -0
- package/dist/modes/interactive/components/bordered-loader.js +51 -0
- package/dist/modes/interactive/components/branch-summary-message.js +45 -0
- package/dist/modes/interactive/components/compaction-summary-message.js +46 -0
- package/dist/modes/interactive/components/config-selector.js +488 -0
- package/dist/modes/interactive/components/countdown-timer.js +33 -0
- package/dist/modes/interactive/components/custom-editor.js +93 -0
- package/dist/modes/interactive/components/custom-message.js +81 -0
- package/dist/modes/interactive/components/daxnuts.js +140 -0
- package/dist/modes/interactive/components/diff.js +133 -0
- package/dist/modes/interactive/components/dynamic-border.js +21 -0
- package/dist/modes/interactive/components/extension-editor.js +105 -0
- package/dist/modes/interactive/components/extension-input.js +61 -0
- package/dist/modes/interactive/components/extension-selector.js +78 -0
- package/dist/modes/interactive/components/footer.js +309 -0
- package/dist/modes/interactive/components/index.js +33 -0
- package/dist/modes/interactive/components/keybinding-hints.js +61 -0
- package/dist/modes/interactive/components/layout.js +64 -0
- package/dist/modes/interactive/components/login-dialog.js +148 -0
- package/dist/modes/interactive/components/model-selector.js +237 -0
- package/dist/modes/interactive/components/oauth-selector.js +111 -0
- package/dist/modes/interactive/components/session-selector-search.js +157 -0
- package/dist/modes/interactive/components/session-selector.js +860 -0
- package/dist/modes/interactive/components/settings-selector.js +123 -0
- package/dist/modes/interactive/components/show-images-selector.js +35 -0
- package/dist/modes/interactive/components/skill-invocation-message.js +48 -0
- package/dist/modes/interactive/components/theme-selector.js +47 -0
- package/dist/modes/interactive/components/thinking-selector.js +47 -0
- package/dist/modes/interactive/components/tool-execution.js +789 -0
- package/dist/modes/interactive/components/tool-group.js +106 -0
- package/dist/modes/interactive/components/tree-selector.js +962 -0
- package/dist/modes/interactive/components/user-message-selector.js +115 -0
- package/dist/modes/interactive/components/user-message.js +48 -0
- package/dist/modes/interactive/components/visual-truncate.js +33 -0
- package/dist/modes/interactive/file-attachments.js +135 -0
- package/dist/modes/interactive/interactive-mode.js +3775 -0
- package/dist/modes/interactive/theme/dark.json +85 -0
- package/dist/modes/interactive/theme/light.json +85 -0
- package/dist/modes/interactive/theme/theme-schema.json +335 -0
- package/dist/modes/interactive/theme/theme.js +177 -0
- package/dist/modes/print-mode.js +101 -0
- package/dist/modes/rpc/rpc-client.js +387 -0
- package/dist/modes/rpc/rpc-mode.js +509 -0
- package/dist/modes/rpc/rpc-types.js +8 -0
- package/dist/subagent-entry.js +145 -0
- package/dist/tool-names.js +34 -0
- package/dist/tui/autocomplete.js +596 -0
- package/dist/tui/components/box.js +104 -0
- package/dist/tui/components/cancellable-loader.js +35 -0
- package/dist/tui/components/editor.js +1679 -0
- package/dist/tui/components/image.js +69 -0
- package/dist/tui/components/input.js +433 -0
- package/dist/tui/components/loader.js +49 -0
- package/dist/tui/components/markdown.js +629 -0
- package/dist/tui/components/select-list.js +152 -0
- package/dist/tui/components/settings-list.js +185 -0
- package/dist/tui/components/spacer.js +23 -0
- package/dist/tui/components/text.js +89 -0
- package/dist/tui/components/truncated-text.js +51 -0
- package/dist/tui/editor-component.js +2 -0
- package/dist/tui/fuzzy.js +107 -0
- package/dist/tui/get-east-asian-width/index.js +32 -0
- package/dist/tui/get-east-asian-width/lookup.js +404 -0
- package/dist/tui/index.js +32 -0
- package/dist/tui/keybindings.js +114 -0
- package/dist/tui/keys.js +959 -0
- package/dist/tui/kill-ring.js +44 -0
- package/dist/tui/stdin-buffer.js +317 -0
- package/dist/tui/terminal-image.js +288 -0
- package/dist/tui/terminal.js +249 -0
- package/dist/tui/tui/autocomplete.js +596 -0
- package/dist/tui/tui/components/box.js +106 -0
- package/dist/tui/tui/components/cancellable-loader.js +35 -0
- package/dist/tui/tui/components/editor.js +1679 -0
- package/dist/tui/tui/components/image.js +69 -0
- package/dist/tui/tui/components/input.js +433 -0
- package/dist/tui/tui/components/loader.js +49 -0
- package/dist/tui/tui/components/markdown.js +629 -0
- package/dist/tui/tui/components/select-list.js +152 -0
- package/dist/tui/tui/components/settings-list.js +185 -0
- package/dist/tui/tui/components/spacer.js +23 -0
- package/dist/tui/tui/components/text.js +91 -0
- package/dist/tui/tui/components/truncated-text.js +51 -0
- package/dist/tui/tui/editor-component.js +2 -0
- package/dist/tui/tui/fuzzy.js +107 -0
- package/dist/tui/tui/get-east-asian-width/index.js +32 -0
- package/dist/tui/tui/get-east-asian-width/lookup.js +404 -0
- package/dist/tui/tui/index.js +32 -0
- package/dist/tui/tui/keybindings.js +114 -0
- package/dist/tui/tui/keys.js +959 -0
- package/dist/tui/tui/kill-ring.js +44 -0
- package/dist/tui/tui/stdin-buffer.js +317 -0
- package/dist/tui/tui/terminal-image.js +288 -0
- package/dist/tui/tui/terminal.js +249 -0
- package/dist/tui/tui/tui.js +955 -0
- package/dist/tui/tui/undo-stack.js +25 -0
- package/dist/tui/tui/utils.js +800 -0
- package/dist/tui/tui.js +955 -0
- package/dist/tui/undo-stack.js +25 -0
- package/dist/tui/utils.js +800 -0
- package/dist/utils/changelog.js +87 -0
- package/dist/utils/clipboard-image.js +164 -0
- package/dist/utils/clipboard-native.js +14 -0
- package/dist/utils/clipboard.js +67 -0
- package/dist/utils/frontmatter.js +26 -0
- package/dist/utils/git.js +166 -0
- package/dist/utils/image-convert.js +35 -0
- package/dist/utils/image-resize.js +183 -0
- package/dist/utils/mime.js +26 -0
- package/dist/utils/photon.js +121 -0
- package/dist/utils/shell.js +217 -0
- package/dist/utils/sleep.js +17 -0
- package/dist/utils/tools-manager.js +259 -0
- package/package.json +78 -0
- package/skills/excel-com-api/SKILL.md +74 -0
- package/skills/excel-com-api/excel-type-library.py +27767 -0
- package/skills/excel-com-api/office-type-library.py +10867 -0
- package/skills/integrations/SKILL.md +138 -0
- package/skills/integrations/alphasense.md +457 -0
- package/skills/integrations/bloomberg.md +803 -0
- package/skills/integrations/calcbench.md +315 -0
- package/skills/integrations/capiq.md +848 -0
- package/skills/integrations/dynamics-365-finance.md +354 -0
- package/skills/integrations/earnings_transcripts.md +387 -0
- package/skills/integrations/factset.md +758 -0
- package/skills/integrations/ice-fixed-income.md +344 -0
- package/skills/integrations/moodys-analytics.md +313 -0
- package/skills/integrations/morningstar.md +433 -0
- package/skills/integrations/nasdaq-data-link.md +249 -0
- package/skills/integrations/pitchbook.md +413 -0
- package/skills/integrations/preqin.md +422 -0
- package/skills/integrations/quickbooks.md +289 -0
- package/skills/integrations/quickfs.md +314 -0
- package/skills/integrations/refinitiv.md +473 -0
- package/skills/integrations/sage-intacct.md +401 -0
- package/skills/integrations/visible-alpha.md +320 -0
- package/skills/integrations/xero.md +393 -0
- package/skills/integrations/ycharts.md +306 -0
- package/skills/pdf-creation/SKILL.md +93 -0
- package/skills/pdf-extraction/SKILL.md +32 -0
- package/skills/powerpoint-creation/SKILL.md +110 -0
- package/skills/sec-edgar/SKILL.md +127 -0
- package/skills/sec-edgar/sec_to_pdf.py +109 -0
- package/xll/ShortcutXL.xll +0 -0
- package/xll/modules/debug_render.py +272 -0
- package/xll/modules/gameboy.py +241 -0
- package/xll/modules/pong.py +188 -0
- package/xll/modules/shortcut_xl/__init__.py +18 -0
- package/xll/modules/shortcut_xl/_categorize.py +200 -0
- package/xll/modules/shortcut_xl/_com.py +108 -0
- package/xll/modules/shortcut_xl/_format.py +252 -0
- package/xll/modules/shortcut_xl/_log.py +12 -0
- package/xll/modules/shortcut_xl/_managed.py +116 -0
- package/xll/modules/shortcut_xl/_registry.py +44 -0
- package/xll/modules/shortcut_xl/_threading.py +161 -0
- package/xll/modules/shortcut_xl/_tracking.py +283 -0
- package/xll/modules/stocks.py +100 -0
- package/xll/python3.dll +0 -0
- package/xll/python312.dll +0 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: integrations
|
|
3
|
+
description: Use when user requests data from financial data providers (Bloomberg, FactSet, Capital IQ, Refinitiv, Morningstar, PitchBook, Preqin, AlphaSense, Nasdaq Data Link, YCharts, QuickFS, Calcbench, Visible Alpha, Moody's Analytics, ICE) or accounting systems (QuickBooks, Xero, Sage Intacct, Dynamics 365 Finance). Each provider has specific Excel formula syntax.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Financial Data Provider Integrations
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
This skill provides Excel formula syntax for major financial data providers and accounting systems. Only pull data when the user **explicitly requests** a specific provider.
|
|
11
|
+
|
|
12
|
+
**Note:** All formulas require the provider's Excel add-in to be installed and connected. If formulas return `#NAME?` or `#N/A`, the add-in may not be active.
|
|
13
|
+
|
|
14
|
+
Each provider has its own markdown file with complete documentation:
|
|
15
|
+
- `bloomberg.md` - BDP, BDH, BDS formulas
|
|
16
|
+
- `factset.md` - FDS formulas with FF_, FG_, FE_ prefixes
|
|
17
|
+
- `capiq.md` - CIQ formulas with IQ_ variables
|
|
18
|
+
- `refinitiv.md` - RDP.Data, TR, DSGRID formulas
|
|
19
|
+
- `morningstar.md` - MSDP, MSTS, MSHOLDING formulas
|
|
20
|
+
- `pitchbook.md` - PB, PBMATCH formulas for private markets
|
|
21
|
+
- `preqin.md` - Alternative assets data (PE, VC, Real Estate)
|
|
22
|
+
- `alphasense.md` - TEGUS formulas and AI-powered research
|
|
23
|
+
- `earnings_transcripts.md` - Transcript access across providers
|
|
24
|
+
- `quickbooks.md` - CData SQL connector for QuickBooks accounting data
|
|
25
|
+
- `xero.md` - Scott's Add-in for Xero GL, invoices, bills
|
|
26
|
+
- `sage-intacct.md` - CData SQL connector for Sage Intacct ERP
|
|
27
|
+
- `dynamics-365-finance.md` - CData SQL connector for Microsoft Dynamics 365 Finance
|
|
28
|
+
- `nasdaq-data-link.md` - NASDAQ.TABLE for quant/economic data
|
|
29
|
+
- `ycharts.md` - YCD, YCDS formulas for wealth management
|
|
30
|
+
- `quickfs.md` - QFS formulas for fundamental data
|
|
31
|
+
- `calcbench.md` - CalcbenchData for SEC XBRL filings
|
|
32
|
+
- `visible-alpha.md` - VAData, VAdetail for consensus estimates
|
|
33
|
+
- `moodys-analytics.md` - MADS, MADR for credit risk (EDF, ratings)
|
|
34
|
+
- `ice-fixed-income.md` - RTD formulas for bonds, futures, FX
|
|
35
|
+
|
|
36
|
+
## Quick Reference
|
|
37
|
+
|
|
38
|
+
### Financial Data
|
|
39
|
+
|
|
40
|
+
| Provider | Formula | Ticker Format | Example |
|
|
41
|
+
|----------|---------|---------------|---------|
|
|
42
|
+
| Bloomberg | `=BDP()`, `=BDH()`, `=BDS()` | `AAPL US Equity` | `=BDP("AAPL US Equity","PX_LAST")` |
|
|
43
|
+
| FactSet | `=FDS()` | `AAPL-US` | `=FDS("AAPL-US","FF_SALES(ANN,0Y)")` |
|
|
44
|
+
| Capital IQ | `=CIQ()` | `AAPL` | `=CIQ("AAPL","IQ_TOTAL_REV",IQ_FY)` |
|
|
45
|
+
| Refinitiv | `=RDP.Data()`, `=TR()` | `AAPL.O` | `=TR("AAPL.O","CF_LAST")` |
|
|
46
|
+
| Morningstar | `=MSDP()`, `=MSTS()` | `VFIAX` or `NAS:AAPL` | `=MSDP("VFIAX","MorningstarRating")` |
|
|
47
|
+
| PitchBook | `=PB()` | Name or PBID | `=PB("SpaceX","PostMoneyValuation")` |
|
|
48
|
+
| AlphaSense | `=TEGUS.CD()` | `AAPL_US` | `=TEGUS.CD("AAPL_US","MO_RIS_REV","FY-2023")` |
|
|
49
|
+
| Nasdaq Data Link | `=NASDAQ.TABLE()` | `AAPL` | `=NASDAQ.TABLE("WIKI/PRICES",{"date","close"},"ticker","AAPL")` |
|
|
50
|
+
| YCharts | `=YCD()`, `=YCDS()` | `AAPL` or `M:VFIAX` | `=YCD("AAPL","pe_ratio")` |
|
|
51
|
+
| QuickFS | `=QFS()` | `AAPL:US` | `=QFS("AAPL:US","revenue","FY")` |
|
|
52
|
+
| Calcbench | `=CalcbenchData()` | `AAPL` | `=CalcbenchData("Revenue","AAPL",2024,0)` |
|
|
53
|
+
| Visible Alpha | `=VAData()`, `=VAdetail()` | `AAPL` | `=VAData("AAPL","Y0","190","Consensus")` |
|
|
54
|
+
| Moody's Analytics | `=MADS()`, `=MADR()` | `AAPL` or CUSIP | `=MADS("AAPL","EDF1Y")` |
|
|
55
|
+
| ICE | `=RTD("ice.xl",...)` | `UST10Y`, `BRN 1!-ICE` | `=RTD("ice.xl",,"*Q","UST10Y","Yield")` |
|
|
56
|
+
|
|
57
|
+
### Accounting / ERP
|
|
58
|
+
|
|
59
|
+
| Provider | Formula | Ticker Format | Example |
|
|
60
|
+
|----------|---------|---------------|---------|
|
|
61
|
+
| QuickBooks | `=CDATAQUERY()` | SQL tables | `=CDATAQUERY("SELECT * FROM Invoices WHERE Balance > 0")` |
|
|
62
|
+
| Xero | `=SCOTT.GL()`, `=SCOTT.INVOICES()` | Account codes | `=SCOTT.GL("200","Balance")` |
|
|
63
|
+
| Sage Intacct | `=CDATAQUERY()` | SQL tables | `=CDATAQUERY("SELECT VendorID, TotalDue FROM Vendor")` |
|
|
64
|
+
| Dynamics 365 Finance | `=CDATAQUERY()` | OData entities | `=CDATAQUERY("SELECT VendorAccountNumber, VendorOrganizationName FROM Vendors")` |
|
|
65
|
+
|
|
66
|
+
## Workflow
|
|
67
|
+
|
|
68
|
+
1. **Identify provider** - User must explicitly mention which provider to use
|
|
69
|
+
2. **Read the provider's markdown file** - Each has complete syntax reference
|
|
70
|
+
3. **Write formulas** - Use cell references for tickers when possible
|
|
71
|
+
4. **Verify outputs** - Gut check values make intuitive sense
|
|
72
|
+
5. **Handle errors** - Check syntax if formulas return errors
|
|
73
|
+
|
|
74
|
+
## Common Data Points by Provider
|
|
75
|
+
|
|
76
|
+
### Bloomberg
|
|
77
|
+
- Price: `PX_LAST`, `PX_VOLUME`, `CUR_MKT_CAP`
|
|
78
|
+
- Fundamentals: `SALES_REV_TURN`, `EBITDA`, `NET_INCOME`, `IS_EPS`
|
|
79
|
+
- Ratios: `PE_RATIO`, `EV_TO_T12M_EBITDA`, `RETURN_COM_EQY`
|
|
80
|
+
|
|
81
|
+
### FactSet
|
|
82
|
+
- Pricing: `FG_PRICE`, `FG_MKT_VAL`
|
|
83
|
+
- Fundamentals: `FF_SALES`, `FF_EBITDA`, `FF_NET_INCOME`, `FF_EPS`
|
|
84
|
+
- Estimates: `FE_ESTIMATE(EPS,MEAN,ANN,+1)`
|
|
85
|
+
|
|
86
|
+
### Capital IQ
|
|
87
|
+
- Core: `IQ_TOTAL_REV`, `IQ_EBITDA`, `IQ_NI`, `IQ_DILUT_EPS_INCL`
|
|
88
|
+
- Market: `IQ_MARKETCAP`, `IQ_TEV`
|
|
89
|
+
- Periods: `IQ_FY`, `IQ_LTM`, or numeric codes (1000=FY, 999=prior FY)
|
|
90
|
+
|
|
91
|
+
### Refinitiv
|
|
92
|
+
- Real-time: `CF_LAST`, `CF_BID`, `CF_ASK`
|
|
93
|
+
- Historical: `TR.Revenue`, `TR.EBITDA`, `TR.NetIncome`
|
|
94
|
+
- Datastream: `P` price, `MV` market value, `WC01001` revenue
|
|
95
|
+
|
|
96
|
+
### Morningstar
|
|
97
|
+
- Fund: `MorningstarRating`, `ExpenseRatio`, `NAV_daily`
|
|
98
|
+
- Returns: `ReturnY1`, `ReturnY3`, `ReturnY5`
|
|
99
|
+
- Stock: `FairValue`, `EconomicMoat`
|
|
100
|
+
|
|
101
|
+
### PitchBook
|
|
102
|
+
- Valuation: `PostMoneyValuation`, `PreMoneyValuation`
|
|
103
|
+
- Funding: `TotalFundingRaised`, `LastFundingAmount`, `LastFundingType`
|
|
104
|
+
|
|
105
|
+
### AlphaSense (Tegus)
|
|
106
|
+
- Income: `MO_RIS_REV`, `MO_RIS_EBITDA`, `MO_RIS_NET_INC`
|
|
107
|
+
- Balance: `MO_RBS_TOTAL_ASSETS`, `MO_RBS_TOTAL_DEBT`
|
|
108
|
+
- Cash Flow: `MO_RCF_CFO`, `MO_RCF_FCF`
|
|
109
|
+
|
|
110
|
+
## Best Practices
|
|
111
|
+
|
|
112
|
+
1. **Always verify** - Formulas should not return errors
|
|
113
|
+
2. **Gut check values** - Numbers should make intuitive sense
|
|
114
|
+
3. **Use cell references** - For tickers and periods, not hardcoded values
|
|
115
|
+
4. **Be aware of limits** - Bloomberg and others have monthly download caps
|
|
116
|
+
5. **Check units** - Know if values are in thousands, millions, or actual
|
|
117
|
+
|
|
118
|
+
## Period Notation Summary
|
|
119
|
+
|
|
120
|
+
| Provider | Current FY | Prior FY | LTM | Quarter |
|
|
121
|
+
|----------|------------|----------|-----|---------|
|
|
122
|
+
| Bloomberg | `[FY0]` | `[FY-1]` | `[TTM]` | `[FQ0]` |
|
|
123
|
+
| FactSet | `ANN,0Y` | `ANN,-1Y` | `LTM` | `QTR,0Q` |
|
|
124
|
+
| Capital IQ | `IQ_FY` or `1000` | `999` | `IQ_LTM` | `IQ_FQ` or `500` |
|
|
125
|
+
| Refinitiv | `Period=FY0` | `Period=FY-1` | `Period=LTM` | `Period=FQ0` |
|
|
126
|
+
| AlphaSense | `FY-2023` | `FY-2022` | `LTM` | `Q1-2024` |
|
|
127
|
+
| QuickFS | `FY` | `FY-1` | `TTM` | `FQ` |
|
|
128
|
+
| Calcbench | `2024, 0` | `2023, 0` | - | `2024, 1-4` |
|
|
129
|
+
| Visible Alpha | `Y0` | `Y-1` | - | `Q0` |
|
|
130
|
+
|
|
131
|
+
## Error Handling
|
|
132
|
+
|
|
133
|
+
If formulas return errors:
|
|
134
|
+
1. Check ticker format matches provider's expected format
|
|
135
|
+
2. Verify field/variable name spelling
|
|
136
|
+
3. Check period syntax
|
|
137
|
+
4. Try refreshing the add-in
|
|
138
|
+
5. Confirm data coverage for that security
|
|
@@ -0,0 +1,457 @@
|
|
|
1
|
+
**AlphaSense Excel Add-In Guide**
|
|
2
|
+
|
|
3
|
+
**Intro**
|
|
4
|
+
You have full access to AlphaSense through the Excel Add-In, but you should only pull AlphaSense data **when the user explicitly tells you to**. AlphaSense provides AI-powered research across SEC filings, earnings transcripts, expert call transcripts, broker research, news, and financial data. The Excel Add-In enables pulling financial data, building models, and accessing pre-built industry comps.
|
|
5
|
+
|
|
6
|
+
**IMPORTANT:** Before completing a task involving AlphaSense, you must verify:
|
|
7
|
+
1. Your AlphaSense formulas do not return errors.
|
|
8
|
+
2. All values should seem reasonable and make intuitive sense based on your general knowledge.
|
|
9
|
+
3. Use cell references for tickers and parameters when possible as opposed to hardcoded values.
|
|
10
|
+
|
|
11
|
+
You should essentially gut check every value that shows up. If there are any errors or the values seem wrong, you likely wrote the formula syntax incorrectly. Please correct the formula until it outputs the proper value.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
**AlphaSense Platform Overview**
|
|
16
|
+
|
|
17
|
+
AlphaSense provides multiple data sources:
|
|
18
|
+
|
|
19
|
+
| Content Type | Description |
|
|
20
|
+
|--------------|-------------|
|
|
21
|
+
| SEC Filings | 10-K, 10-Q, 8-K, proxy statements |
|
|
22
|
+
| Global Filings | International regulatory filings |
|
|
23
|
+
| Earnings Transcripts | Quarterly call transcripts |
|
|
24
|
+
| Expert Transcripts | 200,000+ expert interviews |
|
|
25
|
+
| Broker Research | Equity research reports |
|
|
26
|
+
| News | Press releases, trade journals |
|
|
27
|
+
| ESG Reports | Sustainability reports |
|
|
28
|
+
| Financial Data | Fundamentals, estimates, KPIs |
|
|
29
|
+
| Canalyst Models | 4,000+ pre-built financial models |
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## PART 1: EXCEL ADD-IN FEATURES
|
|
34
|
+
|
|
35
|
+
**1. Key Capabilities**
|
|
36
|
+
|
|
37
|
+
| Feature | Description |
|
|
38
|
+
|---------|-------------|
|
|
39
|
+
| Custom Formulas | Pull specific data points |
|
|
40
|
+
| Templates | Pre-built analysis templates |
|
|
41
|
+
| Industry Comps | 85+ pre-built comp sheets |
|
|
42
|
+
| Canalyst Models | Comprehensive financial models |
|
|
43
|
+
| Real-Time Updates | Automatic data refresh |
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
**2. Installation**
|
|
48
|
+
|
|
49
|
+
**Via Microsoft AppSource:**
|
|
50
|
+
1. Go to appsource.microsoft.com
|
|
51
|
+
2. Search "AlphaSense"
|
|
52
|
+
3. Click "Get it now"
|
|
53
|
+
4. Follow on-screen instructions
|
|
54
|
+
|
|
55
|
+
**Via Excel:**
|
|
56
|
+
1. Go to Home tab
|
|
57
|
+
2. Click "Add-ins" icon
|
|
58
|
+
3. Search "AlphaSense"
|
|
59
|
+
4. Click "Add" to install
|
|
60
|
+
|
|
61
|
+
**Requirements:**
|
|
62
|
+
- AlphaSense subscription
|
|
63
|
+
- Microsoft Excel (Windows or macOS)
|
|
64
|
+
- Internet connection
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## PART 2: TEGUS FORMULAS (FINANCIAL DATA)
|
|
69
|
+
|
|
70
|
+
Tegus Formulas provide Excel functions to pull company data, estimates, and market data.
|
|
71
|
+
|
|
72
|
+
**1. TEGUS.CD - Company Data Formula**
|
|
73
|
+
|
|
74
|
+
Returns fundamental data points for a company.
|
|
75
|
+
|
|
76
|
+
**Syntax:**
|
|
77
|
+
=TEGUS.CD(Ticker, Row_Name, Period, [Calculation], [Scale])
|
|
78
|
+
|
|
79
|
+
**Parameters:**
|
|
80
|
+
| Parameter | Description | Required |
|
|
81
|
+
|-----------|-------------|----------|
|
|
82
|
+
| Ticker | Company ticker in Tegus format | Yes |
|
|
83
|
+
| Row_Name | Data point identifier | Yes |
|
|
84
|
+
| Period | Time period | Yes |
|
|
85
|
+
| Calculation | LTM, NTM, etc. | Optional |
|
|
86
|
+
| Scale | Units scale factor | Optional |
|
|
87
|
+
|
|
88
|
+
**Ticker Format:**
|
|
89
|
+
{TICKER}_{COUNTRY_CODE}
|
|
90
|
+
|
|
91
|
+
| Country | Code | Example |
|
|
92
|
+
|---------|------|---------|
|
|
93
|
+
| United States | US | AAPL_US |
|
|
94
|
+
| United Kingdom | GB | VOD_GB |
|
|
95
|
+
| Canada | CA | RY_CA |
|
|
96
|
+
| Germany | DE | SAP_DE |
|
|
97
|
+
| Japan | JP | 7203_JP |
|
|
98
|
+
| France | FR | MC_FR |
|
|
99
|
+
|
|
100
|
+
**Examples:**
|
|
101
|
+
=TEGUS.CD("AAPL_US", "MO_RIS_REV", "Q1-2024")
|
|
102
|
+
→ Apple's Q1 2024 revenue.
|
|
103
|
+
|
|
104
|
+
=TEGUS.CD("MSFT_US", "MO_RIS_EBITDA", "FY-2023")
|
|
105
|
+
→ Microsoft's FY2023 EBITDA.
|
|
106
|
+
|
|
107
|
+
=TEGUS.CD(A1, "MO_RIS_NET_INC", B1)
|
|
108
|
+
→ Using cell references for ticker and period.
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
**2. Row Names (Data Points)**
|
|
113
|
+
|
|
114
|
+
**Common Row Names (MO_ prefix):**
|
|
115
|
+
|
|
116
|
+
**Income Statement:**
|
|
117
|
+
| Row Name | Description |
|
|
118
|
+
|----------|-------------|
|
|
119
|
+
| MO_RIS_REV | Total Revenue |
|
|
120
|
+
| MO_RIS_COGS | Cost of Goods Sold |
|
|
121
|
+
| MO_RIS_GROSS_PROFIT | Gross Profit |
|
|
122
|
+
| MO_RIS_OPEX | Operating Expenses |
|
|
123
|
+
| MO_RIS_SGA | SG&A Expenses |
|
|
124
|
+
| MO_RIS_RD | R&D Expenses |
|
|
125
|
+
| MO_RIS_OPER_INC | Operating Income |
|
|
126
|
+
| MO_RIS_EBIT | EBIT |
|
|
127
|
+
| MO_RIS_EBITDA | EBITDA |
|
|
128
|
+
| MO_RIS_INT_EXP | Interest Expense |
|
|
129
|
+
| MO_RIS_PRETAX_INC | Pretax Income |
|
|
130
|
+
| MO_RIS_TAX | Tax Expense |
|
|
131
|
+
| MO_RIS_NET_INC | Net Income |
|
|
132
|
+
| MO_RIS_EPS_BASIC | Basic EPS |
|
|
133
|
+
| MO_RIS_EPS_DIL | Diluted EPS |
|
|
134
|
+
| MO_RIS_SHARES_BASIC | Basic Shares |
|
|
135
|
+
| MO_RIS_SHARES_DIL | Diluted Shares |
|
|
136
|
+
|
|
137
|
+
**Balance Sheet:**
|
|
138
|
+
| Row Name | Description |
|
|
139
|
+
|----------|-------------|
|
|
140
|
+
| MO_RBS_CASH | Cash & Equivalents |
|
|
141
|
+
| MO_RBS_ST_INVEST | Short-term Investments |
|
|
142
|
+
| MO_RBS_AR | Accounts Receivable |
|
|
143
|
+
| MO_RBS_INVENTORY | Inventory |
|
|
144
|
+
| MO_RBS_CURR_ASSETS | Current Assets |
|
|
145
|
+
| MO_RBS_PPE | Net PP&E |
|
|
146
|
+
| MO_RBS_GOODWILL | Goodwill |
|
|
147
|
+
| MO_RBS_INTANGIBLES | Intangible Assets |
|
|
148
|
+
| MO_RBS_TOTAL_ASSETS | Total Assets |
|
|
149
|
+
| MO_RBS_AP | Accounts Payable |
|
|
150
|
+
| MO_RBS_ST_DEBT | Short-term Debt |
|
|
151
|
+
| MO_RBS_CURR_LIAB | Current Liabilities |
|
|
152
|
+
| MO_RBS_LT_DEBT | Long-term Debt |
|
|
153
|
+
| MO_RBS_TOTAL_DEBT | Total Debt |
|
|
154
|
+
| MO_RBS_TOTAL_LIAB | Total Liabilities |
|
|
155
|
+
| MO_RBS_TOTAL_EQUITY | Total Equity |
|
|
156
|
+
|
|
157
|
+
**Cash Flow Statement:**
|
|
158
|
+
| Row Name | Description |
|
|
159
|
+
|----------|-------------|
|
|
160
|
+
| MO_RCF_CFO | Cash from Operations |
|
|
161
|
+
| MO_RCF_DA | Depreciation & Amort. |
|
|
162
|
+
| MO_RCF_CAPEX | Capital Expenditures |
|
|
163
|
+
| MO_RCF_CFI | Cash from Investing |
|
|
164
|
+
| MO_RCF_CFF | Cash from Financing |
|
|
165
|
+
| MO_RCF_FCF | Free Cash Flow |
|
|
166
|
+
| MO_RCF_DIV | Dividends Paid |
|
|
167
|
+
| MO_RCF_BUYBACK | Share Repurchases |
|
|
168
|
+
|
|
169
|
+
**Key Metrics:**
|
|
170
|
+
| Row Name | Description |
|
|
171
|
+
|----------|-------------|
|
|
172
|
+
| MO_GROSS_MARGIN | Gross Margin % |
|
|
173
|
+
| MO_OPER_MARGIN | Operating Margin % |
|
|
174
|
+
| MO_EBITDA_MARGIN | EBITDA Margin % |
|
|
175
|
+
| MO_NET_MARGIN | Net Margin % |
|
|
176
|
+
| MO_ROE | Return on Equity |
|
|
177
|
+
| MO_ROA | Return on Assets |
|
|
178
|
+
| MO_ROIC | Return on Invested Capital |
|
|
179
|
+
|
|
180
|
+
**Company-Specific Row Names (z_ prefix):**
|
|
181
|
+
For company-specific KPIs, use z_ prefix with the exact metric name as shown in Tegus models.
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
**3. Period Formats**
|
|
186
|
+
|
|
187
|
+
| Format | Description | Example |
|
|
188
|
+
|--------|-------------|---------|
|
|
189
|
+
| Q1-2024 | Fiscal quarter | Q1-2024 |
|
|
190
|
+
| Q2-2023 | Fiscal quarter | Q2-2023 |
|
|
191
|
+
| FY-2023 | Full fiscal year | FY-2023 |
|
|
192
|
+
| H1-2024 | Half year | H1-2024 |
|
|
193
|
+
| LTM | Last twelve months | LTM |
|
|
194
|
+
| NTM | Next twelve months | NTM |
|
|
195
|
+
|
|
196
|
+
**Calculation Parameters:**
|
|
197
|
+
| Parameter | Description |
|
|
198
|
+
|-----------|-------------|
|
|
199
|
+
| LTM | Last twelve months (rolling) |
|
|
200
|
+
| NTM | Next twelve months (forward) |
|
|
201
|
+
| YoY | Year-over-year growth |
|
|
202
|
+
| QoQ | Quarter-over-quarter growth |
|
|
203
|
+
|
|
204
|
+
---
|
|
205
|
+
|
|
206
|
+
**4. TEGUS.FX - FX Formula**
|
|
207
|
+
|
|
208
|
+
Returns foreign exchange rates.
|
|
209
|
+
|
|
210
|
+
**Syntax:**
|
|
211
|
+
=TEGUS.FX(Base_Currency, Quote_Currency, [End_Date])
|
|
212
|
+
|
|
213
|
+
**Parameters:**
|
|
214
|
+
| Parameter | Description | Required |
|
|
215
|
+
|-----------|-------------|----------|
|
|
216
|
+
| Base_Currency | 3-letter currency code | Yes |
|
|
217
|
+
| Quote_Currency | 3-letter currency code | Yes |
|
|
218
|
+
| End_Date | Date for rate | Optional |
|
|
219
|
+
|
|
220
|
+
**Examples:**
|
|
221
|
+
=TEGUS.FX("EUR", "USD")
|
|
222
|
+
→ Current EUR/USD exchange rate.
|
|
223
|
+
|
|
224
|
+
=TEGUS.FX("GBP", "USD", "12/31/2023")
|
|
225
|
+
→ GBP/USD rate as of Dec 31, 2023.
|
|
226
|
+
|
|
227
|
+
**Common Currency Codes:**
|
|
228
|
+
| Code | Currency |
|
|
229
|
+
|------|----------|
|
|
230
|
+
| USD | US Dollar |
|
|
231
|
+
| EUR | Euro |
|
|
232
|
+
| GBP | British Pound |
|
|
233
|
+
| JPY | Japanese Yen |
|
|
234
|
+
| CAD | Canadian Dollar |
|
|
235
|
+
| AUD | Australian Dollar |
|
|
236
|
+
| CHF | Swiss Franc |
|
|
237
|
+
| CNY | Chinese Yuan |
|
|
238
|
+
|
|
239
|
+
---
|
|
240
|
+
|
|
241
|
+
**5. TEGUS.PRICE - Price Formula**
|
|
242
|
+
|
|
243
|
+
Returns stock price data.
|
|
244
|
+
|
|
245
|
+
**Syntax:**
|
|
246
|
+
=TEGUS.PRICE(Ticker, [Date])
|
|
247
|
+
|
|
248
|
+
**Examples:**
|
|
249
|
+
=TEGUS.PRICE("AAPL_US")
|
|
250
|
+
→ Apple's current stock price.
|
|
251
|
+
|
|
252
|
+
=TEGUS.PRICE("MSFT_US", "12/31/2023")
|
|
253
|
+
→ Microsoft's price on Dec 31, 2023.
|
|
254
|
+
|
|
255
|
+
---
|
|
256
|
+
|
|
257
|
+
## PART 3: INDUSTRY COMPS
|
|
258
|
+
|
|
259
|
+
**1. Pre-Built Comp Sheets**
|
|
260
|
+
|
|
261
|
+
AlphaSense provides 85+ pre-built industry comp sheets covering:
|
|
262
|
+
- Technology (Software, Hardware, Semiconductors)
|
|
263
|
+
- Healthcare (Pharma, Biotech, Med Devices)
|
|
264
|
+
- Consumer (Retail, Staples, Discretionary)
|
|
265
|
+
- Financial Services (Banks, Insurance, Asset Mgmt)
|
|
266
|
+
- Industrials (Aerospace, Machinery, Transport)
|
|
267
|
+
- Energy (Oil & Gas, Utilities, Renewables)
|
|
268
|
+
- And more...
|
|
269
|
+
|
|
270
|
+
---
|
|
271
|
+
|
|
272
|
+
**2. Using Industry Comps**
|
|
273
|
+
|
|
274
|
+
**Accessing:**
|
|
275
|
+
1. Open AlphaSense Excel Add-In
|
|
276
|
+
2. Navigate to Industry Comps
|
|
277
|
+
3. Select industry/sector
|
|
278
|
+
4. Download comp sheet
|
|
279
|
+
|
|
280
|
+
**Features:**
|
|
281
|
+
- Pre-populated with peer companies
|
|
282
|
+
- Key metrics and multiples
|
|
283
|
+
- Historical data
|
|
284
|
+
- Consensus estimates
|
|
285
|
+
- Pre-built charts
|
|
286
|
+
|
|
287
|
+
**Export Options:**
|
|
288
|
+
| Format | Use Case |
|
|
289
|
+
|--------|----------|
|
|
290
|
+
| Excel (.xlsx) | Full formatted workbook |
|
|
291
|
+
| CSV | Raw data for import |
|
|
292
|
+
|
|
293
|
+
---
|
|
294
|
+
|
|
295
|
+
## PART 4: CANALYST MODELS
|
|
296
|
+
|
|
297
|
+
**1. Overview**
|
|
298
|
+
|
|
299
|
+
Canalyst Models provide 4,000+ pre-built, detailed financial models that update automatically.
|
|
300
|
+
|
|
301
|
+
**Model Components:**
|
|
302
|
+
| Section | Contents |
|
|
303
|
+
|---------|----------|
|
|
304
|
+
| Income Statement | Detailed revenue, costs, margins |
|
|
305
|
+
| Balance Sheet | Assets, liabilities, equity |
|
|
306
|
+
| Cash Flow | Operating, investing, financing |
|
|
307
|
+
| KPI Sheet | Company-specific metrics |
|
|
308
|
+
| Segment Data | Business unit breakdowns |
|
|
309
|
+
| Valuation | DCF, comps, scenarios |
|
|
310
|
+
|
|
311
|
+
---
|
|
312
|
+
|
|
313
|
+
**2. Using Canalyst Models**
|
|
314
|
+
|
|
315
|
+
**Accessing:**
|
|
316
|
+
1. Search for company in AlphaSense
|
|
317
|
+
2. Navigate to Financial Data > Canalyst Models
|
|
318
|
+
3. Download model to Excel
|
|
319
|
+
|
|
320
|
+
**Updating:**
|
|
321
|
+
- Models refresh automatically
|
|
322
|
+
- Manual refresh via Add-In
|
|
323
|
+
- Data updated within 30 minutes of source update
|
|
324
|
+
|
|
325
|
+
---
|
|
326
|
+
|
|
327
|
+
## PART 5: SEMANTIC SEARCH (Platform Feature)
|
|
328
|
+
|
|
329
|
+
While not directly in Excel, AlphaSense's search powers the platform:
|
|
330
|
+
|
|
331
|
+
**1. Gen Search (AI-Powered)**
|
|
332
|
+
|
|
333
|
+
Natural language queries across 500M+ documents:
|
|
334
|
+
- SEC filings
|
|
335
|
+
- Earnings transcripts
|
|
336
|
+
- Expert transcripts
|
|
337
|
+
- Broker research
|
|
338
|
+
- News articles
|
|
339
|
+
|
|
340
|
+
**2. Search Features**
|
|
341
|
+
|
|
342
|
+
| Feature | Description |
|
|
343
|
+
|---------|-------------|
|
|
344
|
+
| Semantic Search | Understand meaning, not just keywords |
|
|
345
|
+
| Smart Synonyms | Find related terms automatically |
|
|
346
|
+
| Sentiment Analysis | Track tone changes |
|
|
347
|
+
| Table Search | Find data in tables |
|
|
348
|
+
| Document Comparison | Side-by-side analysis |
|
|
349
|
+
|
|
350
|
+
---
|
|
351
|
+
|
|
352
|
+
## PART 6: EXPERT TRANSCRIPTS
|
|
353
|
+
|
|
354
|
+
**1. Coverage**
|
|
355
|
+
|
|
356
|
+
- 200,000+ expert interview transcripts
|
|
357
|
+
- 18,000+ private companies covered
|
|
358
|
+
- Industry expert interviews
|
|
359
|
+
- Former employees, customers, competitors
|
|
360
|
+
|
|
361
|
+
**2. Accessing in Platform**
|
|
362
|
+
|
|
363
|
+
1. Search company or topic
|
|
364
|
+
2. Filter by "Expert Transcripts"
|
|
365
|
+
3. Read/export transcript
|
|
366
|
+
4. Use Smart Summaries for highlights
|
|
367
|
+
|
|
368
|
+
**3. Using for Research**
|
|
369
|
+
|
|
370
|
+
Expert transcripts provide:
|
|
371
|
+
- Private company insights
|
|
372
|
+
- Industry dynamics
|
|
373
|
+
- Competitive intelligence
|
|
374
|
+
- Channel checks
|
|
375
|
+
- Management perspectives
|
|
376
|
+
|
|
377
|
+
---
|
|
378
|
+
|
|
379
|
+
## PART 7: TEMPLATES
|
|
380
|
+
|
|
381
|
+
**1. Available Templates**
|
|
382
|
+
|
|
383
|
+
| Template | Use Case |
|
|
384
|
+
|----------|----------|
|
|
385
|
+
| Company Overview | Single company analysis |
|
|
386
|
+
| Comparable Analysis | Peer comparison |
|
|
387
|
+
| DCF Model | Valuation modeling |
|
|
388
|
+
| LBO Model | Leveraged buyout analysis |
|
|
389
|
+
| Revenue Build | Bottom-up revenue model |
|
|
390
|
+
| Earnings Model | Quarterly estimates |
|
|
391
|
+
|
|
392
|
+
---
|
|
393
|
+
|
|
394
|
+
**2. Using Templates**
|
|
395
|
+
|
|
396
|
+
1. Open AlphaSense Excel Add-In
|
|
397
|
+
2. Navigate to Templates
|
|
398
|
+
3. Select template type
|
|
399
|
+
4. Enter company ticker(s)
|
|
400
|
+
5. Data auto-populates
|
|
401
|
+
6. Customize as needed
|
|
402
|
+
|
|
403
|
+
---
|
|
404
|
+
|
|
405
|
+
## PART 8: FORMULA BEST PRACTICES
|
|
406
|
+
|
|
407
|
+
**1. Cell References**
|
|
408
|
+
|
|
409
|
+
Use cell references instead of hardcoding:
|
|
410
|
+
=TEGUS.CD(A1, B1, C1)
|
|
411
|
+
→ Ticker in A1, Row Name in B1, Period in C1
|
|
412
|
+
|
|
413
|
+
Benefits:
|
|
414
|
+
- Easier to update
|
|
415
|
+
- Build dynamic tables
|
|
416
|
+
- Avoid syntax errors
|
|
417
|
+
|
|
418
|
+
---
|
|
419
|
+
|
|
420
|
+
**2. Syntax Rules**
|
|
421
|
+
|
|
422
|
+
| Rule | Correct | Incorrect |
|
|
423
|
+
|------|---------|-----------|
|
|
424
|
+
| Text in quotes | "AAPL_US" | AAPL_US |
|
|
425
|
+
| Cell reference | A1 | "A1" |
|
|
426
|
+
| Period format | "Q1-2024" | Q1-2024 |
|
|
427
|
+
|
|
428
|
+
---
|
|
429
|
+
|
|
430
|
+
**3. Troubleshooting**
|
|
431
|
+
|
|
432
|
+
| Error | Cause | Solution |
|
|
433
|
+
|-------|-------|----------|
|
|
434
|
+
| #VALUE! | Invalid ticker | Check ticker format |
|
|
435
|
+
| #N/A | Data not available | Verify coverage |
|
|
436
|
+
| #REF! | Invalid row name | Check row name spelling |
|
|
437
|
+
| No data | Wrong period | Verify period format |
|
|
438
|
+
|
|
439
|
+
---
|
|
440
|
+
|
|
441
|
+
**Final Checklist:**
|
|
442
|
+
- Is my ticker in correct format? (TICKER_COUNTRY)
|
|
443
|
+
- Is the row name spelled correctly? (MO_ or z_ prefix)
|
|
444
|
+
- Is the period in correct format? (Q1-2024, FY-2023)
|
|
445
|
+
- Do I need LTM, NTM, or specific period?
|
|
446
|
+
- Is the company covered in Tegus models?
|
|
447
|
+
- Have I checked the data looks reasonable?
|
|
448
|
+
|
|
449
|
+
---
|
|
450
|
+
|
|
451
|
+
**Additional Resources:**
|
|
452
|
+
- AlphaSense Platform: alpha-sense.com
|
|
453
|
+
- Help Center: help.alpha-sense.com
|
|
454
|
+
- Excel Add-In: Search "AlphaSense" in Microsoft AppSource
|
|
455
|
+
- Tegus Formulas: help.alpha-sense.com/hc/en-us/articles/42150553920659
|
|
456
|
+
- Industry Comps: Access via Excel Add-In
|
|
457
|
+
- Canalyst Models: Access via AlphaSense platform
|