create-skybridge 0.0.0-dev.0f97936 → 0.0.0-dev.0fc3a70

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 (66) hide show
  1. package/dist/index.js +214 -315
  2. package/dist/index.test.d.ts +1 -0
  3. package/dist/index.test.js +35 -0
  4. package/package.json +6 -7
  5. package/{templates/demo → template}/Dockerfile +1 -1
  6. package/{templates/demo → template}/README.md +15 -16
  7. package/{templates/blank → template}/_gitignore +1 -2
  8. package/{templates/blank → template}/node_modules/.bin/alpic +2 -2
  9. package/{templates/demo → template}/node_modules/.bin/tsc +2 -2
  10. package/{templates/blank → template}/node_modules/.bin/tsserver +2 -2
  11. package/{templates/blank → template}/node_modules/.bin/tsx +2 -2
  12. package/template/node_modules/.bin/vite +21 -0
  13. package/{templates/demo → template}/package.json +15 -15
  14. package/{templates/demo → template}/src/server.ts +6 -23
  15. package/{templates/demo → template}/src/views/components/steps/tool-output.tsx +2 -2
  16. package/{templates/demo → template}/src/views/onboarding.tsx +1 -1
  17. package/template/src/vite-manifest.d.ts +4 -0
  18. package/templates/blank/Dockerfile +0 -53
  19. package/templates/blank/README.md +0 -92
  20. package/templates/blank/node_modules/.bin/tsc +0 -21
  21. package/templates/blank/node_modules/.bin/vite +0 -21
  22. package/templates/blank/package.json +0 -29
  23. package/templates/blank/src/server.ts +0 -16
  24. package/templates/blank/tsconfig.json +0 -5
  25. package/templates/blank/vite.config.ts +0 -6
  26. package/templates/demo/.dockerignore +0 -4
  27. package/templates/demo/AGENTS.md +0 -1
  28. package/templates/demo/_gitignore +0 -7
  29. package/templates/demo/alpic.json +0 -3
  30. package/templates/demo/node_modules/.bin/alpic +0 -21
  31. package/templates/demo/node_modules/.bin/sb +0 -21
  32. package/templates/demo/node_modules/.bin/skybridge +0 -21
  33. package/templates/demo/node_modules/.bin/tsserver +0 -21
  34. package/templates/demo/node_modules/.bin/tsx +0 -21
  35. package/templates/demo/node_modules/.bin/vite +0 -21
  36. package/templates/demo/src/helpers.ts +0 -4
  37. /package/{templates/blank → template}/.dockerignore +0 -0
  38. /package/{templates/blank → template}/AGENTS.md +0 -0
  39. /package/{templates/blank → template}/alpic.json +0 -0
  40. /package/{templates/blank → template}/node_modules/.bin/sb +0 -0
  41. /package/{templates/blank → template}/node_modules/.bin/skybridge +0 -0
  42. /package/{templates/blank → template}/src/helpers.ts +0 -0
  43. /package/{templates/demo → template}/src/index.css +0 -0
  44. /package/{templates/demo → template}/src/views/components/doc-link.tsx +0 -0
  45. /package/{templates/demo → template}/src/views/components/doc.tsx +0 -0
  46. /package/{templates/demo → template}/src/views/components/nav.tsx +0 -0
  47. /package/{templates/demo → template}/src/views/components/progress.tsx +0 -0
  48. /package/{templates/demo → template}/src/views/components/steps/outro.tsx +0 -0
  49. /package/{templates/demo → template}/src/views/components/steps/state.tsx +0 -0
  50. /package/{templates/demo → template}/src/views/components/steps/tool-call.tsx +0 -0
  51. /package/{templates/demo → template}/src/views/images/mascot/beret.png +0 -0
  52. /package/{templates/demo → template}/src/views/images/mascot/chapka.png +0 -0
  53. /package/{templates/demo → template}/src/views/images/mascot/cowboy-hat.png +0 -0
  54. /package/{templates/demo → template}/src/views/images/mascot/fez.png +0 -0
  55. /package/{templates/demo → template}/src/views/images/mascot/jester-hat.png +0 -0
  56. /package/{templates/demo → template}/src/views/images/mascot/mitre.png +0 -0
  57. /package/{templates/demo → template}/src/views/images/mascot/non-la.png +0 -0
  58. /package/{templates/demo → template}/src/views/images/mascot/original.png +0 -0
  59. /package/{templates/demo → template}/src/views/images/mascot/propeller-beanie.png +0 -0
  60. /package/{templates/demo → template}/src/views/images/mascot/ski-mask.png +0 -0
  61. /package/{templates/demo → template}/src/views/images/mascot/sombrero.png +0 -0
  62. /package/{templates/demo → template}/src/views/images/mascot/top-hat.png +0 -0
  63. /package/{templates/demo → template}/src/views/images/mascot/viking-helmet.png +0 -0
  64. /package/{templates/demo → template}/src/views/use-mascot.ts +0 -0
  65. /package/{templates/demo → template}/tsconfig.json +0 -0
  66. /package/{templates/demo → template}/vite.config.ts +0 -0
