metabase-skill 1.0.0__tar.gz

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.
Files changed (532) hide show
  1. metabase_skill-1.0.0/.gitignore +9 -0
  2. metabase_skill-1.0.0/CREDITS.md +26 -0
  3. metabase_skill-1.0.0/LICENSE +21 -0
  4. metabase_skill-1.0.0/NOTICE.md +30 -0
  5. metabase_skill-1.0.0/PKG-INFO +162 -0
  6. metabase_skill-1.0.0/README.md +136 -0
  7. metabase_skill-1.0.0/SKILL.md +63 -0
  8. metabase_skill-1.0.0/graph/concepts.json +259 -0
  9. metabase_skill-1.0.0/install.sh +12 -0
  10. metabase_skill-1.0.0/pyproject.toml +68 -0
  11. metabase_skill-1.0.0/references/ai-api.md +205 -0
  12. metabase_skill-1.0.0/references/dashboards-content.md +163 -0
  13. metabase_skill-1.0.0/references/databases.md +221 -0
  14. metabase_skill-1.0.0/references/embedding.md +173 -0
  15. metabase_skill-1.0.0/references/install-ops-cloud.md +200 -0
  16. metabase_skill-1.0.0/references/modeling-studio.md +140 -0
  17. metabase_skill-1.0.0/references/people-permissions.md +201 -0
  18. metabase_skill-1.0.0/references/questions.md +225 -0
  19. metabase_skill-1.0.0/references/troubleshooting.md +203 -0
  20. metabase_skill-1.0.0/scripts/install.py +94 -0
  21. metabase_skill-1.0.0/scripts/lookup.py +427 -0
  22. metabase_skill-1.0.0/source/CONTRIBUTING.md +110 -0
  23. metabase_skill-1.0.0/source/README.md +336 -0
  24. metabase_skill-1.0.0/source/actions/basic.md +73 -0
  25. metabase_skill-1.0.0/source/actions/custom.md +158 -0
  26. metabase_skill-1.0.0/source/actions/introduction.md +73 -0
  27. metabase_skill-1.0.0/source/actions/start.md +27 -0
  28. metabase_skill-1.0.0/source/ai/agent-api.md +124 -0
  29. metabase_skill-1.0.0/source/ai/agent-driven-development.md +153 -0
  30. metabase_skill-1.0.0/source/ai/customization.md +42 -0
  31. metabase_skill-1.0.0/source/ai/mcp.md +209 -0
  32. metabase_skill-1.0.0/source/ai/metabot-slack.md +80 -0
  33. metabase_skill-1.0.0/source/ai/metabot.md +157 -0
  34. metabase_skill-1.0.0/source/ai/overview.md +61 -0
  35. metabase_skill-1.0.0/source/ai/privacy.md +42 -0
  36. metabase_skill-1.0.0/source/ai/providers.md +287 -0
  37. metabase_skill-1.0.0/source/ai/settings.md +249 -0
  38. metabase_skill-1.0.0/source/ai/start.md +49 -0
  39. metabase_skill-1.0.0/source/ai/system-prompts.md +41 -0
  40. metabase_skill-1.0.0/source/ai/usage-auditing.md +148 -0
  41. metabase_skill-1.0.0/source/ai/usage-controls.md +80 -0
  42. metabase_skill-1.0.0/source/cloud/accounts-and-billing.md +145 -0
  43. metabase_skill-1.0.0/source/cloud/change-region.md +51 -0
  44. metabase_skill-1.0.0/source/cloud/cloud-vs-self-hosting.md +52 -0
  45. metabase_skill-1.0.0/source/cloud/custom-domain.md +70 -0
  46. metabase_skill-1.0.0/source/cloud/google-sheets.md +103 -0
  47. metabase_skill-1.0.0/source/cloud/ip-addresses-to-whitelist.md +61 -0
  48. metabase_skill-1.0.0/source/cloud/limitations.md +39 -0
  49. metabase_skill-1.0.0/source/cloud/migrate/cloud-to-self-hosted.md +63 -0
  50. metabase_skill-1.0.0/source/cloud/migrate/guide-pre-50.md +95 -0
  51. metabase_skill-1.0.0/source/cloud/migrate/guide.md +96 -0
  52. metabase_skill-1.0.0/source/cloud/migrate/heroku.md +59 -0
  53. metabase_skill-1.0.0/source/cloud/start.md +51 -0
  54. metabase_skill-1.0.0/source/cloud/storage.md +89 -0
  55. metabase_skill-1.0.0/source/configuring-metabase/appearance.md +193 -0
  56. metabase_skill-1.0.0/source/configuring-metabase/caching.md +181 -0
  57. metabase_skill-1.0.0/source/configuring-metabase/config-file.md +288 -0
  58. metabase_skill-1.0.0/source/configuring-metabase/config-template.md +387 -0
  59. metabase_skill-1.0.0/source/configuring-metabase/custom-maps.md +85 -0
  60. metabase_skill-1.0.0/source/configuring-metabase/customizing-jetty-webserver.md +39 -0
  61. metabase_skill-1.0.0/source/configuring-metabase/email.md +200 -0
  62. metabase_skill-1.0.0/source/configuring-metabase/environment-variables.md +3536 -0
  63. metabase_skill-1.0.0/source/configuring-metabase/fonts.md +149 -0
  64. metabase_skill-1.0.0/source/configuring-metabase/localization.md +187 -0
  65. metabase_skill-1.0.0/source/configuring-metabase/setting-up-metabase.md +97 -0
  66. metabase_skill-1.0.0/source/configuring-metabase/settings.md +104 -0
  67. metabase_skill-1.0.0/source/configuring-metabase/slack.md +146 -0
  68. metabase_skill-1.0.0/source/configuring-metabase/start.md +71 -0
  69. metabase_skill-1.0.0/source/configuring-metabase/timezones.md +50 -0
  70. metabase_skill-1.0.0/source/configuring-metabase/webhooks.md +125 -0
  71. metabase_skill-1.0.0/source/dashboards/actions.md +62 -0
  72. metabase_skill-1.0.0/source/dashboards/dashboard-markdown.md +91 -0
  73. metabase_skill-1.0.0/source/dashboards/filters.md +409 -0
  74. metabase_skill-1.0.0/source/dashboards/interactive.md +133 -0
  75. metabase_skill-1.0.0/source/dashboards/introduction.md +388 -0
  76. metabase_skill-1.0.0/source/dashboards/linked-filters.md +65 -0
  77. metabase_skill-1.0.0/source/dashboards/markdown.md +151 -0
  78. metabase_skill-1.0.0/source/dashboards/multiple-series.md +98 -0
  79. metabase_skill-1.0.0/source/dashboards/start.md +33 -0
  80. metabase_skill-1.0.0/source/dashboards/subscriptions.md +170 -0
  81. metabase_skill-1.0.0/source/data-modeling/editable-tables.md +97 -0
  82. metabase_skill-1.0.0/source/data-modeling/formatting.md +190 -0
  83. metabase_skill-1.0.0/source/data-modeling/json-unfolding.md +82 -0
  84. metabase_skill-1.0.0/source/data-modeling/legacy-metrics.md +16 -0
  85. metabase_skill-1.0.0/source/data-modeling/metadata-editing.md +224 -0
  86. metabase_skill-1.0.0/source/data-modeling/metrics.md +207 -0
  87. metabase_skill-1.0.0/source/data-modeling/model-persistence.md +85 -0
  88. metabase_skill-1.0.0/source/data-modeling/models.md +239 -0
  89. metabase_skill-1.0.0/source/data-modeling/segments.md +50 -0
  90. metabase_skill-1.0.0/source/data-modeling/semantic-types.md +186 -0
  91. metabase_skill-1.0.0/source/data-modeling/start.md +41 -0
  92. metabase_skill-1.0.0/source/data-studio/dependencies/graph.md +85 -0
  93. metabase_skill-1.0.0/source/data-studio/dependencies/replace-data-sources.md +143 -0
  94. metabase_skill-1.0.0/source/data-studio/library.md +213 -0
  95. metabase_skill-1.0.0/source/data-studio/managing-tables.md +128 -0
  96. metabase_skill-1.0.0/source/data-studio/measures.md +104 -0
  97. metabase_skill-1.0.0/source/data-studio/overview.md +41 -0
  98. metabase_skill-1.0.0/source/data-studio/schema-viewer.md +61 -0
  99. metabase_skill-1.0.0/source/data-studio/segments.md +87 -0
  100. metabase_skill-1.0.0/source/data-studio/transforms/addons.md +106 -0
  101. metabase_skill-1.0.0/source/data-studio/transforms/jobs-and-runs.md +139 -0
  102. metabase_skill-1.0.0/source/data-studio/transforms/python-runner.md +203 -0
  103. metabase_skill-1.0.0/source/data-studio/transforms/python-transforms.md +133 -0
  104. metabase_skill-1.0.0/source/data-studio/transforms/query-transforms.md +191 -0
  105. metabase_skill-1.0.0/source/data-studio/transforms/transform-inspector.md +65 -0
  106. metabase_skill-1.0.0/source/data-studio/transforms/transforms-overview.md +306 -0
  107. metabase_skill-1.0.0/source/data-studio/workspaces.md +115 -0
  108. metabase_skill-1.0.0/source/databases/connecting.md +88 -0
  109. metabase_skill-1.0.0/source/databases/connections/athena.md +237 -0
  110. metabase_skill-1.0.0/source/databases/connections/aws-rds.md +90 -0
  111. metabase_skill-1.0.0/source/databases/connections/bigquery.md +189 -0
  112. metabase_skill-1.0.0/source/databases/connections/clickhouse.md +114 -0
  113. metabase_skill-1.0.0/source/databases/connections/databricks.md +129 -0
  114. metabase_skill-1.0.0/source/databases/connections/druid.md +84 -0
  115. metabase_skill-1.0.0/source/databases/connections/mariadb.md +124 -0
  116. metabase_skill-1.0.0/source/databases/connections/mongodb.md +149 -0
  117. metabase_skill-1.0.0/source/databases/connections/mysql.md +230 -0
  118. metabase_skill-1.0.0/source/databases/connections/oracle.md +147 -0
  119. metabase_skill-1.0.0/source/databases/connections/postgresql.md +228 -0
  120. metabase_skill-1.0.0/source/databases/connections/presto.md +116 -0
  121. metabase_skill-1.0.0/source/databases/connections/redshift.md +130 -0
  122. metabase_skill-1.0.0/source/databases/connections/snowflake.md +163 -0
  123. metabase_skill-1.0.0/source/databases/connections/sparksql.md +93 -0
  124. metabase_skill-1.0.0/source/databases/connections/sql-server.md +120 -0
  125. metabase_skill-1.0.0/source/databases/connections/sqlite.md +83 -0
  126. metabase_skill-1.0.0/source/databases/connections/starburst.md +110 -0
  127. metabase_skill-1.0.0/source/databases/connections/vertica.md +54 -0
  128. metabase_skill-1.0.0/source/databases/danger-zone.md +30 -0
  129. metabase_skill-1.0.0/source/databases/encrypting-details-at-rest.md +73 -0
  130. metabase_skill-1.0.0/source/databases/ssh-tunnel.md +96 -0
  131. metabase_skill-1.0.0/source/databases/ssl-certificates.md +96 -0
  132. metabase_skill-1.0.0/source/databases/start.md +35 -0
  133. metabase_skill-1.0.0/source/databases/sync-scan.md +226 -0
  134. metabase_skill-1.0.0/source/databases/uploads.md +76 -0
  135. metabase_skill-1.0.0/source/databases/users-roles-privileges.md +234 -0
  136. metabase_skill-1.0.0/source/databases/writable-connection.md +62 -0
  137. metabase_skill-1.0.0/source/developers-guide/api-changelog.md +219 -0
  138. metabase_skill-1.0.0/source/developers-guide/build.md +174 -0
  139. metabase_skill-1.0.0/source/developers-guide/clojure.md +9 -0
  140. metabase_skill-1.0.0/source/developers-guide/code-reviews.md +75 -0
  141. metabase_skill-1.0.0/source/developers-guide/community-drivers.md +57 -0
  142. metabase_skill-1.0.0/source/developers-guide/custom-visualizations.md +459 -0
  143. metabase_skill-1.0.0/source/developers-guide/dev-branch-docker.md +57 -0
  144. metabase_skill-1.0.0/source/developers-guide/devenv.md +486 -0
  145. metabase_skill-1.0.0/source/developers-guide/docs.md +43 -0
  146. metabase_skill-1.0.0/source/developers-guide/driver-changelog.md +1303 -0
  147. metabase_skill-1.0.0/source/developers-guide/drivers/basics.md +81 -0
  148. metabase_skill-1.0.0/source/developers-guide/drivers/driver-tests.md +238 -0
  149. metabase_skill-1.0.0/source/developers-guide/drivers/multimethods.md +141 -0
  150. metabase_skill-1.0.0/source/developers-guide/drivers/plugins.md +224 -0
  151. metabase_skill-1.0.0/source/developers-guide/drivers/start.md +39 -0
  152. metabase_skill-1.0.0/source/developers-guide/e2e-tests.md +292 -0
  153. metabase_skill-1.0.0/source/developers-guide/emacs.md +17 -0
  154. metabase_skill-1.0.0/source/developers-guide/frontend.md +265 -0
  155. metabase_skill-1.0.0/source/developers-guide/internationalization.md +80 -0
  156. metabase_skill-1.0.0/source/developers-guide/mage.md +30 -0
  157. metabase_skill-1.0.0/source/developers-guide/mbql-library-changelog.md +31 -0
  158. metabase_skill-1.0.0/source/developers-guide/security-token-scanner.md +42 -0
  159. metabase_skill-1.0.0/source/developers-guide/start.md +56 -0
  160. metabase_skill-1.0.0/source/developers-guide/versioning.md +69 -0
  161. metabase_skill-1.0.0/source/developers-guide/visual-studio-code.md +64 -0
  162. metabase_skill-1.0.0/source/developers-guide/visual-tests.md +33 -0
  163. metabase_skill-1.0.0/source/documents/introduction.md +198 -0
  164. metabase_skill-1.0.0/source/documents/start.md +11 -0
  165. metabase_skill-1.0.0/source/embedding/ai-agent-resources.md +47 -0
  166. metabase_skill-1.0.0/source/embedding/ai-chat.md +204 -0
  167. metabase_skill-1.0.0/source/embedding/appearance.md +382 -0
  168. metabase_skill-1.0.0/source/embedding/authentication.md +314 -0
  169. metabase_skill-1.0.0/source/embedding/browser-reference.md +49 -0
  170. metabase_skill-1.0.0/source/embedding/browser.md +145 -0
  171. metabase_skill-1.0.0/source/embedding/chart.md +350 -0
  172. metabase_skill-1.0.0/source/embedding/components.md +61 -0
  173. metabase_skill-1.0.0/source/embedding/custom-visualizations.md +97 -0
  174. metabase_skill-1.0.0/source/embedding/dashboard-reference.md +108 -0
  175. metabase_skill-1.0.0/source/embedding/dashboard.md +557 -0
  176. metabase_skill-1.0.0/source/embedding/eajs/snippets/MetabaseBrowserAttributes.md +30 -0
  177. metabase_skill-1.0.0/source/embedding/eajs/snippets/MetabaseDashboardAttributes.md +25 -0
  178. metabase_skill-1.0.0/source/embedding/eajs/snippets/MetabaseMetabotAttributes.md +23 -0
  179. metabase_skill-1.0.0/source/embedding/eajs/snippets/MetabaseQuestionAttributes.md +28 -0
  180. metabase_skill-1.0.0/source/embedding/eajs/snippets/index.md +12 -0
  181. metabase_skill-1.0.0/source/embedding/full-app-embedding-quick-start-guide.md +266 -0
  182. metabase_skill-1.0.0/source/embedding/full-app-embedding.md +251 -0
  183. metabase_skill-1.0.0/source/embedding/full-app-ui-components.md +201 -0
  184. metabase_skill-1.0.0/source/embedding/guest-embedding.md +553 -0
  185. metabase_skill-1.0.0/source/embedding/introduction.md +128 -0
  186. metabase_skill-1.0.0/source/embedding/modular-embedding.md +205 -0
  187. metabase_skill-1.0.0/source/embedding/parameters.md +192 -0
  188. metabase_skill-1.0.0/source/embedding/public-links.md +200 -0
  189. metabase_skill-1.0.0/source/embedding/query-builder.md +96 -0
  190. metabase_skill-1.0.0/source/embedding/question-reference.md +103 -0
  191. metabase_skill-1.0.0/source/embedding/sdk/actions.md +164 -0
  192. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ActionExecuteError.md +38 -0
  193. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ActionKind.md +9 -0
  194. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ActionResultForBulk.md +23 -0
  195. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ActionResultForCreate.md +17 -0
  196. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ActionResultForDelete.md +17 -0
  197. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ActionResultForKind.md +26 -0
  198. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ActionResultForSql.md +17 -0
  199. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ActionResultForUpdate.md +17 -0
  200. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/AnyActionResult.md +13 -0
  201. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ButtonProps.md +19 -0
  202. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ChartColor.md +31 -0
  203. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ChartColorV2.md +38 -0
  204. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/CollectionBrowser.md +23 -0
  205. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/CollectionBrowserListColumns.md +9 -0
  206. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/CollectionBrowserProps.md +19 -0
  207. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/CreateDashboardModal.md +23 -0
  208. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/CreateDashboardModalProps.md +15 -0
  209. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/CreateDashboardValues.md +11 -0
  210. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/CreateQuestion.md +29 -0
  211. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/CreateQuestionProps.md +34 -0
  212. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/CustomDashboardCardMenuItem.md +26 -0
  213. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/DashCardMenuItem.md +31 -0
  214. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/DashboardCardCustomMenuItem.md +19 -0
  215. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/DashboardCardMenu.md +5 -0
  216. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/DashboardCardMenuCustomElement.md +26 -0
  217. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/DrillThroughQuestionProps.md +32 -0
  218. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/EditableDashboard.md +23 -0
  219. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/EditableDashboardProps.md +32 -0
  220. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/EmbeddingDataPicker.md +3 -0
  221. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/EmbeddingEntityType.md +3 -0
  222. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/EntityTypeFilterKeys.md +3 -0
  223. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/FieldSchema.md +27 -0
  224. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/IconName.md +314 -0
  225. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InitializationStatus.md +16 -0
  226. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveDashboard.md +78 -0
  227. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveDashboardProps.md +32 -0
  228. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestion.md +23 -0
  229. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionBackButtonProps.md +8 -0
  230. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionBreakoutDropdownProps.md +8 -0
  231. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionChartTypeDropdownProps.md +13 -0
  232. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionChartTypeSelectorProps.md +5 -0
  233. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionComponents.md +948 -0
  234. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionDownloadWidgetDropdownProps.md +5 -0
  235. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionDownloadWidgetProps.md +5 -0
  236. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionEditorButtonProps.md +12 -0
  237. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionEditorProps.md +12 -0
  238. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionFilterDropdownProps.md +17 -0
  239. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionFilterProps.md +17 -0
  240. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionProps.md +38 -0
  241. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionQuestionSettingsDropdownProps.md +11 -0
  242. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionQuestionSettingsProps.md +5 -0
  243. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionQuestionVisualizationProps.md +14 -0
  244. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionResetButtonProps.md +13 -0
  245. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionSaveButtonProps.md +17 -0
  246. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionSaveQuestionFormProps.md +11 -0
  247. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionSummarizeDropdownProps.md +8 -0
  248. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/InteractiveQuestionTitleProps.md +12 -0
  249. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/LoginStatus.md +3 -0
  250. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseAuthConfig.md +7 -0
  251. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseAuthConfigWithApiKey.md +33 -0
  252. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseAuthConfigWithJwt.md +35 -0
  253. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseAuthConfigWithSaml.md +33 -0
  254. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseCard.md +152 -0
  255. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseClickAction.md +15 -0
  256. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseClickActionPluginsConfig.md +32 -0
  257. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseCollection.md +25 -0
  258. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseCollectionItem.md +57 -0
  259. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseColorKey.md +201 -0
  260. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseColors.md +31 -0
  261. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseComponentTheme.md +165 -0
  262. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseDashboard.md +42 -0
  263. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseDashboardPluginsConfig.md +15 -0
  264. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseDataPointObject.md +42 -0
  265. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseEmbeddingColorKeyV2.md +210 -0
  266. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseEmbeddingTheme.md +5 -0
  267. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseEmbeddingThemeV2.md +13 -0
  268. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseFetchRequestTokenFn.md +15 -0
  269. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseFontFamily.md +24 -0
  270. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseGlobalPluginsConfig.md +21 -0
  271. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseIsGuestAuthConfig.md +35 -0
  272. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabasePluginsConfig.md +17 -0
  273. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseProvider.md +23 -0
  274. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseProviderProps.md +22 -0
  275. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseQueryObject.md +24 -0
  276. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseQuestion.md +13 -0
  277. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseTheme.md +77 -0
  278. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseThemePreset.md +3 -0
  279. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabaseUser.md +33 -0
  280. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabotAgentChartMessage.md +23 -0
  281. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabotAgentMessage.md +3 -0
  282. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabotAgentTextMessage.md +21 -0
  283. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabotChartProps.md +12 -0
  284. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabotErrorMessage.md +17 -0
  285. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabotMessage.md +3 -0
  286. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabotQuestion.md +23 -0
  287. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabotQuestionProps.md +27 -0
  288. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/MetabotUserTextMessage.md +21 -0
  289. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ParameterChangePayload.md +23 -0
  290. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ParameterChangeSource.md +9 -0
  291. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ParameterValues.md +11 -0
  292. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/ProtectedColorKey.md +28 -0
  293. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/QueryData.md +57 -0
  294. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/QueryQuestionResult.md +29 -0
  295. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/RowValue.md +5 -0
  296. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SchemaColumn.md +27 -0
  297. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SchemaJavaScriptType.md +8 -0
  298. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SchemaRow.md +23 -0
  299. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkActionId.md +3 -0
  300. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkBrowserCollectionId.md +6 -0
  301. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkCollectionId.md +3 -0
  302. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkDashboardEntityPublicProps.md +41 -0
  303. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkDashboardId.md +3 -0
  304. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkDashboardLoadEvent.md +21 -0
  305. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkEntityId.md +3 -0
  306. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkEntityToken.md +3 -0
  307. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkErrorComponent.md +25 -0
  308. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkErrorComponentProps.md +23 -0
  309. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkEventHandlersConfig.md +17 -0
  310. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkQuestionEntityPublicProps.md +97 -0
  311. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkQuestionId.md +25 -0
  312. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkQuestionProps.md +36 -0
  313. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkQuestionTitleProps.md +7 -0
  314. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SdkUserId.md +3 -0
  315. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SqlParameterChangePayload.md +21 -0
  316. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SqlParameterChangeSource.md +12 -0
  317. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/SqlParameterValues.md +11 -0
  318. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/StaticDashboard.md +23 -0
  319. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/StaticDashboardProps.md +28 -0
  320. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/StaticQuestion.md +23 -0
  321. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/StaticQuestionComponents.md +595 -0
  322. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/StaticQuestionProps.md +26 -0
  323. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/UseActionResult.md +26 -0
  324. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/UseMetabotResult.md +33 -0
  325. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/UserBackendJwtResponse.md +15 -0
  326. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/defineMetabaseAuthConfig.md +25 -0
  327. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/index.md +226 -0
  328. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/useAction.md +49 -0
  329. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/useApplicationName.md +14 -0
  330. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/useAvailableFonts.md +19 -0
  331. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/useCreateDashboardApi.md +21 -0
  332. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/useCurrentUser.md +14 -0
  333. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/useMetabaseAuthStatus.md +14 -0
  334. metabase_skill-1.0.0/source/embedding/sdk/api/snippets/useMetabot.md +32 -0
  335. metabase_skill-1.0.0/source/embedding/sdk/config.md +71 -0
  336. metabase_skill-1.0.0/source/embedding/sdk/introduction.md +152 -0
  337. metabase_skill-1.0.0/source/embedding/sdk/loading-and-errors.md +51 -0
  338. metabase_skill-1.0.0/source/embedding/sdk/next-js.md +62 -0
  339. metabase_skill-1.0.0/source/embedding/sdk/plugins.md +69 -0
  340. metabase_skill-1.0.0/source/embedding/sdk/quickstart-cli.md +116 -0
  341. metabase_skill-1.0.0/source/embedding/sdk/quickstart-with-sample-app.md +249 -0
  342. metabase_skill-1.0.0/source/embedding/sdk/quickstart.md +83 -0
  343. metabase_skill-1.0.0/source/embedding/sdk/upgrade.md +77 -0
  344. metabase_skill-1.0.0/source/embedding/sdk/version.md +49 -0
  345. metabase_skill-1.0.0/source/embedding/securing-embeds.md +255 -0
  346. metabase_skill-1.0.0/source/embedding/start.md +103 -0
  347. metabase_skill-1.0.0/source/embedding/static-embedding-parameters.md +213 -0
  348. metabase_skill-1.0.0/source/embedding/static-embedding.md +197 -0
  349. metabase_skill-1.0.0/source/embedding/tenants.md +442 -0
  350. metabase_skill-1.0.0/source/embedding/translations.md +117 -0
  351. metabase_skill-1.0.0/source/exploration-and-organization/collections.md +152 -0
  352. metabase_skill-1.0.0/source/exploration-and-organization/content-verification.md +55 -0
  353. metabase_skill-1.0.0/source/exploration-and-organization/data-model-reference.md +82 -0
  354. metabase_skill-1.0.0/source/exploration-and-organization/delete-and-restore.md +147 -0
  355. metabase_skill-1.0.0/source/exploration-and-organization/events-and-timelines.md +129 -0
  356. metabase_skill-1.0.0/source/exploration-and-organization/exploration.md +137 -0
  357. metabase_skill-1.0.0/source/exploration-and-organization/history.md +49 -0
  358. metabase_skill-1.0.0/source/exploration-and-organization/keyboard-shortcuts.md +77 -0
  359. metabase_skill-1.0.0/source/exploration-and-organization/start.md +45 -0
  360. metabase_skill-1.0.0/source/exploration-and-organization/uploads.md +163 -0
  361. metabase_skill-1.0.0/source/exploration-and-organization/x-rays.md +67 -0
  362. metabase_skill-1.0.0/source/installation-and-operation/accessibility.md +27 -0
  363. metabase_skill-1.0.0/source/installation-and-operation/activating-the-enterprise-edition.md +108 -0
  364. metabase_skill-1.0.0/source/installation-and-operation/backing-up-metabase-application-data.md +50 -0
  365. metabase_skill-1.0.0/source/installation-and-operation/commands.md +120 -0
  366. metabase_skill-1.0.0/source/installation-and-operation/configuring-application-database.md +178 -0
  367. metabase_skill-1.0.0/source/installation-and-operation/creating-RDS-database-on-AWS.md +76 -0
  368. metabase_skill-1.0.0/source/installation-and-operation/development-instance.md +56 -0
  369. metabase_skill-1.0.0/source/installation-and-operation/information-collection.md +84 -0
  370. metabase_skill-1.0.0/source/installation-and-operation/installing-metabase.md +60 -0
  371. metabase_skill-1.0.0/source/installation-and-operation/metabase-cli.md +123 -0
  372. metabase_skill-1.0.0/source/installation-and-operation/migrating-from-h2.md +215 -0
  373. metabase_skill-1.0.0/source/installation-and-operation/observability-with-prometheus.md +171 -0
  374. metabase_skill-1.0.0/source/installation-and-operation/privacy.md +23 -0
  375. metabase_skill-1.0.0/source/installation-and-operation/remote-sync.md +510 -0
  376. metabase_skill-1.0.0/source/installation-and-operation/running-metabase-as-service.md +162 -0
  377. metabase_skill-1.0.0/source/installation-and-operation/running-metabase-on-azure.md +200 -0
  378. metabase_skill-1.0.0/source/installation-and-operation/running-metabase-on-docker.md +358 -0
  379. metabase_skill-1.0.0/source/installation-and-operation/running-metabase-on-elastic-beanstalk.md +81 -0
  380. metabase_skill-1.0.0/source/installation-and-operation/running-metabase-on-podman.md +160 -0
  381. metabase_skill-1.0.0/source/installation-and-operation/running-the-metabase-jar-file.md +168 -0
  382. metabase_skill-1.0.0/source/installation-and-operation/security-center.md +65 -0
  383. metabase_skill-1.0.0/source/installation-and-operation/serialization.md +643 -0
  384. metabase_skill-1.0.0/source/installation-and-operation/start.md +67 -0
  385. metabase_skill-1.0.0/source/installation-and-operation/supported-browsers.md +18 -0
  386. metabase_skill-1.0.0/source/installation-and-operation/upgrading-metabase.md +188 -0
  387. metabase_skill-1.0.0/source/monitor/alerts-management.md +67 -0
  388. metabase_skill-1.0.0/source/monitor/application-logs.md +120 -0
  389. metabase_skill-1.0.0/source/monitor/background-tasks.md +90 -0
  390. metabase_skill-1.0.0/source/monitor/cli-analytics.md +85 -0
  391. metabase_skill-1.0.0/source/monitor/dependency-diagnostics.md +106 -0
  392. metabase_skill-1.0.0/source/monitor/erroring-questions.md +28 -0
  393. metabase_skill-1.0.0/source/monitor/model-persistence-log.md +25 -0
  394. metabase_skill-1.0.0/source/monitor/scheduled-jobs.md +35 -0
  395. metabase_skill-1.0.0/source/monitor/start.md +55 -0
  396. metabase_skill-1.0.0/source/people-and-groups/account-settings.md +80 -0
  397. metabase_skill-1.0.0/source/people-and-groups/api-keys.md +119 -0
  398. metabase_skill-1.0.0/source/people-and-groups/authenticating-with-jwt.md +149 -0
  399. metabase_skill-1.0.0/source/people-and-groups/authenticating-with-oidc.md +169 -0
  400. metabase_skill-1.0.0/source/people-and-groups/authenticating-with-saml.md +221 -0
  401. metabase_skill-1.0.0/source/people-and-groups/changing-password-complexity.md +46 -0
  402. metabase_skill-1.0.0/source/people-and-groups/changing-session-expiration.md +59 -0
  403. metabase_skill-1.0.0/source/people-and-groups/google-sign-in.md +65 -0
  404. metabase_skill-1.0.0/source/people-and-groups/ldap.md +110 -0
  405. metabase_skill-1.0.0/source/people-and-groups/managing.md +248 -0
  406. metabase_skill-1.0.0/source/people-and-groups/oidc-keycloak.md +111 -0
  407. metabase_skill-1.0.0/source/people-and-groups/saml-auth0.md +82 -0
  408. metabase_skill-1.0.0/source/people-and-groups/saml-azure.md +73 -0
  409. metabase_skill-1.0.0/source/people-and-groups/saml-google.md +71 -0
  410. metabase_skill-1.0.0/source/people-and-groups/saml-keycloak.md +99 -0
  411. metabase_skill-1.0.0/source/people-and-groups/saml-okta.md +205 -0
  412. metabase_skill-1.0.0/source/people-and-groups/start.md +79 -0
  413. metabase_skill-1.0.0/source/people-and-groups/two-factor-authentication.md +52 -0
  414. metabase_skill-1.0.0/source/people-and-groups/user-provisioning.md +64 -0
  415. metabase_skill-1.0.0/source/permissions/application.md +58 -0
  416. metabase_skill-1.0.0/source/permissions/collections.md +135 -0
  417. metabase_skill-1.0.0/source/permissions/data-isolation-methods.md +90 -0
  418. metabase_skill-1.0.0/source/permissions/data.md +208 -0
  419. metabase_skill-1.0.0/source/permissions/database-routing.md +183 -0
  420. metabase_skill-1.0.0/source/permissions/embedding.md +150 -0
  421. metabase_skill-1.0.0/source/permissions/impersonation.md +201 -0
  422. metabase_skill-1.0.0/source/permissions/introduction.md +56 -0
  423. metabase_skill-1.0.0/source/permissions/no-self-service-deprecation.md +115 -0
  424. metabase_skill-1.0.0/source/permissions/notifications.md +60 -0
  425. metabase_skill-1.0.0/source/permissions/row-and-column-security-examples.md +146 -0
  426. metabase_skill-1.0.0/source/permissions/row-and-column-security.md +331 -0
  427. metabase_skill-1.0.0/source/permissions/snippets.md +91 -0
  428. metabase_skill-1.0.0/source/permissions/start.md +45 -0
  429. metabase_skill-1.0.0/source/questions/alerts.md +175 -0
  430. metabase_skill-1.0.0/source/questions/exporting-results.md +147 -0
  431. metabase_skill-1.0.0/source/questions/introduction.md +109 -0
  432. metabase_skill-1.0.0/source/questions/metrics-explorer.md +134 -0
  433. metabase_skill-1.0.0/source/questions/native-editor/basic-sql-parameters.md +96 -0
  434. metabase_skill-1.0.0/source/questions/native-editor/field-filters.md +148 -0
  435. metabase_skill-1.0.0/source/questions/native-editor/filter-widgets.md +118 -0
  436. metabase_skill-1.0.0/source/questions/native-editor/optional-variables.md +151 -0
  437. metabase_skill-1.0.0/source/questions/native-editor/referencing-saved-questions-in-queries.md +71 -0
  438. metabase_skill-1.0.0/source/questions/native-editor/snippets.md +201 -0
  439. metabase_skill-1.0.0/source/questions/native-editor/sql-parameters.md +93 -0
  440. metabase_skill-1.0.0/source/questions/native-editor/table-variables.md +119 -0
  441. metabase_skill-1.0.0/source/questions/native-editor/time-grouping-parameters.md +57 -0
  442. metabase_skill-1.0.0/source/questions/native-editor/writing-sql.md +143 -0
  443. metabase_skill-1.0.0/source/questions/query-builder/editor.md +137 -0
  444. metabase_skill-1.0.0/source/questions/query-builder/expressions/case.md +343 -0
  445. metabase_skill-1.0.0/source/questions/query-builder/expressions/coalesce.md +183 -0
  446. metabase_skill-1.0.0/source/questions/query-builder/expressions/concat.md +109 -0
  447. metabase_skill-1.0.0/source/questions/query-builder/expressions/converttimezone.md +251 -0
  448. metabase_skill-1.0.0/source/questions/query-builder/expressions/countif.md +250 -0
  449. metabase_skill-1.0.0/source/questions/query-builder/expressions/cumulative.md +134 -0
  450. metabase_skill-1.0.0/source/questions/query-builder/expressions/datetimeadd.md +173 -0
  451. metabase_skill-1.0.0/source/questions/query-builder/expressions/datetimediff.md +142 -0
  452. metabase_skill-1.0.0/source/questions/query-builder/expressions/datetimesubtract.md +173 -0
  453. metabase_skill-1.0.0/source/questions/query-builder/expressions/in.md +63 -0
  454. metabase_skill-1.0.0/source/questions/query-builder/expressions/isempty.md +138 -0
  455. metabase_skill-1.0.0/source/questions/query-builder/expressions/isnull.md +146 -0
  456. metabase_skill-1.0.0/source/questions/query-builder/expressions/now.md +107 -0
  457. metabase_skill-1.0.0/source/questions/query-builder/expressions/offset.md +134 -0
  458. metabase_skill-1.0.0/source/questions/query-builder/expressions/regexextract.md +142 -0
  459. metabase_skill-1.0.0/source/questions/query-builder/expressions/substring.md +152 -0
  460. metabase_skill-1.0.0/source/questions/query-builder/expressions/sumif.md +277 -0
  461. metabase_skill-1.0.0/source/questions/query-builder/expressions/week.md +95 -0
  462. metabase_skill-1.0.0/source/questions/query-builder/expressions-list.md +1079 -0
  463. metabase_skill-1.0.0/source/questions/query-builder/expressions.md +123 -0
  464. metabase_skill-1.0.0/source/questions/query-builder/filters.md +46 -0
  465. metabase_skill-1.0.0/source/questions/query-builder/join.md +94 -0
  466. metabase_skill-1.0.0/source/questions/query-builder/summarizing-and-grouping.md +74 -0
  467. metabase_skill-1.0.0/source/questions/start.md +95 -0
  468. metabase_skill-1.0.0/source/questions/visualizations/box-plot.md +118 -0
  469. metabase_skill-1.0.0/source/questions/visualizations/country-codes.md +262 -0
  470. metabase_skill-1.0.0/source/questions/visualizations/custom.md +100 -0
  471. metabase_skill-1.0.0/source/questions/visualizations/detail.md +13 -0
  472. metabase_skill-1.0.0/source/questions/visualizations/drill-through.md +159 -0
  473. metabase_skill-1.0.0/source/questions/visualizations/funnel.md +84 -0
  474. metabase_skill-1.0.0/source/questions/visualizations/gauge.md +62 -0
  475. metabase_skill-1.0.0/source/questions/visualizations/line-bar-and-area-charts.md +233 -0
  476. metabase_skill-1.0.0/source/questions/visualizations/map.md +211 -0
  477. metabase_skill-1.0.0/source/questions/visualizations/numbers.md +53 -0
  478. metabase_skill-1.0.0/source/questions/visualizations/pie-or-donut-chart.md +103 -0
  479. metabase_skill-1.0.0/source/questions/visualizations/pivot-table.md +105 -0
  480. metabase_skill-1.0.0/source/questions/visualizations/progress-bar.md +126 -0
  481. metabase_skill-1.0.0/source/questions/visualizations/sankey.md +87 -0
  482. metabase_skill-1.0.0/source/questions/visualizations/scatterplot-or-bubble-chart.md +156 -0
  483. metabase_skill-1.0.0/source/questions/visualizations/table.md +333 -0
  484. metabase_skill-1.0.0/source/questions/visualizations/tooltips.md +31 -0
  485. metabase_skill-1.0.0/source/questions/visualizations/treemap.md +96 -0
  486. metabase_skill-1.0.0/source/questions/visualizations/trend.md +34 -0
  487. metabase_skill-1.0.0/source/questions/visualizations/visualizing-results.md +196 -0
  488. metabase_skill-1.0.0/source/questions/visualizations/waterfall-chart.md +119 -0
  489. metabase_skill-1.0.0/source/troubleshooting-guide/bigquery-drive.md +21 -0
  490. metabase_skill-1.0.0/source/troubleshooting-guide/bugs.md +21 -0
  491. metabase_skill-1.0.0/source/troubleshooting-guide/cant-log-in.md +42 -0
  492. metabase_skill-1.0.0/source/troubleshooting-guide/cant-see-tables.md +98 -0
  493. metabase_skill-1.0.0/source/troubleshooting-guide/cant-send-email.md +48 -0
  494. metabase_skill-1.0.0/source/troubleshooting-guide/cant-view-or-edit.md +44 -0
  495. metabase_skill-1.0.0/source/troubleshooting-guide/create-har-file.md +53 -0
  496. metabase_skill-1.0.0/source/troubleshooting-guide/data-permissions.md +126 -0
  497. metabase_skill-1.0.0/source/troubleshooting-guide/db-connection.md +133 -0
  498. metabase_skill-1.0.0/source/troubleshooting-guide/db-performance.md +83 -0
  499. metabase_skill-1.0.0/source/troubleshooting-guide/diagnostic-info.md +35 -0
  500. metabase_skill-1.0.0/source/troubleshooting-guide/docker.md +156 -0
  501. metabase_skill-1.0.0/source/troubleshooting-guide/error-message.md +31 -0
  502. metabase_skill-1.0.0/source/troubleshooting-guide/filters.md +111 -0
  503. metabase_skill-1.0.0/source/troubleshooting-guide/index.md +116 -0
  504. metabase_skill-1.0.0/source/troubleshooting-guide/known-issues.md +45 -0
  505. metabase_skill-1.0.0/source/troubleshooting-guide/ldap.md +85 -0
  506. metabase_skill-1.0.0/source/troubleshooting-guide/linked-filters.md +74 -0
  507. metabase_skill-1.0.0/source/troubleshooting-guide/loading-from-h2.md +135 -0
  508. metabase_skill-1.0.0/source/troubleshooting-guide/models.md +75 -0
  509. metabase_skill-1.0.0/source/troubleshooting-guide/my-dashboard-is-slow.md +77 -0
  510. metabase_skill-1.0.0/source/troubleshooting-guide/notifications.md +20 -0
  511. metabase_skill-1.0.0/source/troubleshooting-guide/permissions.md +66 -0
  512. metabase_skill-1.0.0/source/troubleshooting-guide/profiling-metabase.md +93 -0
  513. metabase_skill-1.0.0/source/troubleshooting-guide/proxies.md +34 -0
  514. metabase_skill-1.0.0/source/troubleshooting-guide/requesting-new-features.md +37 -0
  515. metabase_skill-1.0.0/source/troubleshooting-guide/row-and-column-security.md +181 -0
  516. metabase_skill-1.0.0/source/troubleshooting-guide/running.md +96 -0
  517. metabase_skill-1.0.0/source/troubleshooting-guide/saml.md +71 -0
  518. metabase_skill-1.0.0/source/troubleshooting-guide/server-logs.md +31 -0
  519. metabase_skill-1.0.0/source/troubleshooting-guide/sql.md +36 -0
  520. metabase_skill-1.0.0/source/troubleshooting-guide/sync-fingerprint-scan.md +172 -0
  521. metabase_skill-1.0.0/source/troubleshooting-guide/timeout.md +36 -0
  522. metabase_skill-1.0.0/source/troubleshooting-guide/timezones.md +84 -0
  523. metabase_skill-1.0.0/source/troubleshooting-guide/visualization.md +48 -0
  524. metabase_skill-1.0.0/source/usage-and-performance-tools/start.md +17 -0
  525. metabase_skill-1.0.0/source/usage-and-performance-tools/usage-analytics-reference.md +718 -0
  526. metabase_skill-1.0.0/source/usage-and-performance-tools/usage-analytics.md +74 -0
  527. metabase_skill-1.0.0/source/util/README.md +22 -0
  528. metabase_skill-1.0.0/source/util/resources/introduction.md +12 -0
  529. metabase_skill-1.0.0/src/metabase_skill/__init__.py +11 -0
  530. metabase_skill-1.0.0/src/metabase_skill/__main__.py +3 -0
  531. metabase_skill-1.0.0/src/metabase_skill/cli.py +36 -0
  532. metabase_skill-1.0.0/tests/test_install.py +24 -0
