replen 1.3.1 → 1.4.0

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.
@@ -148,6 +148,9 @@ async function postProjectsBulk(base, token, projects) {
148
148
  name: p.name,
149
149
  tags: p.tags,
150
150
  primaryLanguage: p.primaryLanguage ?? undefined,
151
+ // Absolute local checkout path — see sync-projects.ts. Inert unless
152
+ // the server is a self-host install with Immersion enabled.
153
+ localPath: p.localPath,
151
154
  })),
152
155
  }),
153
156
  signal: ctrl.signal,
@@ -38,6 +38,11 @@ export async function syncDiscoveredProjects({ token, base, explicitRoots = [],
38
38
  name: p.name,
39
39
  tags: p.tags,
40
40
  primaryLanguage: p.primaryLanguage ?? undefined,
41
+ // Absolute local checkout path. Used by Immersion on a self-host install
42
+ // (server == this machine) to ground on the actual source; inert on the
43
+ // hosted server, which can't read it. Always sent — it's identity, not
44
+ // code; nothing is read unless the operator enables Immersion.
45
+ localPath: p.localPath,
41
46
  })),
42
47
  };
43
48
  let res;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replen",
3
- "version": "1.3.1",
3
+ "version": "1.4.0",
4
4
  "description": "Make your AI coding tools smarter. One command, no API keys, free. Replen watches what your projects actually do and surfaces a few things worth bringing in each month. Use one as is, port a piece of another, cherry pick an idea, or build it clean room. The match happens inside your AI tool's session. A few actionable matches a month, by design.",
5
5
  "type": "module",
6
6
  "bin": {