@beekeeperstudio/bks-ai-shell 3.0.4

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 (33) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +39 -0
  3. package/dist/assets/index-CzOKbg5t.js +2146 -0
  4. package/dist/assets/index-CzOKbg5t.js.map +1 -0
  5. package/dist/assets/index-DDqz6npp.css +1 -0
  6. package/dist/assets/material-symbols-outlined-CBOkUIHX.woff2 +0 -0
  7. package/dist/assets/roboto-latin-100-B3mHgoOJ.woff +0 -0
  8. package/dist/assets/roboto-latin-100-BJNx9A77.woff2 +0 -0
  9. package/dist/assets/roboto-latin-100italic-Bjs4D596.woff +0 -0
  10. package/dist/assets/roboto-latin-100italic-DkGpOhj0.woff2 +0 -0
  11. package/dist/assets/roboto-latin-300-Cx9SeV6m.woff +0 -0
  12. package/dist/assets/roboto-latin-300-EvKWBL9d.woff2 +0 -0
  13. package/dist/assets/roboto-latin-300italic-CYatNKLh.woff2 +0 -0
  14. package/dist/assets/roboto-latin-300italic-Uxw9HR3T.woff +0 -0
  15. package/dist/assets/roboto-latin-400-CEEi-WbQ.woff2 +0 -0
  16. package/dist/assets/roboto-latin-400-CKhRtUFO.woff +0 -0
  17. package/dist/assets/roboto-latin-400italic-B7WW6HdJ.woff +0 -0
  18. package/dist/assets/roboto-latin-400italic-DRWWNyaf.woff2 +0 -0
  19. package/dist/assets/roboto-latin-500-BU-otfqs.woff +0 -0
  20. package/dist/assets/roboto-latin-500-DRg8azjQ.woff2 +0 -0
  21. package/dist/assets/roboto-latin-500italic-CAWXcheQ.woff2 +0 -0
  22. package/dist/assets/roboto-latin-500italic-DC3lxgcN.woff +0 -0
  23. package/dist/assets/roboto-latin-700-CCwTn0--.woff +0 -0
  24. package/dist/assets/roboto-latin-700-CqGedB_1.woff2 +0 -0
  25. package/dist/assets/roboto-latin-700italic-C5p_YAqY.woff2 +0 -0
  26. package/dist/assets/roboto-latin-700italic-DXbHVVaQ.woff +0 -0
  27. package/dist/assets/roboto-latin-900-BEowQPyJ.woff2 +0 -0
  28. package/dist/assets/roboto-latin-900-Blac3EU0.woff +0 -0
  29. package/dist/assets/roboto-latin-900italic-DBp_g5Ww.woff2 +0 -0
  30. package/dist/assets/roboto-latin-900italic-uSnr6All.woff +0 -0
  31. package/dist/index.html +14 -0
  32. package/manifest.json +35 -0
  33. package/package.json +64 -0
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # AI Shell
2
+
3
+ Ask AI to analyze your database and generate SQL queries.
4
+
5
+ ![ai-shell-demo](https://github.com/user-attachments/assets/95efa8e4-b9ce-4bff-ac11-46a960812ca8)
6
+
7
+ ## Development
8
+
9
+ ```bash
10
+ # Clone the repo
11
+ git clone git@github.com:beekeeper-studio/bks-ai-shell.git
12
+
13
+ # Go to the directory
14
+ cd bks-ai-shell
15
+
16
+ # Link the directory to Beekeeper Studio plugins
17
+ ln -s $(pwd) ~/.config/beekeeper-studio/plugins/bks-ai-shell
18
+ # On Windows, replace $(pwd) with %cd%
19
+
20
+ # Install dependencies
21
+ yarn install
22
+
23
+ # Start development
24
+ yarn dev
25
+ ```
26
+
27
+ Finally, open Beekeeper Studio 5.3 or newer (or restart the app).
28
+
29
+ ## Deployment
30
+
31
+ Build the project for production:
32
+
33
+ ```
34
+ yarn build
35
+ ```
36
+
37
+ ## Security Note
38
+
39
+ This application uses the `anthropic-dangerous-direct-browser-access: true` header to enable browser usage of the Anthropic API. While convenient for this demo, be aware that this approach exposes your API key to potential security risks in a production environment.