create-skybridge 0.0.0-dev.be6d01d → 0.0.0-dev.be78894

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 (82) hide show
  1. package/dist/index.js +318 -212
  2. package/package.json +8 -7
  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 +2 -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/{template → templates/blank}/node_modules/.bin/tsc +2 -2
  12. package/{template → templates/blank}/node_modules/.bin/tsserver +2 -2
  13. package/templates/blank/node_modules/.bin/vite +21 -0
  14. package/templates/blank/package.json +28 -0
  15. package/templates/blank/src/helpers.ts +4 -0
  16. package/templates/blank/src/server.ts +21 -0
  17. package/templates/blank/src/vite-manifest.d.ts +4 -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 +6 -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/vite +21 -0
  32. package/{template → templates/demo}/package.json +15 -10
  33. package/templates/demo/src/helpers.ts +4 -0
  34. package/templates/demo/src/index.css +59 -0
  35. package/templates/demo/src/server.ts +77 -0
  36. package/templates/demo/src/views/components/doc-link.tsx +22 -0
  37. package/templates/demo/src/views/components/doc.tsx +21 -0
  38. package/templates/demo/src/views/components/nav.tsx +31 -0
  39. package/templates/demo/src/views/components/progress.tsx +35 -0
  40. package/templates/demo/src/views/components/steps/outro.tsx +68 -0
  41. package/templates/demo/src/views/components/steps/state.tsx +47 -0
  42. package/templates/demo/src/views/components/steps/tool-call.tsx +53 -0
  43. package/templates/demo/src/views/components/steps/tool-output.tsx +40 -0
  44. package/templates/demo/src/views/images/mascot/beret.png +0 -0
  45. package/templates/demo/src/views/images/mascot/chapka.png +0 -0
  46. package/templates/demo/src/views/images/mascot/cowboy-hat.png +0 -0
  47. package/templates/demo/src/views/images/mascot/fez.png +0 -0
  48. package/templates/demo/src/views/images/mascot/jester-hat.png +0 -0
  49. package/templates/demo/src/views/images/mascot/mitre.png +0 -0
  50. package/templates/demo/src/views/images/mascot/non-la.png +0 -0
  51. package/templates/demo/src/views/images/mascot/original.png +0 -0
  52. package/templates/demo/src/views/images/mascot/propeller-beanie.png +0 -0
  53. package/templates/demo/src/views/images/mascot/ski-mask.png +0 -0
  54. package/templates/demo/src/views/images/mascot/sombrero.png +0 -0
  55. package/templates/demo/src/views/images/mascot/top-hat.png +0 -0
  56. package/templates/demo/src/views/images/mascot/viking-helmet.png +0 -0
  57. package/templates/demo/src/views/onboarding.tsx +63 -0
  58. package/templates/demo/src/views/use-mascot.ts +60 -0
  59. package/templates/demo/src/vite-manifest.d.ts +4 -0
  60. package/templates/demo/tsconfig.json +11 -0
  61. package/templates/demo/vite.config.ts +14 -0
  62. package/dist/index.test.d.ts +0 -1
  63. package/dist/index.test.js +0 -33
  64. package/template/AGENTS.md +0 -1
  65. package/template/README.md +0 -97
  66. package/template/_headers +0 -2
  67. package/template/node_modules/.bin/alpic +0 -21
  68. package/template/node_modules/.bin/sb +0 -21
  69. package/template/node_modules/.bin/skybridge +0 -21
  70. package/template/node_modules/.bin/vite +0 -21
  71. package/template/node_modules/.bin/wrangler +0 -21
  72. package/template/node_modules/.bin/wrangler2 +0 -21
  73. package/template/server/src/index.ts +0 -67
  74. package/template/server/src/vite-manifest.d.ts +0 -2
  75. package/template/tsconfig.json +0 -9
  76. package/template/web/src/helpers.ts +0 -4
  77. package/template/web/src/index.css +0 -154
  78. package/template/web/src/widgets/magic-8-ball.tsx +0 -27
  79. package/template/web/vite.config.ts +0 -15
  80. package/template/wrangler.jsonc +0 -12
  81. /package/{template → templates/blank}/alpic.json +0 -0
  82. /package/{template → templates/demo}/node_modules/.bin/tsx +0 -0