cascivo 0.4.1 → 0.4.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/README.md CHANGED
@@ -51,6 +51,24 @@ A **template** is a registry item (`type: "template"`) that bundles a working pa
51
51
 
52
52
  Because the registry model is open, `add owner/repo/component` installs from any compatible registry, not just the first-party one. See the [registry starter](https://github.com/cascivo/cascivo/tree/main/apps/examples/registry-starter) to publish your own.
53
53
 
54
+ ## Prefer the shadcn CLI or an AI tool?
55
+
56
+ cascivo also publishes a [shadcn-compatible registry](https://cascivo.com/r/shadcn/registry.json),
57
+ so you can install the same components with the shadcn CLI or "Open in v0" without
58
+ the `cascivo` binary:
59
+
60
+ ```sh
61
+ npx shadcn@latest add https://cascivo.com/r/shadcn/button.json
62
+ ```
63
+
64
+ Every item inlines its source and resolves its cascivo dependencies transitively.
65
+
66
+ Building **with an AI assistant?** cascivo has no training-data footprint yet, so
67
+ give the tool the knowledge directly rather than relying on it to browse the site:
68
+ paste or link [`https://cascivo.com/llms-full.txt`](https://cascivo.com/llms-full.txt)
69
+ (the whole library — setup + every component — in one file), or point an MCP-capable
70
+ agent at [`@cascivo/mcp`](https://www.npmjs.com/package/@cascivo/mcp).
71
+
54
72
  ## Install
55
73
 
56
74
  ```sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cascivo",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "private": false,
5
5
  "description": "CLI — npx cascivo init / add / list / update",
6
6
  "keywords": [
@@ -42,7 +42,7 @@
42
42
  "provenance": true
43
43
  },
44
44
  "dependencies": {
45
- "@cascivo/registry": "^0.1.11"
45
+ "@cascivo/registry": "^0.1.12"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/node": "^25",
package/readme.body.md CHANGED
@@ -32,3 +32,21 @@ A **template** is a registry item (`type: "template"`) that bundles a working pa
32
32
  `create` scaffolds a complete Vite + React + TypeScript app — pre-wired with the cascivo app shell, side navigation, header, and your chosen theme. It asks for a project name, theme, and the nav sections you want, then generates a section component for each. Pass `--theme`, `--sections "Dashboard, Reports"`, or `--yes` to skip the prompts. `init` detects npm / pnpm / yarn / bun, writes `cascivo.config.ts`, and wires up the token and theme imports. `add` resolves each component from [`registry.json`](https://github.com/cascivo/cascivo/blob/main/registry.json), fetches its source (TSX + CSS module + manifest) from GitHub raw URLs, and drops it into the path from your config — pulling in any dependencies it needs.
33
33
 
34
34
  Because the registry model is open, `add owner/repo/component` installs from any compatible registry, not just the first-party one. See the [registry starter](https://github.com/cascivo/cascivo/tree/main/apps/examples/registry-starter) to publish your own.
35
+
36
+ ## Prefer the shadcn CLI or an AI tool?
37
+
38
+ cascivo also publishes a [shadcn-compatible registry](https://cascivo.com/r/shadcn/registry.json),
39
+ so you can install the same components with the shadcn CLI or "Open in v0" without
40
+ the `cascivo` binary:
41
+
42
+ ```sh
43
+ npx shadcn@latest add https://cascivo.com/r/shadcn/button.json
44
+ ```
45
+
46
+ Every item inlines its source and resolves its cascivo dependencies transitively.
47
+
48
+ Building **with an AI assistant?** cascivo has no training-data footprint yet, so
49
+ give the tool the knowledge directly rather than relying on it to browse the site:
50
+ paste or link [`https://cascivo.com/llms-full.txt`](https://cascivo.com/llms-full.txt)
51
+ (the whole library — setup + every component — in one file), or point an MCP-capable
52
+ agent at [`@cascivo/mcp`](https://www.npmjs.com/package/@cascivo/mcp).