@askexenow/exe-os 0.9.2 → 0.9.4

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.
@@ -1463,10 +1463,10 @@ You report to the COO. All work flows through the COO. These procedures are non-
1463
1463
  Use store_memory to write a structured summary. Include: project name, what was done,
1464
1464
  decisions made, tests status, open items or risks.
1465
1465
 
1466
- 6. AFTER committing changes to exe-os itself \u2014 REBUILD (mandatory, never skip):
1467
- - Run: npm run deploy
1468
- - This builds, installs globally, and re-registers hooks/MCP in one step.
1469
- - Do NOT ask permission. Do NOT say "want me to rebuild?" \u2014 just do it.
1466
+ 6. AFTER committing changes to exe-os itself \u2014 REBUILD:
1467
+ - If you are the COO or CTO on the MAIN branch (not a worktree): run \`npm run deploy\`.
1468
+ - If you are in a git worktree: run \`npm run build\` ONLY. NEVER run deploy from a worktree \u2014 it re-registers hooks pointing at the worktree path, and deleting the worktree breaks every hook system-wide.
1469
+ - Engineers and specialists: ALWAYS use \`npm run build\` only. Deploy is restricted to COO and CTO on main.
1470
1470
  - If the build fails, fix the error and retry before moving on.
1471
1471
 
1472
1472
  7. AFTER reporting \u2014 CHECK FOR NEXT WORK (mandatory):
@@ -8285,10 +8285,10 @@ You report to the COO. All work flows through the COO. These procedures are non-
8285
8285
  Use store_memory to write a structured summary. Include: project name, what was done,
8286
8286
  decisions made, tests status, open items or risks.
8287
8287
 
8288
- 6. AFTER committing changes to exe-os itself \u2014 REBUILD (mandatory, never skip):
8289
- - Run: npm run deploy
8290
- - This builds, installs globally, and re-registers hooks/MCP in one step.
8291
- - Do NOT ask permission. Do NOT say "want me to rebuild?" \u2014 just do it.
8288
+ 6. AFTER committing changes to exe-os itself \u2014 REBUILD:
8289
+ - If you are the COO or CTO on the MAIN branch (not a worktree): run \`npm run deploy\`.
8290
+ - If you are in a git worktree: run \`npm run build\` ONLY. NEVER run deploy from a worktree \u2014 it re-registers hooks pointing at the worktree path, and deleting the worktree breaks every hook system-wide.
8291
+ - Engineers and specialists: ALWAYS use \`npm run build\` only. Deploy is restricted to COO and CTO on main.
8292
8292
  - If the build fails, fix the error and retry before moving on.
8293
8293
 
8294
8294
  7. AFTER reporting \u2014 CHECK FOR NEXT WORK (mandatory):
@@ -596,10 +596,10 @@ You report to the COO. All work flows through the COO. These procedures are non-
596
596
  Use store_memory to write a structured summary. Include: project name, what was done,
597
597
  decisions made, tests status, open items or risks.
598
598
 
599
- 6. AFTER committing changes to exe-os itself \u2014 REBUILD (mandatory, never skip):
600
- - Run: npm run deploy
601
- - This builds, installs globally, and re-registers hooks/MCP in one step.
602
- - Do NOT ask permission. Do NOT say "want me to rebuild?" \u2014 just do it.
599
+ 6. AFTER committing changes to exe-os itself \u2014 REBUILD:
600
+ - If you are the COO or CTO on the MAIN branch (not a worktree): run \`npm run deploy\`.
601
+ - If you are in a git worktree: run \`npm run build\` ONLY. NEVER run deploy from a worktree \u2014 it re-registers hooks pointing at the worktree path, and deleting the worktree breaks every hook system-wide.
602
+ - Engineers and specialists: ALWAYS use \`npm run build\` only. Deploy is restricted to COO and CTO on main.
603
603
  - If the build fails, fix the error and retry before moving on.
604
604
 
605
605
  7. AFTER reporting \u2014 CHECK FOR NEXT WORK (mandatory):
@@ -2019,10 +2019,10 @@ You report to the COO. All work flows through the COO. These procedures are non-
2019
2019
  Use store_memory to write a structured summary. Include: project name, what was done,
2020
2020
  decisions made, tests status, open items or risks.
2021
2021
 
2022
- 6. AFTER committing changes to exe-os itself \u2014 REBUILD (mandatory, never skip):
2023
- - Run: npm run deploy
2024
- - This builds, installs globally, and re-registers hooks/MCP in one step.
2025
- - Do NOT ask permission. Do NOT say "want me to rebuild?" \u2014 just do it.
2022
+ 6. AFTER committing changes to exe-os itself \u2014 REBUILD:
2023
+ - If you are the COO or CTO on the MAIN branch (not a worktree): run \`npm run deploy\`.
2024
+ - If you are in a git worktree: run \`npm run build\` ONLY. NEVER run deploy from a worktree \u2014 it re-registers hooks pointing at the worktree path, and deleting the worktree breaks every hook system-wide.
2025
+ - Engineers and specialists: ALWAYS use \`npm run build\` only. Deploy is restricted to COO and CTO on main.
2026
2026
  - If the build fails, fix the error and retry before moving on.
2027
2027
 
2028
2028
  7. AFTER reporting \u2014 CHECK FOR NEXT WORK (mandatory):
@@ -1735,20 +1735,39 @@ function setupGhostty(home) {
1735
1735
  const configPath = path9.join(configDir, "config");
1736
1736
  const backupPath = path9.join(configDir, "config.backup");
1737
1737
  mkdirSync6(configDir, { recursive: true });
1738
+ const START_MARKER = "# \u2500\u2500 exe-os:ghostty-start \u2500\u2500";
1739
+ const END_MARKER = "# \u2500\u2500 exe-os:ghostty-end \u2500\u2500";
1740
+ const assetContent = readFileSync8(assetPath, "utf8").trim();
1741
+ const markedSection = `${START_MARKER}
1742
+ ${assetContent}
1743
+ ${END_MARKER}`;
1738
1744
  if (existsSync9(configPath)) {
1739
1745
  const existing = readFileSync8(configPath, "utf8");
1740
- if (existing.includes("Exe OS")) {
1741
- copyFileSync(assetPath, configPath);
1746
+ if (existing.includes(START_MARKER) && existing.includes(END_MARKER)) {
1747
+ const before = existing.slice(0, existing.indexOf(START_MARKER));
1748
+ const after = existing.slice(existing.indexOf(END_MARKER) + END_MARKER.length);
1749
+ writeFileSync6(configPath, `${before}${markedSection}${after}`);
1750
+ } else if (existing.includes("Exe OS")) {
1751
+ if (!existsSync9(backupPath)) {
1752
+ copyFileSync(configPath, backupPath);
1753
+ process.stderr.write(`exe-os: backed up existing Ghostty config to ${backupPath}
1754
+ `);
1755
+ }
1756
+ writeFileSync6(configPath, `${markedSection}
1757
+ `);
1742
1758
  } else {
1743
1759
  if (!existsSync9(backupPath)) {
1744
1760
  copyFileSync(configPath, backupPath);
1745
1761
  process.stderr.write(`exe-os: backed up existing Ghostty config to ${backupPath}
