cohvu 2.10.7 → 2.10.9

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.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ import { openSync, writeSync, closeSync } from "fs";
3
+ try {
4
+ const fd = openSync("/dev/tty", "w");
5
+ writeSync(fd, "\n cohvu installed. run \x1b[1mcohvu\x1b[0m to get started.\n\n");
6
+ closeSync(fd);
7
+ }
8
+ catch {
9
+ // Not a TTY (CI, piped) — skip silently
10
+ }
11
+ //# sourceMappingURL=postinstall.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"postinstall.js","sourceRoot":"","sources":["../src/postinstall.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,IAAI,CAAC;AAEpD,IAAI,CAAC;IACH,MAAM,EAAE,GAAG,QAAQ,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;IACrC,SAAS,CAAC,EAAE,EAAE,kEAAkE,CAAC,CAAC;IAClF,SAAS,CAAC,EAAE,CAAC,CAAC;AAChB,CAAC;AAAC,MAAM,CAAC;IACP,wCAAwC;AAC1C,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cohvu",
3
- "version": "2.10.7",
3
+ "version": "2.10.9",
4
4
  "description": "Cohvu — continuous memory for AI-native development",
5
5
  "bin": {
6
6
  "cohvu": "dist/index.js"