You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cli): gate init AI hand-off on actual install, fix profile flag
The "let my AI set it up" hand-off was gated on what the user selected, not
what installed, so a failed skills install still offered it and claimed the
getting-started skill was ready. Gate it on actual installs and describe only
the tooling that landed. Also fix an inverted profile flag in the next-steps
message that printed `--profile undefined` when no profile was set.
hint: "use the getting-started skill and MCP server to bootstrap",
231
+
hint: "hand off and let your assistant bootstrap the project",
223
232
},
224
233
],
225
234
});
226
235
227
236
if(!isCancel(setupChoice)&&setupChoice==="ai"){
228
237
outro(
229
-
"Your AI tooling is ready. Ask your assistant to set up Trigger.dev and it will use the getting-started skill to add the SDK, config, and your first task."
238
+
installedSkills
239
+
? "Your AI tooling is ready. Ask your assistant to set up Trigger.dev and it will use the getting-started skill to add the SDK, config, and your first task."
240
+
: "The MCP server is installed. Ask your assistant to set up Trigger.dev using the MCP server."
0 commit comments