create-skybridge 0.0.0-dev.06e9fbe → 0.0.0-dev.06f809c

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.
Files changed (149) hide show
  1. package/dist/index.js +338 -210
  2. package/package.json +9 -8
  3. package/templates/blank/.dockerignore +4 -0
  4. package/templates/blank/AGENTS.md +1 -0
  5. package/templates/blank/Dockerfile +53 -0
  6. package/templates/blank/README.md +92 -0
  7. package/{template → templates/blank}/_gitignore +3 -1
  8. package/templates/blank/node_modules/.bin/alpic +21 -0
  9. package/templates/blank/node_modules/.bin/sb +21 -0
  10. package/templates/blank/node_modules/.bin/skybridge +21 -0
  11. package/templates/blank/node_modules/.bin/tsc +21 -0
  12. package/templates/blank/node_modules/.bin/tsserver +21 -0
  13. package/templates/blank/node_modules/.bin/tsx +21 -0
  14. package/templates/blank/node_modules/.bin/vite +21 -0
  15. package/templates/blank/package.json +29 -0
  16. package/templates/blank/src/helpers.ts +4 -0
  17. package/templates/blank/src/server.ts +16 -0
  18. package/templates/blank/tsconfig.json +5 -0
  19. package/templates/blank/vite.config.ts +6 -0
  20. package/templates/demo/.dockerignore +4 -0
  21. package/templates/demo/AGENTS.md +1 -0
  22. package/templates/demo/Dockerfile +53 -0
  23. package/templates/demo/README.md +95 -0
  24. package/templates/demo/_gitignore +7 -0
  25. package/templates/demo/alpic.json +3 -0
  26. package/templates/demo/node_modules/.bin/alpic +21 -0
  27. package/templates/demo/node_modules/.bin/sb +21 -0
  28. package/templates/demo/node_modules/.bin/skybridge +21 -0
  29. package/templates/demo/node_modules/.bin/tsc +21 -0
  30. package/templates/demo/node_modules/.bin/tsserver +21 -0
  31. package/templates/demo/node_modules/.bin/tsx +21 -0
  32. package/templates/demo/node_modules/.bin/vite +21 -0
  33. package/templates/demo/package.json +41 -0
  34. package/templates/demo/src/helpers.ts +4 -0
  35. package/templates/demo/src/index.css +59 -0
  36. package/templates/demo/src/server.ts +94 -0
  37. package/templates/demo/src/views/components/doc-link.tsx +22 -0
  38. package/templates/demo/src/views/components/doc.tsx +21 -0
  39. package/templates/demo/src/views/components/nav.tsx +31 -0
  40. package/templates/demo/src/views/components/progress.tsx +35 -0
  41. package/templates/demo/src/views/components/steps/outro.tsx +68 -0
  42. package/templates/demo/src/views/components/steps/state.tsx +47 -0
  43. package/templates/demo/src/views/components/steps/tool-call.tsx +53 -0
  44. package/templates/demo/src/views/components/steps/tool-output.tsx +40 -0
  45. package/templates/demo/src/views/images/mascot/beret.png +0 -0
  46. package/templates/demo/src/views/images/mascot/chapka.png +0 -0
  47. package/templates/demo/src/views/images/mascot/cowboy-hat.png +0 -0
  48. package/templates/demo/src/views/images/mascot/fez.png +0 -0
  49. package/templates/demo/src/views/images/mascot/jester-hat.png +0 -0
  50. package/templates/demo/src/views/images/mascot/mitre.png +0 -0
  51. package/templates/demo/src/views/images/mascot/non-la.png +0 -0
  52. package/templates/demo/src/views/images/mascot/original.png +0 -0
  53. package/templates/demo/src/views/images/mascot/propeller-beanie.png +0 -0
  54. package/templates/demo/src/views/images/mascot/ski-mask.png +0 -0
  55. package/templates/demo/src/views/images/mascot/sombrero.png +0 -0
  56. package/templates/demo/src/views/images/mascot/top-hat.png +0 -0
  57. package/templates/demo/src/views/images/mascot/viking-helmet.png +0 -0
  58. package/templates/demo/src/views/onboarding.tsx +63 -0
  59. package/templates/demo/src/views/use-mascot.ts +60 -0
  60. package/templates/demo/tsconfig.json +11 -0
  61. package/templates/demo/vite.config.ts +14 -0
  62. package/templates/ecom/.dockerignore +4 -0
  63. package/templates/ecom/.env.template +2 -0
  64. package/templates/ecom/.ladle/components.tsx +26 -0
  65. package/templates/ecom/.ladle/config.mjs +11 -0
  66. package/templates/ecom/.ladle/vite.config.ts +11 -0
  67. package/templates/ecom/AGENTS.md +2 -0
  68. package/templates/ecom/Dockerfile +53 -0
  69. package/templates/ecom/README.md +92 -0
  70. package/templates/ecom/_gitignore +9 -0
  71. package/templates/ecom/alpic.json +3 -0
  72. package/templates/ecom/node_modules/.bin/alpic +21 -0
  73. package/templates/ecom/node_modules/.bin/ladle +21 -0
  74. package/templates/ecom/node_modules/.bin/sb +21 -0
  75. package/templates/ecom/node_modules/.bin/skybridge +21 -0
  76. package/templates/ecom/node_modules/.bin/tsc +21 -0
  77. package/templates/ecom/node_modules/.bin/tsserver +21 -0
  78. package/templates/ecom/node_modules/.bin/tsx +21 -0
  79. package/templates/ecom/node_modules/.bin/vite +21 -0
  80. package/templates/ecom/package.json +41 -0
  81. package/templates/ecom/src/components/chip.css.ts +56 -0
  82. package/templates/ecom/src/components/chip.stories.tsx +26 -0
  83. package/templates/ecom/src/components/chip.tsx +41 -0
  84. package/templates/ecom/src/components/empty-state.stories.tsx +3 -0
  85. package/templates/ecom/src/components/empty-state.tsx +12 -0
  86. package/templates/ecom/src/components/expandable-text.css.ts +49 -0
  87. package/templates/ecom/src/components/expandable-text.stories.tsx +20 -0
  88. package/templates/ecom/src/components/expandable-text.tsx +53 -0
  89. package/templates/ecom/src/components/image-gallery.css.ts +172 -0
  90. package/templates/ecom/src/components/image-gallery.stories.tsx +30 -0
  91. package/templates/ecom/src/components/image-gallery.tsx +163 -0
  92. package/templates/ecom/src/components/product-card.css.ts +159 -0
  93. package/templates/ecom/src/components/product-card.stories.tsx +58 -0
  94. package/templates/ecom/src/components/product-card.tsx +102 -0
  95. package/templates/ecom/src/components/product-carousel.css.ts +134 -0
  96. package/templates/ecom/src/components/product-carousel.stories.tsx +64 -0
  97. package/templates/ecom/src/components/product-carousel.tsx +202 -0
  98. package/templates/ecom/src/components/variant-picker.css.ts +27 -0
  99. package/templates/ecom/src/components/variant-picker.stories.tsx +64 -0
  100. package/templates/ecom/src/components/variant-picker.tsx +82 -0
  101. package/templates/ecom/src/components/view-frame.css.ts +22 -0
  102. package/templates/ecom/src/components/view-frame.tsx +27 -0
  103. package/templates/ecom/src/config.ts +12 -0
  104. package/templates/ecom/src/design/contract.css.ts +39 -0
  105. package/templates/ecom/src/design/fonts.css +15 -0
  106. package/templates/ecom/src/design/primitives.css.ts +101 -0
  107. package/templates/ecom/src/design/recipes/typography.css.ts +75 -0
  108. package/templates/ecom/src/design/sprinkles.css.ts +128 -0
  109. package/templates/ecom/src/design/themes/dark.css.ts +36 -0
  110. package/templates/ecom/src/design/themes/light.css.ts +36 -0
  111. package/templates/ecom/src/design/tokens.ts +8 -0
  112. package/templates/ecom/src/helpers.ts +4 -0
  113. package/templates/ecom/src/i18n.ts +35 -0
  114. package/templates/ecom/src/index.css +9 -0
  115. package/templates/ecom/src/lib/cx.ts +9 -0
  116. package/templates/ecom/src/lib/format.ts +9 -0
  117. package/templates/ecom/src/lib/variants.ts +79 -0
  118. package/templates/ecom/src/server.ts +43 -0
  119. package/templates/ecom/src/tools/render-carousel.ts +241 -0
  120. package/templates/ecom/src/tools/search-products.ts +185 -0
  121. package/templates/ecom/src/types.ts +15 -0
  122. package/templates/ecom/src/views/carousel/detail/detail.css.ts +115 -0
  123. package/templates/ecom/src/views/carousel/detail/detail.stories.tsx +115 -0
  124. package/templates/ecom/src/views/carousel/detail/index.tsx +240 -0
  125. package/templates/ecom/src/views/carousel/index.tsx +234 -0
  126. package/templates/ecom/tsconfig.json +11 -0
  127. package/templates/ecom/vite.config.ts +8 -0
  128. package/dist/index.test.d.ts +0 -1
  129. package/dist/index.test.js +0 -33
  130. package/template/AGENTS.md +0 -1
  131. package/template/README.md +0 -99
  132. package/template/node_modules/.bin/alpic +0 -21
  133. package/template/node_modules/.bin/nodemon +0 -21
  134. package/template/node_modules/.bin/sb +0 -21
  135. package/template/node_modules/.bin/skybridge +0 -21
  136. package/template/node_modules/.bin/tsc +0 -21
  137. package/template/node_modules/.bin/tsserver +0 -21
  138. package/template/node_modules/.bin/tsx +0 -21
  139. package/template/node_modules/.bin/vite +0 -21
  140. package/template/nodemon.json +0 -5
  141. package/template/package.json +0 -38
  142. package/template/server/src/index.ts +0 -62
  143. package/template/tsconfig.json +0 -23
  144. package/template/tsconfig.server.json +0 -11
  145. package/template/web/src/helpers.ts +0 -4
  146. package/template/web/src/index.css +0 -154
  147. package/template/web/src/widgets/magic-8-ball.tsx +0 -27
  148. package/template/web/vite.config.ts +0 -15
  149. /package/{template → templates/blank}/alpic.json +0 -0
