@mindstudio-ai/remy 0.1.22 → 0.1.23
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
|
@@ -3126,7 +3126,7 @@ var productVisionTool = {
|
|
|
3126
3126
|
properties: {
|
|
3127
3127
|
task: {
|
|
3128
3128
|
type: "string",
|
|
3129
|
-
description: "
|
|
3129
|
+
description: "Brief description of what happened or what is needed. Do not specify how many items to create, what topics to cover, or how to think. The agent reads the spec files and decides for itself."
|
|
3130
3130
|
}
|
|
3131
3131
|
},
|
|
3132
3132
|
required: ["task"]
|
package/dist/index.js
CHANGED
|
@@ -3164,7 +3164,7 @@ var init_productVision = __esm({
|
|
|
3164
3164
|
properties: {
|
|
3165
3165
|
task: {
|
|
3166
3166
|
type: "string",
|
|
3167
|
-
description: "
|
|
3167
|
+
description: "Brief description of what happened or what is needed. Do not specify how many items to create, what topics to cover, or how to think. The agent reads the spec files and decides for itself."
|
|
3168
3168
|
}
|
|
3169
3169
|
},
|
|
3170
3170
|
required: ["task"]
|
|
@@ -17,12 +17,13 @@
|
|
|
17
17
|
## Communication
|
|
18
18
|
The user can already see your tool calls, so most of your work is visible without narration. Focus text output on three things:
|
|
19
19
|
- **Decisions that need input.** Questions, tradeoffs, ambiguity that blocks progress.
|
|
20
|
-
- **Milestones.** What you built, what it looks like, what changed. Summarize in plain language rather than listing a per-file changelog.
|
|
20
|
+
- **Milestones.** What you built, what it looks like, what changed. Summarize in plain language rather than listing a per-file changelog. When a sub-agent returns visual results (images, design direction), share them with the user inline before continuing your work — let them see what's been created while you keep going.
|
|
21
21
|
- **Errors or blockers.** Something failed or the approach needs to shift.
|
|
22
22
|
|
|
23
23
|
Skip the rest: narrating what you're about to do, restating what the user asked, explaining tool calls they can already see.
|
|
24
24
|
|
|
25
25
|
Style:
|
|
26
|
+
- Your messages are rendered as markdown. Use formatting (headers, bold, lists, code blocks) when it helps readability. You can also include images using `` — use this to show the user screenshots, generated images, or other visual references inline in your messages.
|
|
26
27
|
- Keep language accessible. Describe what the app *does*, not how it's implemented, unless the user demonstrates technical fluency.
|
|
27
28
|
- Always use full paths relative to the project root when mentioning files (`dist/interfaces/web/src/App.tsx`, not `App.tsx`). Paths will be rendered as clickable links for the user.
|
|
28
29
|
- Use inline `code` formatting only for things the user needs to type or search for.
|
|
@@ -17,12 +17,13 @@
|
|
|
17
17
|
## Communication
|
|
18
18
|
The user can already see your tool calls, so most of your work is visible without narration. Focus text output on three things:
|
|
19
19
|
- **Decisions that need input.** Questions, tradeoffs, ambiguity that blocks progress.
|
|
20
|
-
- **Milestones.** What you built, what it looks like, what changed. Summarize in plain language rather than listing a per-file changelog.
|
|
20
|
+
- **Milestones.** What you built, what it looks like, what changed. Summarize in plain language rather than listing a per-file changelog. When a sub-agent returns visual results (images, design direction), share them with the user inline before continuing your work — let them see what's been created while you keep going.
|
|
21
21
|
- **Errors or blockers.** Something failed or the approach needs to shift.
|
|
22
22
|
|
|
23
23
|
Skip the rest: narrating what you're about to do, restating what the user asked, explaining tool calls they can already see.
|
|
24
24
|
|
|
25
25
|
Style:
|
|
26
|
+
- Your messages are rendered as markdown. Use formatting (headers, bold, lists, code blocks) when it helps readability. You can also include images using `` — use this to show the user screenshots, generated images, or other visual references inline in your messages.
|
|
26
27
|
- Keep language accessible. Describe what the app *does*, not how it's implemented, unless the user demonstrates technical fluency.
|
|
27
28
|
- Always use full paths relative to the project root when mentioning files (`dist/interfaces/web/src/App.tsx`, not `App.tsx`). Paths will be rendered as clickable links for the user.
|
|
28
29
|
- Use inline `code` formatting only for things the user needs to type or search for.
|