@sellable/mcp 0.1.66 → 0.1.67
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/package.json
CHANGED
|
@@ -363,8 +363,18 @@ brief`, `Revise target`, `Revise offer/proof`, and `Other / custom`.
|
|
|
363
363
|
Include an `Open artifact:` link to `brief.md` before the approval question.
|
|
364
364
|
The visible brief must come before local persistence chrome. After the brief
|
|
365
365
|
is synthesized, render the approval-ready brief in chat before running visible
|
|
366
|
-
`mkdir`, `Write`, artifact-copy, or similar local draft setup.
|
|
367
|
-
|
|
366
|
+
`mkdir`, `Write`, artifact-copy, or similar local draft setup. When the host
|
|
367
|
+
supports sidecar/background work, let a background writer persist `brief.md`
|
|
368
|
+
while the main thread keeps the brief review moving. If no background writer
|
|
369
|
+
is available, write `brief.md` synchronously only after the visible brief is
|
|
370
|
+
already in chat. File/folder creation is not the user's value moment; the
|
|
371
|
+
brief is.
|
|
372
|
+
|
|
373
|
+
The approval question can be based on the rendered brief in chat. Do not wait
|
|
374
|
+
for file-write chrome before asking for approval. Before lead sourcing or any
|
|
375
|
+
downstream step reads `brief.md`, reconcile that the persisted file matches
|
|
376
|
+
the visible approved brief; if the sidecar is still running, wait quietly or
|
|
377
|
+
finish the write synchronously at that boundary.
|
|
368
378
|
|
|
369
379
|
- After the brief is approved or auto-confirmed, show the next progress line:
|
|
370
380
|
`Cool. Now I'm going to find people who are both a good fit and likely to
|
|
@@ -162,12 +162,17 @@
|
|
|
162
162
|
"Risks",
|
|
163
163
|
"After approval"
|
|
164
164
|
],
|
|
165
|
-
"mustRunBefore": ["
|
|
165
|
+
"mustRunBefore": ["start_background_artifact_writer", "Bash", "mkdir"],
|
|
166
166
|
"chatRenderRule": "After synthesizing the brief, render the approval-ready brief in chat before any visible local folder creation, file write, or artifact copy. The user should see useful brief content before local persistence chrome. Do not ask the user to approve a hidden artifact."
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
|
-
"action": "
|
|
170
|
-
"artifact": "brief.md"
|
|
169
|
+
"action": "start_background_artifact_writer",
|
|
170
|
+
"artifact": "brief.md",
|
|
171
|
+
"mode": "sidecar_when_host_supports_background_agents",
|
|
172
|
+
"shouldNotBlockMainThread": true,
|
|
173
|
+
"allowedToRunWhileUserReviewsInlineBrief": true,
|
|
174
|
+
"fallback": "If no background writer is available, write brief.md synchronously only after the approval-ready brief is already visible in chat.",
|
|
175
|
+
"chatRenderRule": "Do not surface folder/file-write progress in chat unless the write fails or the user asks. The main thread should keep the brief review moving while the sidecar persists brief.md."
|
|
171
176
|
},
|
|
172
177
|
{
|
|
173
178
|
"action": "ask_source_intake_after_strategy_batch",
|
|
@@ -254,7 +259,7 @@
|
|
|
254
259
|
],
|
|
255
260
|
"minimumVisibleBriefDetail": "full_readable_brief_before_question",
|
|
256
261
|
"requiredArtifactLinks": ["brief.md"],
|
|
257
|
-
"artifactLinkTiming": "
|
|
262
|
+
"artifactLinkTiming": "when_ready_before_downstream",
|
|
258
263
|
"avoidQuestionWhenOnlyUsefulAnswerIs": "looks good"
|
|
259
264
|
},
|
|
260
265
|
{
|
|
@@ -265,9 +270,16 @@
|
|
|
265
270
|
"noOpenStrategicTradeoff": true,
|
|
266
271
|
"noMissingRequiredInputs": true
|
|
267
272
|
}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"action": "ensure_background_artifact_ready",
|
|
276
|
+
"artifacts": ["brief.md"],
|
|
277
|
+
"requiredBeforeTransition": "find-leads",
|
|
278
|
+
"reconcileRule": "Before lead sourcing reads brief.md, verify the sidecar persisted the same brief shown in chat. If the sidecar is still running, wait quietly or finish the write synchronously; if it differs, reconcile to the visible approved brief.",
|
|
279
|
+
"chatRenderRule": "Do not block the brief approval question on this step. Only mention artifact persistence if it fails or needs user action."
|
|
268
280
|
}
|
|
269
281
|
],
|
|
270
|
-
"requiredArtifacts": [
|
|
282
|
+
"requiredArtifacts": [],
|
|
271
283
|
"producesArtifacts": [],
|
|
272
284
|
"allowedTools": [
|
|
273
285
|
"AskUserQuestion",
|