1746
1762
  `);
1747
1763
  }
1748
- copyFileSync(assetPath, configPath);
1764
+ writeFileSync6(configPath, `${markedSection}
1765
+
1766
+ ${existing}`);
1749
1767
  }
1750
1768
  } else {
1751
- copyFileSync(assetPath, configPath);
1769
+ writeFileSync6(configPath, `${markedSection}
1770
+ `);
1752
1771
  }
1753
1772
  process.stderr.write("exe-os: Ghostty config installed\n");
1754
1773
  }
@@ -1123,20 +1123,39 @@ function setupGhostty(home) {
1123
1123
  const configPath = path5.join(configDir, "config");
1124
1124
  const backupPath = path5.join(configDir, "config.backup");
1125
1125
  mkdirSync3(configDir, { recursive: true });
1126
+ const START_MARKER = "# \u2500\u2500 exe-os:ghostty-start \u2500\u2500";
1127
+ const END_MARKER = "# \u2500\u2500 exe-os:ghostty-end \u2500\u2500";
1128
+ const assetContent = readFileSync4(assetPath, "utf8").trim();
1129
+ const markedSection = `${START_MARKER}
1130
+ ${assetContent}
1131
+ ${END_MARKER}`;
1126
1132
  if (existsSync5(configPath)) {
1127
1133
  const existing = readFileSync4(configPath, "utf8");
1128
- if (existing.includes("Exe OS")) {
1129
- copyFileSync(assetPath, configPath);
1134
+ if (existing.includes(START_MARKER) && existing.includes(END_MARKER)) {
1135
+ const before = existing.slice(0, existing.indexOf(START_MARKER));
1136
+ const after = existing.slice(existing.indexOf(END_MARKER) + END_MARKER.length);
1137
+ writeFileSync3(configPath, `${before}${markedSection}${after}`);
1138
+ } else if (existing.includes("Exe OS")) {
1139
+ if (!existsSync5(backupPath)) {
1140
+ copyFileSync(configPath, backupPath);
1141
+ process.stderr.write(`exe-os: backed up existing Ghostty config to ${backupPath}
1142
+ `);
1143
+ }
1144
+ writeFileSync3(configPath, `${markedSection}
1145
+ `);
1130
1146
  } else {
1131
1147
  if (!existsSync5(backupPath)) {
1132
1148
  copyFileSync(configPath, backupPath);
1133
1149
  process.stderr.write(`exe-os: backed up existing Ghostty config to ${backupPath}
