@mindstudio-ai/remy 0.1.49 → 0.1.50
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/dist/headless.js
CHANGED
|
@@ -1393,7 +1393,7 @@ function runCli(cmd, options) {
|
|
|
1393
1393
|
var askMindStudioSdkTool = {
|
|
1394
1394
|
definition: {
|
|
1395
1395
|
name: "askMindStudioSdk",
|
|
1396
|
-
description: "
|
|
1396
|
+
description: "@mindstudio-ai/agent SDK expert. Knows every action, model, connector, and configuration option. Returns architectural guidance and working code. Describe what you want to build, not just what API method you need. Batch related questions into a single query.",
|
|
1397
1397
|
inputSchema: {
|
|
1398
1398
|
type: "object",
|
|
1399
1399
|
properties: {
|
package/dist/index.js
CHANGED
|
@@ -1146,7 +1146,7 @@ var init_sdkConsultant = __esm({
|
|
|
1146
1146
|
askMindStudioSdkTool = {
|
|
1147
1147
|
definition: {
|
|
1148
1148
|
name: "askMindStudioSdk",
|
|
1149
|
-
description: "
|
|
1149
|
+
description: "@mindstudio-ai/agent SDK expert. Knows every action, model, connector, and configuration option. Returns architectural guidance and working code. Describe what you want to build, not just what API method you need. Batch related questions into a single query.",
|
|
1150
1150
|
inputSchema: {
|
|
1151
1151
|
type: "object",
|
|
1152
1152
|
properties: {
|
|
@@ -102,6 +102,10 @@ When a scenario runs, the platform:
|
|
|
102
102
|
|
|
103
103
|
This is deterministic — same scenario always produces the same state.
|
|
104
104
|
|
|
105
|
-
## Scenario
|
|
105
|
+
## Scenario Data
|
|
106
|
+
|
|
107
|
+
Align scenario data to the vibe of the app - construct data that feels like it fits.
|
|
108
|
+
|
|
109
|
+
### Scenario Images
|
|
106
110
|
|
|
107
111
|
When scenarios seed data that includes image URLs (profile photos, product images, cover art, etc.), ask the `visualDesignExpert` to generate a small batch of images that fit the app's aesthetic before writing the scenario code. A handful of bespoke photos make scenarios feel dramatically more real than placeholder services. Use the CDN URLs directly in your `db.push()` calls.
|
|
@@ -20,7 +20,7 @@ Always consult the design expert during intake and before building any new produ
|
|
|
20
20
|
|
|
21
21
|
### Product Vision (`productVision`)
|
|
22
22
|
|
|
23
|
-
Your product thinking partner. Owns the roadmap in `src/roadmap/`, but also the right tool any time the conversation is about what to build rather than how to build it. Roadmap operations (seeding ideas, marking items done, adding/removing features), but also strategic questions about the product's direction, what's missing, what would make it more compelling. It reads spec and roadmap files automatically. Describe the situation and let it decide what to do.
|
|
23
|
+
Your product thinking partner. Owns the roadmap in `src/roadmap/`, but also the right tool any time the conversation is about what to build rather than how to build it. Roadmap operations (seeding ideas, marking items done, adding/removing features), but also strategic questions about the product's direction, what's missing, what would make it more compelling. It reads spec and roadmap files automatically. Describe the situation and let it decide what to do. Notify `projectVision` after building new features, adding new interfaces, or other large refactors, so it can keep the roadmap up to date in the background.
|
|
24
24
|
|
|
25
25
|
### Mindstudio SDK Consultant (`askMindStudioSdk`)
|
|
26
26
|
|
|
@@ -60,7 +60,7 @@ When you receive background results:
|
|
|
60
60
|
#### When You Are Allowed to Background
|
|
61
61
|
|
|
62
62
|
You can only background the following two tasks, unless the user specifically asks you to do work in the background:
|
|
63
|
-
- `productVision` seeding the intiial roadmap after writing the spec for the first time. This task takes a while and we can allow the user to continue building while it happens in the background.
|
|
63
|
+
- `productVision` seeding the intiial roadmap after writing the spec for the first time or updating the roadmap after large work sessions. This task takes a while and we can allow the user to continue building while it happens in the background.
|
|
64
64
|
- After writing the spec, once you have finalized the shape of the app, ask `visualDesignExpert` to create an "iphone app store" style icon for the app, then set it with `setProjectMetadata({ iconUrl: ... })`
|
|
65
65
|
|
|
66
66
|
Do not background any other tasks.
|