@@ -1,62 +0,0 @@
1
- import { McpServer } from "skybridge/server";
2
- import { z } from "zod";
3
-
4
- const Answers = [
5
- "As I see it, yes",
6
- "Don't count on it",
7
- "It is certain",
8
- "It is decidedly so",
9
- "Most likely",
10
- "My reply is no",
11
- "My sources say no",
12
- "Outlook good",
13
- "Outlook not so good",
14
- "Signs point to yes",
15
- "Very doubtful",
16
- "Without a doubt",
17
- "Yes definitely",
18
- "Yes",
19
- "You may rely on it",
20
- ];
21
-
22
- const server = new McpServer(
23
- {
24
- name: "alpic-openai-app",
25
- version: "0.0.1",
26
- },
27
- { capabilities: {} },
28
- ).registerWidget(
29
- "magic-8-ball",
30
- {
31
- description: "Magic 8 Ball",
32
- },
33
- {
34
- description: "For fortune-telling or seeking advice.",
35
- inputSchema: {
36
- question: z.string().describe("The user question."),
37
- },
38
- },
39
- async ({ question }) => {
40
- try {
41
- // deterministic answer
42
- const hash = question
43
- .split("")
44
- .reduce((acc, char) => acc + char.charCodeAt(0), 0);
45
- const answer = Answers[hash % Answers.length];
46
- return {
47
- structuredContent: { answer },
48
- content: [],
49
- isError: false,
50
- };
51
- } catch (error) {
52
- return {
53
- content: [{ type: "text", text: `Error: ${error}` }],
54
- isError: true,
55
- };
56
- }
57
- },
58
- );
59
-
60
- server.run();
61
-
62
- export type AppType = typeof server;
@@ -1,23 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2022",
4
- "module": "ESNext",
5
- "moduleResolution": "bundler",
6
- "lib": ["ES2022", "DOM", "DOM.Iterable"],
7
- "jsx": "react-jsx",
8
-
9
- "strict": true,
10
- "skipLibCheck": true,
11
- "esModuleInterop": true,
12
- "forceConsistentCasingInFileNames": true,
13
- "verbatimModuleSyntax": true,
14
-
15
- "noUnusedLocals": true,
16
- "noUnusedParameters": true,
17
- "noFallthroughCasesInSwitch": true,
18
-
19
- "noEmit": true
20
- },
21
- "include": ["server/src", "web/src", "web/vite.config.ts"],
22
- "exclude": ["dist", "node_modules"]
23
- }
@@ -1,11 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "noEmit": false,
5
- "outDir": "dist",
6
- "sourceMap": true,
7
- "declaration": true
8
- },
9
- "include": ["server/src"],
10
- "exclude": ["dist", "node_modules"]
11
- }
@@ -1,4 +0,0 @@
1
- import { generateHelpers } from "skybridge/web";
2
- import type { AppType } from "../../server/src/index.js";
3
-
4
- export const { useToolInfo } = generateHelpers<AppType>();
@@ -1,154 +0,0 @@
1
- @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600&display=swap");
2
-
3
- .container {
4
- display: flex;
5
- justify-content: center;
6
- align-items: center;
7
- min-height: 100%;
8
- max-height: 100%;
9
- overflow: hidden;
10
- padding: 1rem;
11
- box-sizing: border-box;
12
- }
13
-
14
- .ball {
15
- background: radial-gradient(
16
- circle at 30% 30%,
17
- #454565 0%,
18
- #1c1c30 40%,
19
- #0a0a10 100%
20
- );
21
- border-radius: 50%;
22
- width: 12rem;
23
- height: 12rem;
24
- display: flex;
25
- flex-direction: column;
26
- align-items: center;
27
- justify-content: center;
28
- font-family: monospace;
29
- text-align: center;
30
- position: relative;
31
- box-shadow:
32
- 0 10px 30px rgba(0, 0, 0, 0.5),
33
- 0 5px 15px rgba(0, 0, 0, 0.3),
34
- inset 0 -20px 40px rgba(0, 0, 0, 0.6);
35
- animation:
36
- float 3s ease-in-out infinite,
37
- colorShift 15s ease-in-out infinite;
38
- transition: transform 0.3s ease;
39
- cursor: pointer;
40
- border: 1px solid rgba(30, 30, 50, 0.6);
41
- }
42
-
43
- .ball:hover {
44
- transform: scale(1.05) translateY(-8px);
45
- animation: colorShift 15s ease-in-out infinite;
46
- box-shadow:
47
- 0 20px 50px rgba(0, 0, 0, 0.6),
48
- 0 10px 25px rgba(0, 0, 0, 0.4),
49
- inset 0 -20px 40px rgba(0, 0, 0, 0.6);
50
- }
51
-
52
- @keyframes float {
53
- 0%,
54
- 100% {
55
- transform: translateY(0);
56
- }
57
- 50% {
58
- transform: translateY(-8px);
59
- }
60
- }
61
-
62
- @keyframes colorShift {
63
- 0%,
64
- 100% {
65
- background: radial-gradient(
66
- circle at 30% 30%,
67
- #454565 0%,
68
- #1c1c30 40%,
69
- #0a0a10 100%
70
- );
71
- }
72
- 25% {
73
- background: radial-gradient(
74
- circle at 30% 30%,
75
- #3f4a65 0%,
76
- #181e30 40%,
77
- #090a10 100%
78
- );
79
- }
80
- 50% {
81
- background: radial-gradient(
82
- circle at 30% 30%,
83
- #3a5065 0%,
84
- #152230 40%,
85
- #080a10 100%
86
- );
87
- }
88
- 75% {
89
- background: radial-gradient(
90
- circle at 30% 30%,
91
- #3f4a65 0%,
92
- #181e30 40%,
93
- #090a10 100%
94
- );
95
- }
96
- }
97
-
98
- .ball::before {
99
- content: "";
100
- position: absolute;
101
- top: 8%;
102
- left: 20%;
103
- width: 30%;
104
- height: 20%;
105
- background: radial-gradient(
106
- ellipse,
107
- rgba(255, 255, 255, 0.3) 0%,
108
- transparent 70%
109
- );
110
- border-radius: 50%;
111
- pointer-events: none;
112
- }
113
-
114
- .ball::after {
115
- content: "";
116
- position: absolute;
117
- bottom: 8%;
118
- right: 25%;
119
- width: 25%;
120
- height: 10%;
121
- background: radial-gradient(
122
- ellipse,
123
- rgba(255, 255, 255, 0.1) 0%,
124
- transparent 70%
125
- );
126
- border-radius: 50%;
127
- pointer-events: none;
128
- }
129
-
130
- .question {
131
- font-size: clamp(0.5rem, 2vw, 0.75rem);
132
- color: lightgrey;
133
- max-width: 90%;
134
- word-wrap: break-word;
135
- overflow-wrap: break-word;
136
- text-align: center;
137
- line-height: 1.3;
138
- font-style: italic;
139
- }
140
-
141
- .answer {
142
- font-family: "Playfair Display", serif;
143
- font-style: italic;
144
- font-size: 1.25rem;
145
- font-weight: 600;
146
- margin-top: 0.5rem;
147
- color: #7dd3fc;
148
- text-shadow: 0 0 10px rgba(125, 211, 252, 0.5);
149
- max-width: 90%;
150
- word-wrap: break-word;
151
- overflow-wrap: break-word;
152
- text-align: center;
153
- line-height: 1.3;
154
- }
@@ -1,27 +0,0 @@
1
- import "@/index.css";
2
-
3
- import { mountWidget } from "skybridge/web";
4
- import { useToolInfo } from "../helpers";
5
-
6
- function Magic8Ball() {
7
- const { input, output } = useToolInfo<"magic-8-ball">();
8
-
9
- return (
10
- <div className="container">
11
- <div className="ball">
12
- {output ? (
13
- <>
14
- <div className="question">{input.question}</div>
15
- <div className="answer">{output.answer}</div>
16
- </>
17
- ) : (
18
- <div className="question">Shaking...</div>
19
- )}
20
- </div>
21
- </div>
22
- );
23
- }
24
-
25
- export default Magic8Ball;
26
-
27
- mountWidget(<Magic8Ball />);
@@ -1,15 +0,0 @@
1
- import path from "node:path";
2
- import react from "@vitejs/plugin-react";
3
- import { skybridge } from "skybridge/web";
4
- import { defineConfig, type PluginOption } from "vite";
5
-
6
- // https://vite.dev/config/
7
- export default defineConfig({
8
- plugins: [skybridge() as PluginOption, react()],
9
- root: __dirname,
10
- resolve: {
11
- alias: {
12
- "@": path.resolve(__dirname, "./src"),
13
- },
14
- },
15
- });
File without changes