s9n-devops-agent 1.5.2 → 1.5.3
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
|
@@ -1484,6 +1484,16 @@ The DevOps agent is monitoring this worktree for changes.
|
|
|
1484
1484
|
silent: false
|
|
1485
1485
|
});
|
|
1486
1486
|
|
|
1487
|
+
// Wait for agent to initialize and display its interactive commands
|
|
1488
|
+
// Then show the copy-paste instructions
|
|
1489
|
+
setTimeout(async () => {
|
|
1490
|
+
console.log('\n'); // Add spacing
|
|
1491
|
+
|
|
1492
|
+
// Generate and display instructions
|
|
1493
|
+
const instructions = this.generateClaudeInstructions(sessionData);
|
|
1494
|
+
this.displayInstructions(instructions, sessionId, sessionData.task);
|
|
1495
|
+
}, 3000); // Wait 3 seconds for agent to show interactive commands
|
|
1496
|
+
|
|
1487
1497
|
child.on('exit', (code) => {
|
|
1488
1498
|
console.log(`${CONFIG.colors.yellow}Agent exited with code: ${code}${CONFIG.colors.reset}`);
|
|
1489
1499
|
|
package/start-devops-session.sh
CHANGED
|
@@ -41,7 +41,7 @@ show_copyright() {
|
|
|
41
41
|
echo "======================================================================"
|
|
42
42
|
echo
|
|
43
43
|
echo " CS_DevOpsAgent - Intelligent Git Automation System"
|
|
44
|
-
echo " Version 1.5.
|
|
44
|
+
echo " Version 1.5.3 | Build 20251009.5"
|
|
45
45
|
echo " "
|
|
46
46
|
echo " Copyright (c) 2024 SecondBrain Labs"
|
|
47
47
|
echo " Author: Sachin Dev Duggal"
|