@fractary/codex 0.12.14 → 0.12.17

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/dist/index.js CHANGED
@@ -3645,10 +3645,11 @@ var SYNC_PATTERN_PRESETS = {
3645
3645
  config: {
3646
3646
  to_codex: {
3647
3647
  include: ["docs/**", "README.md", "CLAUDE.md"],
3648
- exclude: ["*.tmp"]
3648
+ exclude: ["*.tmp", "_archive/**"]
3649
3649
  },
3650
3650
  from_codex: {
3651
- include: ["codex://{org}/{codex_repo}/docs/**"]
3651
+ include: ["codex://{org}/{codex_repo}/docs/**"],
3652
+ exclude: ["_archive/**"]
3652
3653
  }
3653
3654
  }
3654
3655
  },
@@ -3888,7 +3889,7 @@ ${relativeCachePath}
3888
3889
  }
3889
3890
  async function installMcpServer(projectRoot, configPath = ".fractary/config.yaml", options = {}) {
3890
3891
  const mcpJsonPath = path3.join(projectRoot, ".mcp.json");
3891
- const { backup = true } = options;
3892
+ const { backup = false } = options;
3892
3893
  let existingConfig = { mcpServers: {} };
3893
3894
  let backupPath;
3894
3895
  let migrated = false;