@coo-quack/do-not-compact 1.0.0 → 1.1.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "do-not-compact",
3
3
  "description": "Reload CLAUDE.md files into context after conversation compaction",
4
- "version": "1.0.0",
4
+ "version": "1.1.0",
5
5
  "author": {
6
6
  "name": "coo-quack"
7
7
  },
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.1.0
4
+
5
+ - Add marketplace sync to release workflow
6
+ - Make marketplace sync step non-blocking
7
+ - Update installation instructions to match marketplace format
8
+ - Fix sync check to use merge-base --is-ancestor
9
+ - Simplify backport workflow with checkout -B and concurrency
10
+
3
11
  ## v1.0.0
4
12
 
5
13
  - Initial release as npm package
package/README.md CHANGED
@@ -16,11 +16,102 @@ Files collected (in order):
16
16
 
17
17
  ## Installation
18
18
 
19
+ ### Plugin install (recommended)
20
+
21
+ Install in two commands from inside a Claude Code session:
22
+
23
+ **1. Register the marketplace**
24
+
25
+ ```
26
+ /plugin marketplace add coo-quack/claude-code-marketplace
27
+ ```
28
+
29
+ **2. Install the plugin**
30
+
31
+ ```
32
+ /plugin install do-not-compact@coo-quack
33
+ ```
34
+
35
+ Done. The hooks are enabled automatically.
36
+
37
+ > **Keeping up to date:** Third-party marketplaces have auto-update disabled by default. To receive automatic updates, run `/plugin` → **Marketplaces** tab → select the marketplace → **Enable auto-update**. You can also update manually from the same tab. See [Discover and install plugins](https://docs.anthropic.com/en/docs/claude-code/discover-plugins) for details.
38
+
39
+ <details>
40
+ <summary>npm install</summary>
41
+
42
+ Install globally via npm and configure hooks manually:
43
+
19
44
  ```bash
20
45
  npm install -g @coo-quack/do-not-compact
21
- claude plugin install @coo-quack/do-not-compact
22
46
  ```
23
47
 
48
+ Update to the latest version:
49
+
50
+ ```bash
51
+ npm update -g @coo-quack/do-not-compact
52
+ ```
53
+
54
+ Then add to `~/.claude/settings.json`:
55
+
56
+ ```json
57
+ {
58
+ "hooks": {
59
+ "SessionStart": [
60
+ {
61
+ "matcher": "compact",
62
+ "hooks": [
63
+ {
64
+ "type": "command",
65
+ "command": "\"$(npm root -g)/@coo-quack/do-not-compact/hooks/reload-claude-md.sh\"",
66
+ "timeout": 10
67
+ }
68
+ ]
69
+ }
70
+ ]
71
+ }
72
+ }
73
+ ```
74
+
75
+ </details>
76
+
77
+ <details>
78
+ <summary>Manual setup (git clone)</summary>
79
+
80
+ Clone the repository and configure hooks manually:
81
+
82
+ ```bash
83
+ git clone https://github.com/coo-quack/do-not-compact.git ~/do-not-compact
84
+ ```
85
+
86
+ Update to the latest version:
87
+
88
+ ```bash
89
+ cd ~/do-not-compact && git pull
90
+ ```
91
+
92
+ Then add to `~/.claude/settings.json`:
93
+
94
+ ```json
95
+ {
96
+ "hooks": {
97
+ "SessionStart": [
98
+ {
99
+ "matcher": "compact",
100
+ "hooks": [
101
+ {
102
+ "type": "command",
103
+ "command": "~/do-not-compact/hooks/reload-claude-md.sh",
104
+ "timeout": 10
105
+ }
106
+ ]
107
+ }
108
+ ]
109
+ }
110
+ }
111
+ ```
112
+
113
+ </details>
114
+
24
115
  ## Requirements
25
116
 
26
117
  - `jq` must be installed and available in PATH
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coo-quack/do-not-compact",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Claude Code plugin that reloads CLAUDE.md files into context after conversation compaction",
5
5
  "homepage": "https://github.com/coo-quack/do-not-compact",
6
6
  "type": "module",