create-agentuity 3.0.6 → 3.0.8

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 (2) hide show
  1. package/README.md +3 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -23,11 +23,10 @@ bun create agentuity my-project
23
23
  ## What you get
24
24
 
25
25
  `agentuity project create` scaffolds a project using the official CLI for the
26
- framework you pick (Next.js, Nuxt, Remix, SvelteKit, Astro, Hono, or
27
- Vite + React) and overlays:
26
+ framework you pick (Next.js, Nuxt, SvelteKit, Astro, or Hono) and overlays:
28
27
 
29
28
  - **AI translation demo** — a working `/translate` endpoint plus landing page
30
- using the [AI SDK](https://sdk.vercel.ai) and `@ai-sdk/openai`.
29
+ using `@agentuity/aigateway`.
31
30
  - **Agentuity wiring** — `@agentuity/cli` as a devDependency, a `deploy`
32
31
  script, the Agentuity badge on the landing page, and `.gitignore` entries.
33
32
  - **Optional service augments** — a multi-select prompts you to add any of
@@ -46,7 +45,7 @@ The exact scripts depend on the framework you pick (the official CLI's own
46
45
  defaults are preserved). Every project gets at least:
47
46
 
48
47
  ```bash
49
- npm run dev # Run the framework's dev server with AI Gateway env
48
+ npm run dev # Run the framework's dev server with Agentuity env wiring
50
49
  npm run build # Framework build
51
50
  agentuity deploy # Deploy to Agentuity Cloud
52
51
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-agentuity",
3
- "version": "3.0.6",
3
+ "version": "3.0.8",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Agentuity employees and contributors",
6
6
  "description": "Create a new Agentuity project",