@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.5.1] - 2026-08-19
4
+
5
+ ### Changed
6
+
7
+ - Docs and CLI help use the scoped npm name: `npx @fluxy-chat/create-fluxy-chat@latest` (unscoped `create-fluxy-chat` 404s on the registry)
8
+
3
9
  ## [0.5.0] - 2026-08-19
4
10
 
5
11
  ### Added
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluxy-chat/create-fluxy-chat",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Scaffold a new FluxyChat bot project with a single command",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
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
@@ -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