@jakkrichm/create-nexus-devflow 2.0.11 → 2.0.12
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/bin/create-nexus-devflow.js +15 -3
- package/package.json +1 -1
|
@@ -256,17 +256,29 @@ async function confirmUpdateConflicts(prepared, options) {
|
|
|
256
256
|
return answer.trim().toLowerCase() === "y";
|
|
257
257
|
}
|
|
258
258
|
|
|
259
|
+
function printNextSteps() {
|
|
260
|
+
console.log("\nNext steps in your AI IDE (Antigravity, Claude Code, Codex, etc.):");
|
|
261
|
+
console.log(" 1. Project Setup & Baseline:");
|
|
262
|
+
console.log(" - Existing project : Run `/adopt` (or `$adopt`) to scan codebase and bootstrap context.");
|
|
263
|
+
console.log(" - Fresh project : Run `/onboard` (or `$onboard`) to configure project baseline.");
|
|
264
|
+
console.log(" 2. System Health & CI:");
|
|
265
|
+
console.log(" - Health check : Run `/doctor` (or `$doctor`) to verify adapters and setup.");
|
|
266
|
+
console.log(" - CI configuration : Run `/ci` (or `$ci`) to setup GitHub Actions workflow.");
|
|
267
|
+
console.log(" 3. Delivery Flow:");
|
|
268
|
+
console.log(" - Interactive guide: Run `/devflow` (or `$devflow`) for state & routing assistance.");
|
|
269
|
+
console.log(" - Start new work : Run `/00-discover` (or `$00-discover`) to begin delivery lifecycle.");
|
|
270
|
+
}
|
|
271
|
+
|
|
259
272
|
function printInstallSuccess(targetDir, result, options) {
|
|
260
273
|
console.log("\nNexus-DevFlow overlay successfully installed!");
|
|
261
274
|
console.log(`Applied ${result.appliedCount} file(s).`);
|
|
262
|
-
|
|
263
|
-
console.log(" 1. Open your project in your AI IDE (Antigravity, Codex, Claude Code, etc.)");
|
|
264
|
-
console.log(" 2. Run `/00-Discover` or `/help` to start your DevFlow workspace workflow.");
|
|
275
|
+
printNextSteps();
|
|
265
276
|
}
|
|
266
277
|
|
|
267
278
|
function printUpdateSuccess(prepared, result) {
|
|
268
279
|
console.log("\nNexus-DevFlow update successfully applied!");
|
|
269
280
|
console.log(`Applied ${result.appliedCount} file(s), removed ${result.removedCount} orphaned file(s).`);
|
|
281
|
+
printNextSteps();
|
|
270
282
|
}
|
|
271
283
|
|
|
272
284
|
main().catch((err) => {
|