@fluxy-chat/create-fluxy-chat 0.5.0 → 0.5.1
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/CHANGELOG.md +6 -0
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/readme.md +1 -1
- package/templates/full/README.md +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -897,7 +897,7 @@ var HELP_TEXT = `
|
|
|
897
897
|
${pc.bold("create-fluxy-chat")} \u2014 Scaffold a new FluxyChat bot project
|
|
898
898
|
|
|
899
899
|
${pc.bold("Usage:")}
|
|
900
|
-
npx create-fluxy-chat [project-name] [options]
|
|
900
|
+
npx @fluxy-chat/create-fluxy-chat [project-name] [options]
|
|
901
901
|
|
|
902
902
|
${pc.bold("Options:")}
|
|
903
903
|
-a, --adapter <type> Adapter: ${TEMPLATE_CHOICES}
|
|
@@ -913,8 +913,8 @@ ${pc.bold("Options:")}
|
|
|
913
913
|
-h, --help Show this help
|
|
914
914
|
|
|
915
915
|
${pc.bold("Examples:")}
|
|
916
|
-
${pc.cyan("npx create-fluxy-chat my-app --mode hosted -y")}
|
|
917
|
-
${pc.cyan("npx create-fluxy-chat my-app --full -y")}
|
|
916
|
+
${pc.cyan("npx @fluxy-chat/create-fluxy-chat my-app --mode hosted -y")}
|
|
917
|
+
${pc.cyan("npx @fluxy-chat/create-fluxy-chat my-app --full -y")}
|
|
918
918
|
${pc.cyan("npx create-fluxy-chat my-chat --minimal")}
|
|
919
919
|
${pc.cyan("npx create-fluxy-chat my-hr-bot --template hr-feedback")}
|
|
920
920
|
${pc.cyan("npx create-fluxy-chat my-chat --template react")}
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -6,7 +6,7 @@ Scaffold a new [FluxyChat](https://github.com/AlessandroFare/fluxychat) bot proj
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Full stack — chat + @assistant + setup scripts (recommended)
|
|
9
|
-
npx create-fluxy-chat my-app --full -y
|
|
9
|
+
npx @fluxy-chat/create-fluxy-chat my-app --full -y
|
|
10
10
|
cd my-app && pnpm setup && pnpm dev
|
|
11
11
|
|
|
12
12
|
# Minimal chat widget
|
package/templates/full/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Chat + AI agent + tool calls in one Vite app. Provisions against a local FluxyCh
|
|
|
7
7
|
**Hosted (no wrangler):**
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx create-fluxy-chat my-app --mode hosted -y
|
|
10
|
+
npx @fluxy-chat/create-fluxy-chat my-app --mode hosted -y
|
|
11
11
|
cd my-app
|
|
12
12
|
pnpm install
|
|
13
13
|
pnpm setup:hosted
|