s9n-devops-agent 2.0.9 → 2.0.10
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 +1 -1
- package/src/session-coordinator.js +13 -15
package/package.json
CHANGED
|
@@ -1276,21 +1276,19 @@ The DevOps agent will automatically:
|
|
|
1276
1276
|
console.log(`Please switch to this directory before making any changes:`);
|
|
1277
1277
|
console.log(`cd "${instructions.worktreePath}"`);
|
|
1278
1278
|
console.log(``);
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
console.log(``);
|
|
1293
|
-
}
|
|
1279
|
+
console.log(`📋 IMPORTANT - READ PROJECT RULES FIRST:`);
|
|
1280
|
+
console.log(`Before making ANY changes, you MUST read the project's house rules at:`);
|
|
1281
|
+
console.log(`${houseRulesPath}`);
|
|
1282
|
+
console.log(``);
|
|
1283
|
+
console.log(`The house rules file contains:`);
|
|
1284
|
+
console.log(`- Project coding conventions and standards`);
|
|
1285
|
+
console.log(`- Required commit message formats`);
|
|
1286
|
+
console.log(`- File coordination protocols`);
|
|
1287
|
+
console.log(`- Branch naming and workflow rules`);
|
|
1288
|
+
console.log(`- Testing and review requirements`);
|
|
1289
|
+
console.log(``);
|
|
1290
|
+
console.log(`You must follow ALL rules in this file. Read it carefully before proceeding.`);
|
|
1291
|
+
console.log(``);
|
|
1294
1292
|
|
|
1295
1293
|
console.log(`⚠️ FILE COORDINATION (MANDATORY):`);
|
|
1296
1294
|
console.log(`Shared coordination directory: local_deploy/.file-coordination/`);
|