@@ -0,0 +1,9 @@
1
+ .DS_Store
2
+ __pycache__/
3
+ *.pyc
4
+ .venv/
5
+ graph/index.json
6
+ dist/
7
+ build/
8
+ *.egg-info/
9
+
@@ -0,0 +1,26 @@
1
+ # Credits
2
+
3
+ ## Documentation source
4
+
5
+ This skill’s knowledge base is built from official Metabase documentation.
6
+
7
+ - Live handbook: https://www.metabase.com/docs/latest/
8
+ - Source files snapshotted into `source/`: the `docs/` tree of https://github.com/metabase/metabase
9
+ - Snapshot date: 2026-09-10
10
+ - Latest Metabase at snapshot: **63.17** (open source `v0.63.17`, Pro/Enterprise `v1.63.17`) — [release](https://github.com/metabase/metabase/releases/tag/v0.63.17)
11
+ - Documentation copyright: **© Metabase, Inc.** The docs in `source/` are not copyrighted by this skill’s author.
12
+
13
+ Answers should cite those official URLs. This skill is not affiliated with or endorsed by Metabase, Inc. Non-enterprise paths are licensed AGPL; see [NOTICE.md](NOTICE.md).
14
+
15
+ ## Authorship
16
+
17
+ | Role | Name |
18
+ |------|------|
19
+ | Author | Ishan Sarkar |
20
+ | Implementation | Cursor AI agent |
21
+
22
+ Skill packaging (`SKILL.md`, lookup script, concept graph, installer, `references/`) was produced in Cursor.
23
+
24
+ ## License for this packaging
25
+
26
+ MIT. Copyright © 2026 Ishan Sarkar. See [LICENSE](LICENSE).
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ishan Sarkar
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,30 @@
1
+ # Notices
2
+
3
+ ## Credits
4
+
5
+ See [CREDITS.md](CREDITS.md) for documentation source and authorship.
6
+
7
+ - **Author:** Ishan Sarkar
8
+ - **Implementation:** Cursor AI agent
9
+ - **Documentation source:** https://www.metabase.com/docs/latest/ and the `docs/` directory of https://github.com/metabase/metabase
10
+ - **Documentation copyright:** © Metabase, Inc.
11
+ - **Docs snapshot:** 2026-09-10, latest Metabase **63.17** (`v0.63.17` / `v1.63.17`)
12
+
13
+ ## This skill packaging (MIT)
14
+
15
+ `SKILL.md`, `scripts/`, `graph/concepts.json`, `references/`, `install.sh`, `README.md`, `CREDITS.md`, and `src/metabase_skill/` are original packaging for Agent Skills. Copyright © 2026 Ishan Sarkar. Licensed under MIT (see `LICENSE`).
16
+
17
+ ## Metabase documentation snapshot (`source/`)
18
+
19
+ Files under `source/` are a verbatim snapshot of the `docs/` directory from [metabase/metabase](https://github.com/metabase/metabase). **Copyright © Metabase, Inc.** This skill’s author does not own that copyright.
20
+
21
+ That tree is licensed under the GNU Affero General Public License v3.0 as described in Metabase's `LICENSE.txt` (non-enterprise paths). See:
22
+
23
+ https://github.com/metabase/metabase/blob/master/LICENSE.txt
24
+ https://github.com/metabase/metabase/blob/master/LICENSE-AGPL.txt
25
+
26
+ If `source/` is missing, `scripts/lookup.py` fetches `docs/` from GitHub on first run.
27
+
28
+ Official live documentation: https://www.metabase.com/docs/latest/
29
+
30
+ This skill is not affiliated with or endorsed by Metabase, Inc.
@@ -0,0 +1,162 @@
1
+ Metadata-Version: 2.5
2
+ Name: metabase-skill
3
+ Version: 1.0.0
4
+ Summary: Agent Skill that answers Metabase questions from a local copy of the official docs.
5
+ Project-URL: Homepage, https://github.com/IshanSarkar/metabase-skill
6
+ Project-URL: Repository, https://github.com/IshanSarkar/metabase-skill
7
+ Project-URL: Issues, https://github.com/IshanSarkar/metabase-skill/issues
8
+ Project-URL: Documentation, https://www.metabase.com/docs/latest/
9
+ Author: Ishan Sarkar
10
+ License-Expression: MIT
11
+ License-File: LICENSE
12
+ Keywords: agent-skill,claude,cursor,metabase
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Topic :: Documentation
24
+ Requires-Python: >=3.9
25
+ Description-Content-Type: text/markdown
26
+
27
+ # Metabase skill for any AI agent
28
+
29
+ An [Agent Skill](https://agentskills.io/specification) that answers Metabase questions from a local copy of the official Metabase docs. Author: Ishan Sarkar. Implementation: Cursor AI agent. Attribution: [CREDITS.md](CREDITS.md).
30
+
31
+ **OS:** macOS, Linux, Windows. The skill is files + Python stdlib — no Docker, no native binaries.
32
+
33
+ **Agents:** Cursor, Claude Code, Codex, GitHub Copilot, Gemini CLI, OpenCode, and any client that loads `SKILL.md`.
34
+
35
+ After install, start a new chat and ask in plain language. You do not need a slash command.
36
+
37
+ ```
38
+ How do I give each customer only their own rows?
39
+ Embed a chart in our React app without making them log into Metabase.
40
+ SQL dropdown that lists product categories.
41
+ ```
42
+
43
+ ## Install (pick one)
44
+
45
+ ### pip (no Node.js)
46
+
47
+ ```bash
48
+ pip install "git+https://github.com/IshanSarkar/metabase-skill.git"
49
+ metabase-skill
50
+ ```
51
+
52
+ After the package is on PyPI, that becomes `pip install metabase-skill` then `metabase-skill`. Same flags as the Python installer (`--project`, `--agent cursor`). `python -m metabase_skill` is equivalent.
53
+
54
+ Windows: `py -m pip install ...` then `metabase-skill` (or `py -m metabase_skill`).
55
+
56
+ ### Clone + Python installer
57
+
58
+ Needs [Python 3.9+](https://www.python.org/downloads/) and git. Same idea on every OS.
59
+
60
+ macOS / Linux:
61
+
62
+ ```bash
63
+ git clone https://github.com/IshanSarkar/metabase-skill.git
64
+ cd metabase-skill
65
+ python3 scripts/install.py
66
+ ```
67
+
68
+ Windows (PowerShell or cmd):
69
+
70
+ ```powershell
71
+ git clone https://github.com/IshanSarkar/metabase-skill.git
72
+ cd metabase-skill
73
+ py -3 scripts\install.py
74
+ ```
75
+
76
+ If you already have the folder, skip clone and run the installer from inside it. Flags: `--project` (current repo only), `--agent cursor` (one product). Unix shortcut: `./install.sh` (calls the same Python installer).
77
+
78
+ No git: download the [ZIP](https://github.com/IshanSarkar/metabase-skill/archive/refs/heads/main.zip), unzip, then run the same `python3` / `py -3` command from that folder.
79
+
80
+ ### Skills CLI (needs Node.js)
81
+
82
+ Needs [Node.js](https://nodejs.org/). Same command on macOS, Linux, and Windows:
83
+
84
+ ```bash
85
+ npx skills add IshanSarkar/metabase-skill -g -y
86
+ ```
87
+
88
+ Add `-a cursor -a claude-code -a codex` to target specific products.
89
+
90
+ From a local clone:
91
+
92
+ ```bash
93
+ npx skills add . -g -y
94
+ ```
95
+
96
+ ### Cursor only — clone into the skills folder
97
+
98
+ | OS | Folder |
99
+ |----|--------|
100
+ | macOS / Linux | `~/.cursor/skills/metabase` |
101
+ | Windows | `%USERPROFILE%\.cursor\skills\metabase` |
102
+
103
+ ```bash
104
+ git clone https://github.com/IshanSarkar/metabase-skill.git ~/.cursor/skills/metabase
105
+ ```
106
+
107
+ Windows PowerShell:
108
+
109
+ ```powershell
110
+ git clone https://github.com/IshanSarkar/metabase-skill.git "$env:USERPROFILE\.cursor\skills\metabase"
111
+ ```
112
+
113
+ Then start a **new** Agent chat.
114
+
115
+ ## Requirements
116
+
117
+ - **Python 3.9+** for lookup (standard library only: `pathlib`, `json`, `re`)
118
+ - Optional: **pip** if you install with `pip install ...` (then run `metabase-skill`)
119
+ - Optional: **git** if `source/` is missing (first lookup clones Metabase `docs/`)
120
+ - Optional: **Node.js** only if you install via `npx skills add`
121
+
122
+ | OS | Python command |
123
+ |----|----------------|
124
+ | macOS / Linux | `python3` |
125
+ | Windows | `py -3` or `python` |
126
+
127
+ ## How to use it in conversation
128
+
129
+ 1. Install the skill.
130
+ 2. Open a **new** agent thread (so the skill is discovered).
131
+ 3. Ask a Metabase question in your own words.
132
+
133
+ The agent should run `scripts/lookup.py`, read the few PRIMARY pages, and answer with official doc links. If it does not, say: `Use the metabase skill` or `/metabase` where your client supports slash skills.
134
+
135
+ ## Layout
136
+
137
+ ```
138
+ SKILL.md # router (small — loaded when the skill fires)
139
+ scripts/lookup.py # run this; do not paste it into context
140
+ scripts/install.py # cross-platform installer
141
+ graph/concepts.json # slang → official Metabase concepts
142
+ source/ # official docs snapshot
143
+ references/ # short topic cheat sheets
144
+ install.sh # Unix wrapper around scripts/install.py
145
+ ```
146
+
147
+ ## Credits
148
+
149
+ See [CREDITS.md](CREDITS.md).
150
+
151
+ - **Documentation source:** [Metabase documentation](https://www.metabase.com/docs/latest/) and the `docs/` folder of [metabase/metabase](https://github.com/metabase/metabase)
152
+ - **Documentation copyright:** © Metabase, Inc.
153
+ - **Docs snapshot:** 2026-09-10; latest Metabase at that time: **63.17** (`v0.63.17` OSS, `v1.63.17` Pro/Enterprise)
154
+ - **Author:** Ishan Sarkar
155
+ - **Implementation:** Cursor AI agent
156
+
157
+ This skill is not affiliated with or endorsed by Metabase, Inc.
158
+
159
+ ## License
160
+
161
+ Skill packaging: MIT (`LICENSE`), Copyright © 2026 Ishan Sarkar.
162
+ `source/` is Metabase documentation, copyright © Metabase, Inc. (AGPL); see `NOTICE.md`.
@@ -0,0 +1,136 @@
1
+ # Metabase skill for any AI agent
2
+
3
+ An [Agent Skill](https://agentskills.io/specification) that answers Metabase questions from a local copy of the official Metabase docs. Author: Ishan Sarkar. Implementation: Cursor AI agent. Attribution: [CREDITS.md](CREDITS.md).
4
+
5
+ **OS:** macOS, Linux, Windows. The skill is files + Python stdlib — no Docker, no native binaries.
6
+
7
+ **Agents:** Cursor, Claude Code, Codex, GitHub Copilot, Gemini CLI, OpenCode, and any client that loads `SKILL.md`.
8
+
9
+ After install, start a new chat and ask in plain language. You do not need a slash command.
10
+
11
+ ```
12
+ How do I give each customer only their own rows?
13
+ Embed a chart in our React app without making them log into Metabase.
14
+ SQL dropdown that lists product categories.
15
+ ```
16
+
17
+ ## Install (pick one)
18
+
19
+ ### pip (no Node.js)
20
+
21
+ ```bash
22
+ pip install "git+https://github.com/IshanSarkar/metabase-skill.git"
23
+ metabase-skill
24
+ ```
25
+
26
+ After the package is on PyPI, that becomes `pip install metabase-skill` then `metabase-skill`. Same flags as the Python installer (`--project`, `--agent cursor`). `python -m metabase_skill` is equivalent.
27
+
28
+ Windows: `py -m pip install ...` then `metabase-skill` (or `py -m metabase_skill`).
29
+
30
+ ### Clone + Python installer
31
+
32
+ Needs [Python 3.9+](https://www.python.org/downloads/) and git. Same idea on every OS.
33
+
34
+ macOS / Linux:
35
+
36
+ ```bash
37
+ git clone https://github.com/IshanSarkar/metabase-skill.git
38
+ cd metabase-skill
39
+ python3 scripts/install.py
40
+ ```
41
+
42
+ Windows (PowerShell or cmd):
43
+
44
+ ```powershell
45
+ git clone https://github.com/IshanSarkar/metabase-skill.git
46
+ cd metabase-skill
47
+ py -3 scripts\install.py
48
+ ```
49
+
50
+ If you already have the folder, skip clone and run the installer from inside it. Flags: `--project` (current repo only), `--agent cursor` (one product). Unix shortcut: `./install.sh` (calls the same Python installer).
51
+
52
+ No git: download the [ZIP](https://github.com/IshanSarkar/metabase-skill/archive/refs/heads/main.zip), unzip, then run the same `python3` / `py -3` command from that folder.
53
+
54
+ ### Skills CLI (needs Node.js)
55
+
56
+ Needs [Node.js](https://nodejs.org/). Same command on macOS, Linux, and Windows:
57
+
58
+ ```bash
59
+ npx skills add IshanSarkar/metabase-skill -g -y
60
+ ```
61
+
62
+ Add `-a cursor -a claude-code -a codex` to target specific products.
63
+
64
+ From a local clone:
65
+
66
+ ```bash
67
+ npx skills add . -g -y
68
+ ```
69
+
70
+ ### Cursor only — clone into the skills folder
71
+
72
+ | OS | Folder |
73
+ |----|--------|
74
+ | macOS / Linux | `~/.cursor/skills/metabase` |
75
+ | Windows | `%USERPROFILE%\.cursor\skills\metabase` |
76
+
77
+ ```bash
78
+ git clone https://github.com/IshanSarkar/metabase-skill.git ~/.cursor/skills/metabase
79
+ ```
80
+
81
+ Windows PowerShell:
82
+
83
+ ```powershell
84
+ git clone https://github.com/IshanSarkar/metabase-skill.git "$env:USERPROFILE\.cursor\skills\metabase"
85
+ ```
86
+
87
+ Then start a **new** Agent chat.
88
+
89
+ ## Requirements
90
+
91
+ - **Python 3.9+** for lookup (standard library only: `pathlib`, `json`, `re`)
92
+ - Optional: **pip** if you install with `pip install ...` (then run `metabase-skill`)
93
+ - Optional: **git** if `source/` is missing (first lookup clones Metabase `docs/`)
94
+ - Optional: **Node.js** only if you install via `npx skills add`
95
+
96
+ | OS | Python command |
97
+ |----|----------------|
98
+ | macOS / Linux | `python3` |
99
+ | Windows | `py -3` or `python` |
100
+
101
+ ## How to use it in conversation
102
+
103
+ 1. Install the skill.
104
+ 2. Open a **new** agent thread (so the skill is discovered).
105
+ 3. Ask a Metabase question in your own words.
106
+
107
+ The agent should run `scripts/lookup.py`, read the few PRIMARY pages, and answer with official doc links. If it does not, say: `Use the metabase skill` or `/metabase` where your client supports slash skills.
108
+
109
+ ## Layout
110
+
111
+ ```
112
+ SKILL.md # router (small — loaded when the skill fires)
113
+ scripts/lookup.py # run this; do not paste it into context
114
+ scripts/install.py # cross-platform installer
115
+ graph/concepts.json # slang → official Metabase concepts
116
+ source/ # official docs snapshot
117
+ references/ # short topic cheat sheets
118
+ install.sh # Unix wrapper around scripts/install.py
119
+ ```
120
+
121
+ ## Credits
122
+
123
+ See [CREDITS.md](CREDITS.md).
124
+
125
+ - **Documentation source:** [Metabase documentation](https://www.metabase.com/docs/latest/) and the `docs/` folder of [metabase/metabase](https://github.com/metabase/metabase)
126
+ - **Documentation copyright:** © Metabase, Inc.
127
+ - **Docs snapshot:** 2026-09-10; latest Metabase at that time: **63.17** (`v0.63.17` OSS, `v1.63.17` Pro/Enterprise)
128
+ - **Author:** Ishan Sarkar
129
+ - **Implementation:** Cursor AI agent
130
+
131
+ This skill is not affiliated with or endorsed by Metabase, Inc.
132
+
133
+ ## License
134
+
135
+ Skill packaging: MIT (`LICENSE`), Copyright © 2026 Ishan Sarkar.
136
+ `source/` is Metabase documentation, copyright © Metabase, Inc. (AGPL); see `NOTICE.md`.
@@ -0,0 +1,63 @@
1
+ ---
2
+ name: metabase
3
+ description: >-
4
+ Answers questions about Metabase using a local knowledge base built from the
5
+ official docs (install, Docker/JAR, databases, questions, SQL parameters,
6
+ dashboards, Data Studio, models, metrics, permissions, SSO, embedding SDK,
7
+ Metabot, API, Cloud). Use whenever the user mentions Metabase, MBQL, Metabot,
8
+ Metabase embedding, guest/static embeds, row-level security in Metabase, or
9
+ Metabase Cloud vs self-hosting.
10
+ license: MIT
11
+ compatibility: Requires Python 3.9+ (stdlib only). macOS, Linux, and Windows. Works with any Agent Skills client (Cursor, Claude Code, Codex, Copilot, Gemini CLI, OpenCode, and others).
12
+ metadata:
13
+ version: "1.0.0"
14
+ docs_snapshot: "2026-09-10"
15
+ docs_metabase_version: "63.17"
16
+ author: Ishan Sarkar
17
+ implemented_by: Cursor AI agent
18
+ docs_source: https://www.metabase.com/docs/latest/
19
+ docs_copyright: Metabase, Inc.
20
+ ---
21
+
22
+ # Metabase Knowledge Base
23
+
24
+ This skill's root is the directory that contains this `SKILL.md` file.
25
+ Docs referred from: https://www.metabase.com/docs/latest/ (snapshot in `source/`, Metabase 63.17 as of 2026-09-10). Documentation copyright: Metabase, Inc.
26
+ Authorship: [CREDITS.md](CREDITS.md) — Ishan Sarkar; Cursor AI agent.
27
+
28
+ ## Mandatory retrieval (do not skip)
29
+
30
+ Never answer Metabase questions from this file or from memory.
31
+
32
+ From **this skill root** (the folder that contains `SKILL.md`), **run** — do not read — the lookup script:
33
+
34
+ ```bash
35
+ python3 scripts/lookup.py "PASTE THE USER QUESTION"
36
+ ```
37
+
38
+ On Windows, if `python3` is missing, use `python` or `py -3`. If the current working directory is not the skill root, invoke `scripts/lookup.py` next to this file.
39
+
40
+ Then:
41
+
42
+ 1. **Read** every `read_path` listed under PRIMARY (absolute paths printed by lookup).
43
+ 2. Do **not** treat ALSO CHECK as required.
44
+ 3. If `MISS_RISK: True` or PRIMARY does not mention a noun from the question, search `source/` from the skill root: `rg -i -n 'noun' source -g '*.md'`.
45
+ 4. Still missing or version-specific → fetch `https://www.metabase.com/docs/latest/<path>`.
46
+ 5. Cite that official URL. Flag OSS vs Pro/Enterprise.
47
+
48
+ Lookup expands slang (`sandbox` → row-and-column-security) and ranks exact concept pages over the rest of that family.
49
+
50
+ ## Where the facts are
51
+
52
+ | Path | Role |
53
+ |------|------|
54
+ | `source/` | Complete Metabase docs. Relative path = URL after `/docs/latest/` |
55
+ | `references/` | Optional cheat sheet **after** lookup, never instead of `source/` |
56
+ | `graph/concepts.json` | Alias + intent graph used by lookup |
57
+ | `scripts/lookup.py` | Retrieval. Always **run**, never load into context |
58
+
59
+ Skip `source/embedding/sdk/api/snippets/` unless the user names an SDK prop.
60
+
61
+ ## Plan gates (do not get wrong)
62
+
63
+ Row/column security, impersonation, DB routing, JWT/SAML/OIDC, full-app embedding, tenants, serialization: **Pro/Enterprise**. Guest embeds work on OSS. Public links bypass row-level security. Permissions: **most permissive group wins**; restrict **All Users** first.