@ijfw/install 1.5.1 → 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/dist/ijfw.js CHANGED
@@ -4174,11 +4174,11 @@ function printCommands() {
4174
4174
  const t = commandsByTier();
4175
4175
  let out = "\nijfw -- full command surface\n";
4176
4176
  out += "\nPRIMARY (shown in --help)\n";
4177
- out += " " + t.primary.map((e) => e.name).join(" \xB7 ") + "\n";
4177
+ out += " " + t.primary.map((e) => e.name).join(" | ") + "\n";
4178
4178
  out += "\nCOORDINATION (agents drive these; humans inspect)\n";
4179
- out += " " + t.coordination.map((e) => e.name).join(" \xB7 ") + "\n";
4179
+ out += " " + t.coordination.map((e) => e.name).join(" | ") + "\n";
4180
4180
  out += "\nPLUMBING (most users never need these)\n";
4181
- out += " " + t.plumbing.map((e) => e.name).join(" \xB7 ") + "\n";
4181
+ out += " " + t.plumbing.map((e) => e.name).join(" | ") + "\n";
4182
4182
  console.log(out);
4183
4183
  }
4184
4184
  function doctorCheck(cmd, args) {
package/dist/install.js CHANGED
@@ -2222,10 +2222,14 @@ async function main() {
2222
2222
  console.log(` repo ${action}`);
2223
2223
  await runInstallScript(target);
2224
2224
  console.log(" platform configs applied");
2225
- if (!opts.noMarketplace) {
2225
+ const canonicalDir = join5(homedir3(), ".ijfw");
2226
+ const isCustomDir = process.env.IJFW_CUSTOM_DIR === "1" || resolve4(target) !== canonicalDir;
2227
+ if (!opts.noMarketplace && !isCustomDir) {
2226
2228
  const settingsPath = claudeSettingsPath();
2227
2229
  mergeMarketplace(settingsPath, { rootDir: target });
2228
2230
  console.log(` marketplace registered in ${settingsPath}`);
2231
+ } else if (isCustomDir) {
2232
+ console.log(" marketplace merge skipped (custom-dir install)");
2229
2233
  }
2230
2234
  try {
2231
2235
  const coldScanRoot = process.env.IJFW_PROJECT_DIR || process.cwd();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ijfw/install",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "description": "One-command installer for IJFW -- the AI efficiency layer. One install, every AI coding agent, zero config.",
5
5
  "type": "module",
6
6
  "bin": {