uikit-studio 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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 uikit.studio
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,56 @@
1
+ # uikit-studio
2
+
3
+ The `uikit` CLI — scaffold, validate, and add UI kits from the
4
+ [uikit.studio](https://uikit.studio) gallery.
5
+
6
+ A kit is a runnable starter product: a full design system, real pages, and a
7
+ bundled AI skill. This CLI clones one into your project, wires its skill into
8
+ Claude Code, and copies individual components/templates shadcn-style.
9
+
10
+ ## Install
11
+
12
+ ```bash
13
+ npm i -g uikit-studio # provides the `uikit` command
14
+ ```
15
+
16
+ Or run any command one-off with `npx uikit-studio <command>`.
17
+
18
+ ## Commands
19
+
20
+ ```
21
+ uikit new <src> <dir> Clone (git URL) or copy (local path) a kit into <dir>, then init it
22
+ uikit init [path] Wire a cloned kit's consumer skill into the project (writes CLAUDE.md)
23
+ uikit add <item...> Copy components/blocks/templates (and their deps) into your project
24
+ uikit validate [path] Validate a uikit.json against the contract
25
+ uikit info [path] Print a kit's tech, templates, and consume steps
26
+ ```
27
+
28
+ ### Examples
29
+
30
+ ```bash
31
+ # Start a new app from a kit
32
+ npx uikit-studio new https://github.com/uikit-studio/aurora-uikit my-app
33
+ cd my-app
34
+
35
+ # Pull a full template plus every component it depends on
36
+ uikit add dashboard
37
+
38
+ # Make sure a kit you authored is contract-valid before submitting
39
+ uikit validate
40
+ ```
41
+
42
+ ## Authoring & submitting a kit
43
+
44
+ See the full guide at <https://uikit.studio/submit>.
45
+
46
+ ## What's in this repo
47
+
48
+ - `src/` — the CLI (published to npm as **uikit-studio**).
49
+ - `src/manifest/` + `schema/` — the **`uikit.json` contract**: the Zod schema, the
50
+ generated JSON Schema, and the validator the CLI runs.
51
+ - `standard/` — **`uikit-standard`**, the Claude Code skill that generates a complete,
52
+ contract-valid kit from a brief.
53
+
54
+ ## License
55
+
56
+ MIT