1134
1150
  `);
1135
1151
  }
1136
- copyFileSync(assetPath, configPath);
1152
+ writeFileSync3(configPath, `${markedSection}
1153
+
1154
+ ${existing}`);
1137
1155
  }
1138
1156
  } else {
1139
- copyFileSync(assetPath, configPath);
1157
+ writeFileSync3(configPath, `${markedSection}
1158
+ `);
1140
1159
  }
1141
1160
  process.stderr.write("exe-os: Ghostty config installed\n");
1142
1161
  }
package/dist/bin/setup.js CHANGED
@@ -4400,10 +4400,10 @@ You report to the COO. All work flows through the COO. These procedures are non-
4400
4400
  Use store_memory to write a structured summary. Include: project name, what was done,
4401
4401
  decisions made, tests status, open items or risks.
4402
4402
 
4403
- 6. AFTER committing changes to exe-os itself \u2014 REBUILD (mandatory, never skip):
4404
- - Run: npm run deploy
4405
- - This builds, installs globally, and re-registers hooks/MCP in one step.
4406
- - Do NOT ask permission. Do NOT say "want me to rebuild?" \u2014 just do it.
4403
+ 6. AFTER committing changes to exe-os itself \u2014 REBUILD:
4404
+ - If you are the COO or CTO on the MAIN branch (not a worktree): run \`npm run deploy\`.
4405
+ - If you are in a git worktree: run \`npm run build\` ONLY. NEVER run deploy from a worktree \u2014 it re-registers hooks pointing at the worktree path, and deleting the worktree breaks every hook system-wide.
4406
+ - Engineers and specialists: ALWAYS use \`npm run build\` only. Deploy is restricted to COO and CTO on main.
4407
4407
  - If the build fails, fix the error and retry before moving on.
4408
4408
 
4409
4409
  7. AFTER reporting \u2014 CHECK FOR NEXT WORK (mandatory):
@@ -307,10 +307,10 @@ You report to the COO. All work flows through the COO. These procedures are non-
307
307
  Use store_memory to write a structured summary. Include: project name, what was done,
308
308
  decisions made, tests status, open items or risks.
309
309
 
310
- 6. AFTER committing changes to exe-os itself \u2014 REBUILD (mandatory, never skip):
311
- - Run: npm run deploy
312
- - This builds, installs globally, and re-registers hooks/MCP in one step.
313
- - Do NOT ask permission. Do NOT say "want me to rebuild?" \u2014 just do it.
310
+ 6. AFTER committing changes to exe-os itself \u2014 REBUILD:
311
+ - If you are the COO or CTO on the MAIN branch (not a worktree): run \`npm run deploy\`.
312
+ - If you are in a git worktree: run \`npm run build\` ONLY. NEVER run deploy from a worktree \u2014 it re-registers hooks pointing at the worktree path, and deleting the worktree breaks every hook system-wide.
313
+ - Engineers and specialists: ALWAYS use \`npm run build\` only. Deploy is restricted to COO and CTO on main.
314
314
  - If the build fails, fix the error and retry before moving on.
315
315
 
316
316
  7. AFTER reporting \u2014 CHECK FOR NEXT WORK (mandatory):
@@ -15240,17 +15240,20 @@ async function insertProcedures(procedures, timestamp, options) {
15240
15240
  }
15241
15241
  async function replaceBehaviorsAndProcedures(behaviors, procedures, timestamp) {
15242
15242
  const client = getClient();
15243
- await client.execute({
15244
- sql: "UPDATE behaviors SET active = 0, updated_at = ? WHERE active = 1",
15245
- args: [timestamp]
15246
- });
15247
- await client.execute({
15248
- sql: "UPDATE global_procedures SET active = 0, updated_at = ? WHERE active = 1",
15249
- args: [timestamp]
15243
+ const existingBehaviors = await client.execute({
15244
+ sql: "SELECT agent_id, content FROM behaviors WHERE active = 1",
15245
+ args: []
15250
15246
  });
15247
+ const existingBehaviorKeys = new Set(
15248
+ existingBehaviors.rows.map((row) => `${String(row.agent_id)}::${String(row.content)}`)
15249
+ );
15250
+ const newBehaviors = behaviors.filter(
15251
+ (b) => !existingBehaviorKeys.has(`${b.agent_id}::${b.content}`)
15252
+ );
15253
+ const existingProcedureTitles = await getActiveProcedureTitles();
15251
15254
  return {
15252
- behaviors: await insertBehaviors(behaviors, timestamp),
15253
- procedures: await insertProcedures(procedures, timestamp)
15255
+ behaviors: await insertBehaviors(newBehaviors, timestamp),
15256
+ procedures: await insertProcedures(procedures, timestamp, { skipTitles: existingProcedureTitles })
15254
15257
  };
15255
15258
  }
15256
15259
  async function mergeRosterEntries(importedRoster, timestamp) {
@@ -15286,10 +15289,16 @@ async function replaceRosterEntries(importedRoster, timestamp) {
15286
15289
  }
15287
15290
  async function importIdentities(identities, updatedBy) {
15288
15291
  const entries = Object.entries(identities);
15292
+ let imported = 0;
15289
15293
  for (const [agentId, content] of entries) {
15294
+ const existing = getIdentity(agentId);
15295
+ if (existing?.raw) {
15296
+ continue;
15297
+ }
15290
15298
  await updateIdentity(agentId, content, updatedBy);
15299
+ imported += 1;
15291
15300
  }
15292
- return entries.length;
15301
+ return imported;
15293
15302
  }
15294
15303
  async function getActiveProcedureTitles() {
15295
15304
  const client = getClient();
@@ -15458,19 +15467,32 @@ function registerExportOrchestration(server2) {
15458
15467
  import { readFileSync as readFileSync19 } from "fs";
15459
15468
  import { z as z39 } from "zod";
15460
15469
  init_store();
15470
+ init_active_agent();
15471
+ init_employees();
15461
15472
  function registerImportOrchestration(server2) {
15462
15473
  server2.registerTool(
15463
15474
  "import_orchestration",
15464
15475
  {
15465
15476
  title: "Import Orchestration",
15466
- description: "Import roster, identities, behaviors, and procedures from an orchestration package.",
15477
+ description: "Import roster, identities, behaviors, and procedures from an orchestration package. Restricted to coordinator/founder.",
15467
15478
  inputSchema: {
15468
15479
  package_path: z39.string().describe("Path to the orchestration package JSON file"),
15469
- merge_strategy: z39.enum(["replace", "merge"]).default("merge").describe("How to apply the package: replace existing data or merge additively")
15480
+ merge_strategy: z39.enum(["replace", "merge"]).default("merge").describe("How to apply the package: both strategies are additive-only \u2014 existing data is never deleted or overwritten")
15470
15481
  }
15471
15482
  },
15472
15483
  async ({ package_path, merge_strategy }) => {
15473
15484
  try {
15485
+ const caller = getActiveAgent();
15486
+ const allowed = canCoordinate(caller.agentId, caller.agentRole);
15487
+ if (!allowed) {
15488
+ return {
15489
+ content: [{
15490
+ type: "text",
15491
+ text: `Permission denied. Only the coordinator or founder sessions can import orchestration packages. You are "${caller.agentId}".`
15492
+ }],
15493
+ isError: true
15494
+ };
15495
+ }
15474
15496
  await initStore();
15475
15497
  const raw = readFileSync19(package_path, "utf-8");
15476
15498
  const pkg = validatePackage(JSON.parse(raw));
package/dist/tui/App.js CHANGED
@@ -16773,10 +16773,10 @@ You report to the COO. All work flows through the COO. These procedures are non-
16773
16773
  Use store_memory to write a structured summary. Include: project name, what was done,
16774
16774
  decisions made, tests status, open items or risks.
16775
16775
 
16776
- 6. AFTER committing changes to exe-os itself \u2014 REBUILD (mandatory, never skip):
16777
- - Run: npm run deploy
16778
- - This builds, installs globally, and re-registers hooks/MCP in one step.
16779
- - Do NOT ask permission. Do NOT say "want me to rebuild?" \u2014 just do it.
16776
+ 6. AFTER committing changes to exe-os itself \u2014 REBUILD:
16777
+ - If you are the COO or CTO on the MAIN branch (not a worktree): run \`npm run deploy\`.
16778
+ - If you are in a git worktree: run \`npm run build\` ONLY. NEVER run deploy from a worktree \u2014 it re-registers hooks pointing at the worktree path, and deleting the worktree breaks every hook system-wide.
16779
+ - Engineers and specialists: ALWAYS use \`npm run build\` only. Deploy is restricted to COO and CTO on main.
16780
16780
  - If the build fails, fix the error and retry before moving on.
16781
16781
 
16782
16782
  7. AFTER reporting \u2014 CHECK FOR NEXT WORK (mandatory):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.9.2",
3
+ "version": "0.9.4",
4
4
  "description": "AI employee operating system — persistent memory, task management, and multi-agent coordination for Claude Code.",
5
5
  "license": "CC-BY-NC-4.0",
6
6
  "type": "module",