@@ -1,21 +0,0 @@
1
- #!/bin/sh
2
- basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
-
4
- case `uname` in
5
- *CYGWIN*|*MINGW*|*MSYS*)
6
- if command -v cygpath > /dev/null 2>&1; then
7
- basedir=`cygpath -w "$basedir"`
8
- fi
9
- ;;
10
- esac
11
-
12
- if [ -z "$NODE_PATH" ]; then
13
- export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
- else
15
- export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
- fi
17
- if [ -x "$basedir/node" ]; then
18
- exec "$basedir/node" "$basedir/../skybridge/bin/run.js" "$@"
19
- else
20
- exec node "$basedir/../skybridge/bin/run.js" "$@"
21
- fi
@@ -1,21 +0,0 @@
1
- #!/bin/sh
2
- basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
-
4
- case `uname` in
5
- *CYGWIN*|*MINGW*|*MSYS*)
6
- if command -v cygpath > /dev/null 2>&1; then
7
- basedir=`cygpath -w "$basedir"`
8
- fi
9
- ;;
10
- esac
11
-
12
- if [ -z "$NODE_PATH" ]; then
13
- export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
- else
15
- export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
- fi
17
- if [ -x "$basedir/node" ]; then
18
- exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
19
- else
20
- exec node "$basedir/../typescript/bin/tsserver" "$@"
21
- fi
@@ -1,21 +0,0 @@
1
- #!/bin/sh
2
- basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
-
4
- case `uname` in
5
- *CYGWIN*|*MINGW*|*MSYS*)
6
- if command -v cygpath > /dev/null 2>&1; then
7
- basedir=`cygpath -w "$basedir"`
8
- fi
9
- ;;
10
- esac
11
-
12
- if [ -z "$NODE_PATH" ]; then
13
- export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.22.4/node_modules/tsx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.22.4/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
- else
15
- export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.22.4/node_modules/tsx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.22.4/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
- fi
17
- if [ -x "$basedir/node" ]; then
18
- exec "$basedir/node" "$basedir/../tsx/dist/cli.mjs" "$@"
19
- else
20
- exec node "$basedir/../tsx/dist/cli.mjs" "$@"
21
- fi
@@ -1,21 +0,0 @@
1
- #!/bin/sh
2
- basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
-
4
- case `uname` in
5
- *CYGWIN*|*MINGW*|*MSYS*)
6
- if command -v cygpath > /dev/null 2>&1; then
7
- basedir=`cygpath -w "$basedir"`
8
- fi
9
- ;;
10
- esac
11
-
12
- if [ -z "$NODE_PATH" ]; then
13
- export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.16_@types+node@24.13.2_esbuild@0.28.1_jiti@2.7.0_terser@5.44.1_tsx@4.22.4_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.16_@types+node@24.13.2_esbuild@0.28.1_jiti@2.7.0_terser@5.44.1_tsx@4.22.4_yaml@2.8.2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
- else
15
- export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.16_@types+node@24.13.2_esbuild@0.28.1_jiti@2.7.0_terser@5.44.1_tsx@4.22.4_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.16_@types+node@24.13.2_esbuild@0.28.1_jiti@2.7.0_terser@5.44.1_tsx@4.22.4_yaml@2.8.2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
- fi
17
- if [ -x "$basedir/node" ]; then
18
- exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
19
- else
20
- exec node "$basedir/../vite/bin/vite.js" "$@"
21
- fi
@@ -1,4 +0,0 @@
1
- import { generateHelpers } from "skybridge/web";
2
- import type { AppType } from "./server.js";
3
-
4
- export const { useToolInfo, useCallTool } = generateHelpers<AppType>();
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes