@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.
- package/LICENSE +674 -0
- package/README.md +39 -0
- package/dist/assets/index-CzOKbg5t.js +2146 -0
- package/dist/assets/index-CzOKbg5t.js.map +1 -0
- package/dist/assets/index-DDqz6npp.css +1 -0
- package/dist/assets/material-symbols-outlined-CBOkUIHX.woff2 +0 -0
- package/dist/assets/roboto-latin-100-B3mHgoOJ.woff +0 -0
- package/dist/assets/roboto-latin-100-BJNx9A77.woff2 +0 -0
- package/dist/assets/roboto-latin-100italic-Bjs4D596.woff +0 -0
- package/dist/assets/roboto-latin-100italic-DkGpOhj0.woff2 +0 -0
- package/dist/assets/roboto-latin-300-Cx9SeV6m.woff +0 -0
- package/dist/assets/roboto-latin-300-EvKWBL9d.woff2 +0 -0
- package/dist/assets/roboto-latin-300italic-CYatNKLh.woff2 +0 -0
- package/dist/assets/roboto-latin-300italic-Uxw9HR3T.woff +0 -0
- package/dist/assets/roboto-latin-400-CEEi-WbQ.woff2 +0 -0
- package/dist/assets/roboto-latin-400-CKhRtUFO.woff +0 -0
- package/dist/assets/roboto-latin-400italic-B7WW6HdJ.woff +0 -0
- package/dist/assets/roboto-latin-400italic-DRWWNyaf.woff2 +0 -0
- package/dist/assets/roboto-latin-500-BU-otfqs.woff +0 -0
- package/dist/assets/roboto-latin-500-DRg8azjQ.woff2 +0 -0
- package/dist/assets/roboto-latin-500italic-CAWXcheQ.woff2 +0 -0
- package/dist/assets/roboto-latin-500italic-DC3lxgcN.woff +0 -0
- package/dist/assets/roboto-latin-700-CCwTn0--.woff +0 -0
- package/dist/assets/roboto-latin-700-CqGedB_1.woff2 +0 -0
- package/dist/assets/roboto-latin-700italic-C5p_YAqY.woff2 +0 -0
- package/dist/assets/roboto-latin-700italic-DXbHVVaQ.woff +0 -0
- package/dist/assets/roboto-latin-900-BEowQPyJ.woff2 +0 -0
- package/dist/assets/roboto-latin-900-Blac3EU0.woff +0 -0
- package/dist/assets/roboto-latin-900italic-DBp_g5Ww.woff2 +0 -0
- package/dist/assets/roboto-latin-900italic-uSnr6All.woff +0 -0
- package/dist/index.html +14 -0
- package/manifest.json +35 -0
- 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
|
+

|
|
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.
|