@unoverse-platform/studio 0.1.1 → 0.1.2
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 +21 -0
- package/README.md +46 -0
- package/package.json +3 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Unoverse
|
|
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.
|
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# @unoverse-platform/studio
|
|
2
|
+
|
|
3
|
+
Unoverse Studio: the standalone authoring app. It reads your own `rx/` project folder
|
|
4
|
+
off disk and previews your components, templates, skills and nodes. No database, no
|
|
5
|
+
Docker, no backend of its own.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @unoverse-platform/studio
|
|
9
|
+
npx unoverse-studio
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Studio opens on your project folder. Author in your editor, see it in Studio.
|
|
13
|
+
|
|
14
|
+
## What you author
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
rx/components/ components: definition-backed UI, rendered by the generic SDK
|
|
18
|
+
rx/templates/ templates: whole app surfaces, states and layouts
|
|
19
|
+
rx/styles/ themes and tokens
|
|
20
|
+
prompts/ skills and prompt blocks
|
|
21
|
+
nodes/ declarative YAML node manifests
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Everything is data. There is no codegen and no build step for your assets: the
|
|
25
|
+
definition IS the artifact, and the same definition renders on web, in ChatGPT, in
|
|
26
|
+
Claude, and on every other channel a universe serves.
|
|
27
|
+
|
|
28
|
+
## Connecting a universe
|
|
29
|
+
|
|
30
|
+
Studio on its own is a viewer for your folder. Connected to a universe it becomes a
|
|
31
|
+
full client:
|
|
32
|
+
|
|
33
|
+
- **Live preview**: Studio hosts the app natively. It asks the universe for its
|
|
34
|
+
MCP-served app shell (`ui://unoverse/app.html`, the same one ChatGPT loads) and the
|
|
35
|
+
app runs its own connections: chat, streaming, voice. Studio ships no renderer of
|
|
36
|
+
its own; the renderer loads when required, from the universe that owns it.
|
|
37
|
+
- **Publish**: your components, templates, skills and prompts publish into the
|
|
38
|
+
universe over its API, authorized by a publish key issued on that universe
|
|
39
|
+
(`unoverse key`). Lint runs first; nothing leaves your machine until the rules pass.
|
|
40
|
+
|
|
41
|
+
The universe is somebody's deployment of the Unoverse platform. Yours, your team's, or
|
|
42
|
+
a customer's. Studio never runs one.
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unoverse-platform/studio",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Unoverse Studio: the local authoring app. Reads your own rx/ folder, no backend.",
|
|
6
6
|
"scripts": {
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"public",
|
|
37
37
|
"index.html",
|
|
38
38
|
"vite.config.ts",
|
|
39
|
-
"README.md"
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE"
|
|
40
41
|
],
|
|
41
42
|
"publishConfig": {
|
|
42
43
|
"access": "public"
|