s9n-devops-agent 2.0.13 → 2.0.14
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
|
@@ -151,7 +151,15 @@ export function formatInstructions(session, options = {}) {
|
|
|
151
151
|
lines.push('');
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
-
//
|
|
154
|
+
// STOP instruction
|
|
155
|
+
lines.push('━'.repeat(70));
|
|
156
|
+
lines.push('');
|
|
157
|
+
lines.push(`${colors.red}${status.warning} IMPORTANT: STOP HERE${colors.reset}`);
|
|
158
|
+
lines.push('');
|
|
159
|
+
lines.push(`${colors.bright}Do NOT start coding or making changes yet!${colors.reset}`);
|
|
160
|
+
lines.push(`${colors.dim}Follow the steps above in order when instructed.${colors.reset}`);
|
|
161
|
+
lines.push(`${colors.dim}Wait for further instructions from the user before proceeding.${colors.reset}`);
|
|
162
|
+
lines.push('');
|
|
155
163
|
lines.push('━'.repeat(70));
|
|
156
164
|
lines.push('');
|
|
157
165
|
lines.push(`${status.checkmark} ${colors.green}DevOps Agent is now monitoring this session...${colors.reset}`);
|
|
@@ -1405,6 +1405,11 @@ The DevOps agent will automatically:
|
|
|
1405
1405
|
console.log(``);
|
|
1406
1406
|
console.log(`Write commit messages to: .devops-commit-${sessionId}.msg`);
|
|
1407
1407
|
console.log(`The DevOps agent will automatically commit and push changes.`);
|
|
1408
|
+
console.log(``);
|
|
1409
|
+
console.log(`⛔ IMPORTANT: STOP HERE AND WAIT`);
|
|
1410
|
+
console.log(`Do NOT start coding or making changes yet!`);
|
|
1411
|
+
console.log(`Follow the steps above in order when instructed by the user.`);
|
|
1412
|
+
console.log(`Wait for further instructions before proceeding.`);
|
|
1408
1413
|
console.log();
|
|
1409
1414
|
|
|
1410
1415
|
console.log(`${CONFIG.colors.yellow}══════════════════════════════════════════════════════════════${CONFIG.colors.reset}`);
|