uncompact 0.45.5 → 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.
package/README.md CHANGED
@@ -83,6 +83,22 @@ npm install -g uncompact
83
83
  npx uncompact install
84
84
  ```
85
85
 
86
+ ### 🗑 Uninstall
87
+
88
+ To remove the Claude Code hooks only:
89
+
90
+ ```bash
91
+ uncompact uninstall
92
+ ```
93
+
94
+ To **completely remove** Uncompact configuration and cached data:
95
+
96
+ ```bash
97
+ uncompact uninstall --total
98
+ ```
99
+
100
+ *Note: After running the above, you can remove the CLI itself with `npm uninstall -g uncompact`.*
101
+
86
102
  **Via Go:**
87
103
 
88
104
  ```bash
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.5",
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",