create-agentuity 3.0.6 → 3.0.7
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/README.md +3 -4
- 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,
|
|
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
|
|
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
|
|
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
|
```
|