shadcn-studio-extension-cli 0.1.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 +77 -0
- package/dist/THIRD_PARTY_LICENSES.txt +6 -0
- package/dist/build-meta.json +14143 -0
- package/dist/index.cjs +97832 -0
- package/dist/index.cjs.map +7 -0
- package/dist/plugins/angular/index.js +112 -0
- package/dist/plugins/react/index.js +88 -0
- package/dist/plugins/vue/index.js +117 -0
- package/dist/toolbar-app/.vite/manifest.json +28 -0
- package/dist/toolbar-app/index-BsmHzFJI.js +8892 -0
- package/dist/toolbar-app/index-CK3aj61v.js +8916 -0
- package/dist/toolbar-app/index-CPzOXT0l.js +8884 -0
- package/dist/toolbar-app/index-CQOfGa9p.js +8916 -0
- package/dist/toolbar-app/index-CoMQvcfw.js +8880 -0
- package/dist/toolbar-app/index-CtdhG9I0.js +8905 -0
- package/dist/toolbar-app/index-DJ16UPrG.js +8912 -0
- package/dist/toolbar-app/index-DKAggkAP.js +8880 -0
- package/dist/toolbar-app/index-DZzSFjno.js +8916 -0
- package/dist/toolbar-app/index-D_JMEWJE.js +8892 -0
- package/dist/toolbar-app/index-LNolXi86.js +8901 -0
- package/dist/toolbar-app/index-pswOz6KO.js +8902 -0
- package/dist/toolbar-app/index.js +11760 -0
- package/dist/toolbar-app/plugin-sdk.js +109 -0
- package/dist/toolbar-app/toolbar.css +1 -0
- package/package.json +62 -0
package/README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# <img src="https://github.com/stagewise-io/assets/blob/main/media/logo.png?raw=true" alt="stagewise logo" width="48" height="48" style="border-radius: 50%; vertical-align: middle; margin-right: 8px;" /> stagewise
|
|
2
|
+
|
|
3
|
+
# The frontend coding agent for production codebases
|
|
4
|
+
|
|
5
|
+
  [](https://github.com/stagewise-io/stagewise)
|
|
6
|
+
|
|
7
|
+
[](https://discord.gg/gkdGsDYaKA) [](https://x.com/stagewise_io)
|
|
8
|
+
|
|
9
|
+

|
|
10
|
+
|
|
11
|
+
## About the project
|
|
12
|
+
|
|
13
|
+
Welcome to **stagewise** β The frontend coding agent for production codebases
|
|
14
|
+
|
|
15
|
+
- π¬ Tell the agent what you want to change
|
|
16
|
+
- π§ Click on element(s) to let the agent know where a change should happen
|
|
17
|
+
- π‘ Let stagewise do the magic!
|
|
18
|
+
|
|
19
|
+
> Perfect for devs tired of pasting element information and folder paths into prompts. stagewise uses real-time, browser-powered context.
|
|
20
|
+
|
|
21
|
+
## Features
|
|
22
|
+
|
|
23
|
+
- β‘ Works out of the box
|
|
24
|
+
- π§© Customize and extend functionality with Plugins
|
|
25
|
+
- π Open source
|
|
26
|
+
- βοΈ Compatible with all kinds of frameworks
|
|
27
|
+
- π§ Use our dedicated frontend agent - or any other compatible agent through our open agent interface!
|
|
28
|
+
|
|
29
|
+
## π Getting Started
|
|
30
|
+
|
|
31
|
+
### 1. Start your web app in development mode
|
|
32
|
+
|
|
33
|
+
The first thing you should do is to start your app in regular development mode
|
|
34
|
+
|
|
35
|
+
### 2. Start stagewise
|
|
36
|
+
|
|
37
|
+
stagewise can be integrated into your workflow without requiring you to install anything!
|
|
38
|
+
|
|
39
|
+
Simply open another terminal window **in the root of your app under development** and enter the following:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npx stagewise
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
or (if you're using pnpm):
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
pnpm dlx stagewise
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
And simply follow the short guide of the CLI app to setup your stagewise account.
|
|
52
|
+
|
|
53
|
+
## π€ Agent support
|
|
54
|
+
|
|
55
|
+
| **Agent** | **Supported** |
|
|
56
|
+
| -------------- | -------------- |
|
|
57
|
+
| stagewise agent| β
βοΈ |
|
|
58
|
+
| Cursor | β
|
|
|
59
|
+
| GitHub Copilot | β
|
|
|
60
|
+
| Windsurf | β
|
|
|
61
|
+
| Cline | β
|
|
|
62
|
+
| Roo Code | β
|
|
|
63
|
+
| Kilo Code | β
|
|
|
64
|
+
| Trae | β
|
|
|
65
|
+
|
|
66
|
+
## π License
|
|
67
|
+
|
|
68
|
+
stagewise is developed by tiq UG (haftungsbeschrΓ€nkt) and offered under the AGPLv3 license.
|
|
69
|
+
|
|
70
|
+
For more information on the license model, visit the [FAQ about the GNU Licenses](https://www.gnu.org/licenses/gpl-faq.html).
|
|
71
|
+
|
|
72
|
+
For use cases that fall outside the scope permitted by the AGPLv3 license, feel free to [π¬ Contact Us](#contact-us-section).
|
|
73
|
+
|
|
74
|
+
## π¬ Community & Support
|
|
75
|
+
|
|
76
|
+
- πΎ [Join our Discord](https://discord.gg/gkdGsDYaKA)
|
|
77
|
+
- π Open an [issue on GitHub](https://github.com/stagewise-io/stagewise/issues) for dev support.
|