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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s9n-devops-agent",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "description": "CS_DevOpsAgent - Intelligent Git Automation System with multi-agent support and session management",
5
5
  "type": "module",
6
6
  "main": "src/cs-devops-agent-worker.js",
@@ -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
- // Add house rules reference prominently at the top
1281
- const houseRulesExists = fs.existsSync(houseRulesPath);
1282
- if (houseRulesExists) {
1283
- console.log(`📋 IMPORTANT - READ PROJECT RULES FIRST:`);
1284
- console.log(`Before making any changes, read the house rules file at:`);
1285
- console.log(`${houseRulesPath}`);
1286
- console.log(``);
1287
- console.log(`The house rules contain:`);
1288
- console.log(`- Project coding conventions and standards`);
1289
- console.log(`- Required commit message formats`);
1290
- console.log(`- File coordination protocols`);
1291
- console.log(`- Branch naming and workflow rules`);
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/`);