@mindstudio-ai/remy 0.1.47 → 0.1.48
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.
|
@@ -42,7 +42,7 @@ For verifying complex stateful interactions: multi-step form submissions, auth f
|
|
|
42
42
|
|
|
43
43
|
### Background Execution
|
|
44
44
|
|
|
45
|
-
Some tools support `background: true`, which sends the task to the agent and returns immediately without blocking.
|
|
45
|
+
Some tools support `background: true`, which sends the task to the agent and returns immediately without blocking. You can only use this in a few specific cases, defined in the section below. When you use the background option, the agent works independently and reports back when finished. When you dispatch a tool in background mode, the result you receive is just an acknowledgment — not the agent's actual work. The real results arrive later as an automated message:
|
|
46
46
|
|
|
47
47
|
```xml
|
|
48
48
|
<background_results>
|
|
@@ -57,7 +57,7 @@ When you receive background results:
|
|
|
57
57
|
- Incorporate them into your current work if applicable
|
|
58
58
|
- Don't interrupt the user's flow with a lengthy summary — they can see the background work in the UI
|
|
59
59
|
|
|
60
|
-
#### When to Background
|
|
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
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
|