uncompact 0.45.8 → 0.45.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.
Files changed (2) hide show
  1. package/npm/install.js +4 -0
  2. package/package.json +1 -1
package/npm/install.js CHANGED
@@ -191,6 +191,10 @@ async function main() {
191
191
  try {
192
192
  // The 'install' command now automatically shows the help menu upon completion
193
193
  execFileSync(destPath, ["install", "--yes"], { stdio: "inherit" });
194
+
195
+ // Also show status to verify API key detection
196
+ console.log();
197
+ execFileSync(destPath, ["status"], { stdio: "inherit" });
194
198
  } catch (err) {
195
199
  log("[uncompact] Note: Automatic hook configuration skipped or failed. Run manually if needed:\n");
196
200
  log(" uncompact install\n");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uncompact",
3
- "version": "0.45.8",
3
+ "version": "0.45.9",
4
4
  "description": "Stop Claude Code compaction from making your AI stupid. Re-inject project context after compaction via the Supermodel API.",
5
5
  "author": "Supermodel <abe@supermodel.software>",
6
6
  "license": "MIT",