create-mastra 1.0.0-beta.18 → 1.0.0-beta.19
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 +2 -0
- package/README.md +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ It includes everything you need to go from early prototypes to production-ready
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
11
|
> [!IMPORTANT]
|
|
12
|
-
> Make sure that you have Node.js
|
|
12
|
+
> Make sure that you have Node.js 22.13.0 or later installed on your system.
|
|
13
13
|
|
|
14
14
|
Using npm:
|
|
15
15
|
|
package/dist/index.js
CHANGED
|
@@ -1233,7 +1233,7 @@ var PinoLogger = class _PinoLogger extends MastraLogger {
|
|
|
1233
1233
|
};
|
|
1234
1234
|
|
|
1235
1235
|
var package_default = {
|
|
1236
|
-
version: "1.0.0-beta.
|
|
1236
|
+
version: "1.0.0-beta.19"};
|
|
1237
1237
|
function getPackageManagerAddCommand(pm) {
|
|
1238
1238
|
switch (pm) {
|
|
1239
1239
|
case "npm":
|
|
@@ -2599,13 +2599,13 @@ Start the development server:
|
|
|
2599
2599
|
${packageManager} run dev
|
|
2600
2600
|
\`\`\`
|
|
2601
2601
|
|
|
2602
|
-
Open [http://localhost:4111](http://localhost:4111) in your browser to access [Mastra Studio](https://mastra.ai/docs/
|
|
2602
|
+
Open [http://localhost:4111](http://localhost:4111) in your browser to access [Mastra Studio](https://mastra.ai/docs/getting-started/studio). It provides an interactive UI for building and testing your agents, along with a REST API that exposes your Mastra application as a local service. This lets you start building without worrying about integration right away.
|
|
2603
2603
|
|
|
2604
2604
|
You can start editing files inside the \`src/mastra\` directory. The development server will automatically reload whenever you make changes.
|
|
2605
2605
|
|
|
2606
2606
|
## Learn more
|
|
2607
2607
|
|
|
2608
|
-
To learn more about Mastra, visit our [documentation](https://mastra.ai/docs/
|
|
2608
|
+
To learn more about Mastra, visit our [documentation](https://mastra.ai/docs/). Your bootstrapped project includes example code for [agents](https://mastra.ai/docs/agents/overview), [tools](https://mastra.ai/docs/agents/using-tools), [workflows](https://mastra.ai/docs/workflows/overview), [scorers](https://mastra.ai/docs/evals/overview), and [observability](https://mastra.ai/docs/observability/overview).
|
|
2609
2609
|
|
|
2610
2610
|
If you're new to AI agents, check out our [course](https://mastra.ai/course) and [YouTube videos](https://youtube.com/@mastra-ai). You can also join our [Discord](https://discord.gg/BTYqqHKUrf) community to get help and share your projects.
|
|
2611
2611
|
|
|
@@ -2613,7 +2613,7 @@ If you're new to AI agents, check out our [course](https://mastra.ai/course) and
|
|
|
2613
2613
|
|
|
2614
2614
|
[Mastra Cloud](https://cloud.mastra.ai/) gives you a serverless agent environment with atomic deployments. Access your agents from anywhere and monitor performance. Make sure they don't go off the rails with evals and tracing.
|
|
2615
2615
|
|
|
2616
|
-
Check out the [deployment guide](https://mastra.ai/docs/
|
|
2616
|
+
Check out the [deployment guide](https://mastra.ai/docs/deployment/overview) for more details.`;
|
|
2617
2617
|
const formattedContent = await prettier.format(content, {
|
|
2618
2618
|
parser: "markdown",
|
|
2619
2619
|
singleQuote: true
|