@ijfw/install 1.5.5 → 1.5.6

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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "ijfw",
3
3
  "displayName": "IJFW — AI Efficiency Layer",
4
- "version": "1.5.5",
5
- "description": "One install, every AI coding agent, zero config. Unifies 15 CLIs under a shared MCP memory layer so context follows you across Claude, Codex, Gemini, Cursor, Windsurf, and 10 more.",
4
+ "version": "1.5.6",
5
+ "description": "One install, every AI coding agent, zero config. Unifies 16 CLIs under a shared MCP memory layer so context follows you across Claude, Codex, Gemini, Cursor, Windsurf, and 11 more.",
6
6
  "author": "Sean Donahoe",
7
7
  "icon": "assets/ijfw-logo.svg",
8
8
  "dist": {
9
- "tarball": "extensions/ijfw-1.5.5.zip",
9
+ "tarball": "extensions/ijfw-1.5.6.zip",
10
10
  "integrity": "sha512-vm3ot0+GhXYy0/HcStB/xmFjZhSXWG7jzSLuIPe43/Dla8qhyR9gsCwBI/8+RsUJqMXiPgc0GuxrgwW2f5DDWA==",
11
11
  "unpackedSize": 3312
12
12
  },
@@ -33,7 +33,8 @@
33
33
  "cline",
34
34
  "kimicode",
35
35
  "openclaw",
36
- "antigravity"
36
+ "antigravity",
37
+ "pi"
37
38
  ],
38
39
  "mcpServers": [
39
40
  "ijfw-memory"
package/dist/ijfw.js CHANGED
@@ -4455,7 +4455,7 @@ async function main() {
4455
4455
  ];
4456
4456
  const guidePath = candidates.find((p) => existsSync6(p));
4457
4457
  if (!guidePath) {
4458
- console.error("[ijfw] Guide not found. Run `ijfw install` to fetch the full guide, or visit https://gitlab.com/therealseandonahoe/ijfw/-/blob/main/docs/GUIDE.md");
4458
+ console.error("[ijfw] Guide not found. Run `ijfw install` to fetch the full guide, or visit https://github.com/FerroxLabs/ijfw/blob/main/docs/GUIDE.md");
4459
4459
  process.exit(1);
4460
4460
  }
4461
4461
  if (wantsBrowser) {
package/dist/install.js CHANGED
@@ -1302,6 +1302,18 @@ function installAntigravity(ctx) {
1302
1302
  printOk(`Merged MCP into ${ideDst} + ${cliDst} (Antigravity IDE + CLI)`);
1303
1303
  return { status: "ok" };
1304
1304
  }
1305
+ function installPi(ctx) {
1306
+ if (ctx.ijfwCustomDir) {
1307
+ printInfo("Custom-dir install -- skipping Pi merges.");
1308
+ printOk("Pi: real platform config left untouched.");
1309
+ return { status: "noop" };
1310
+ }
1311
+ const agentsSrc = path.join(ctx.repoRoot, "pi", "AGENTS.md");
1312
+ const agentsDst = path.join(ctx.home, ".pi", "agent", "AGENTS.md");
1313
+ copyIfMissing(agentsSrc, agentsDst);
1314
+ printOk("Pi: rules-only install (~/.pi/agent/AGENTS.md). No MCP -- Pi has no native MCP client (extension bridge required for memory).");
1315
+ return { status: "ok" };
1316
+ }
1305
1317
  var init_install_targets_8_14 = __esm({
1306
1318
  "src/install-targets-8-14.js"() {
1307
1319
  init_install_helpers();
@@ -1931,7 +1943,8 @@ var init_install_flow = __esm({
1931
1943
  "kimi",
1932
1944
  "openclaw",
1933
1945
  "aider",
1934
- "antigravity"
1946
+ "antigravity",
1947
+ "pi"
1935
1948
  ];
1936
1949
  TARGET_FNS = {
1937
1950
  claude: installClaude,
@@ -1948,7 +1961,8 @@ var init_install_flow = __esm({
1948
1961
  kimi: installKimi,
1949
1962
  openclaw: installOpenclaw,
1950
1963
  aider: installAider,
1951
- antigravity: installAntigravity
1964
+ antigravity: installAntigravity,
1965
+ pi: installPi
1952
1966
  };
1953
1967
  install_flow_default = { runInstall, CANONICAL_ORDER };
1954
1968
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ijfw/install",
3
- "version": "1.5.5",
3
+ "version": "1.5.6",
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": {
package/src/install.ps1 CHANGED
@@ -6,7 +6,7 @@
6
6
  # -> merge marketplace into %USERPROFILE%\.claude\settings.json -> summary.
7
7
  #
8
8
  # Usage:
9
- # Invoke-Expression (iwr https://gitlab.com/therealseandonahoe/ijfw/-/raw/main/installer/src/install.ps1).Content
9
+ # Invoke-Expression (iwr https://raw.githubusercontent.com/FerroxLabs/ijfw/main/installer/src/install.ps1).Content
10
10
  # or:
11
11
  # .\install.ps1 -Dir C:\Users\me\.ijfw -Branch main
12
12
 
@@ -19,7 +19,7 @@ param(
19
19
  )
20
20
 
21
21
  $ErrorActionPreference = "Stop"
22
- $DEFAULT_REPO = "https://gitlab.com/therealseandonahoe/ijfw.git"
22
+ $DEFAULT_REPO = "https://github.com/FerroxLabs/ijfw.git"
23
23
 
24
24
  function Write-Ok($msg) { Write-Host " [ok] $msg" -ForegroundColor Green }
25
25
  function Write-Info($msg) { Write-Host " ... $msg" -ForegroundColor Gray }
@@ -101,7 +101,11 @@ function Invoke-CloneOrPull($target, $branch) {
101
101
  $currentOrigin = ($currentOriginRaw | Out-String).Trim()
102
102
  $stalePatterns = @(
103
103
  '^https://github\.com/seandonahoe/ijfw(\.git)?/?$',
104
- '^https://github\.com/therealseandonahoe/ijfw(\.git)?/?$'
104
+ '^https://github\.com/therealseandonahoe/ijfw(\.git)?/?$',
105
+ # V155 rebrand: GitLab was canonical through v1.5.4; Windows users who
106
+ # installed from gitlab.com need their origin migrated forward to
107
+ # FerroxLabs/ijfw on GitHub. Mirrors install.js STALE_PATTERNS.
108
+ '^https://gitlab\.com/therealseandonahoe/ijfw(\.git)?/?$'
105
109
  )
106
110
  $isStale = $false
107
111
  foreach ($pat in $stalePatterns) {