You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: improve version bump workflow and CI integration (#73)
* docs: update changelog with version bump improvements
* fix: improve version bump preview to show only changed plugins
Previously showed all plugins with confusing 'major' type and empty next versions.
Now compares base branch (main) vs HEAD to show actual version changes in PR.
Changes:
- Compare plugin.json versions between branches
- Only show plugins that actually changed
- Show clear before/after versions
- Rename 'Current/Next' to 'Base/Head' for clarity
* fix: fetch base branch in version bump preview workflow
The preview was showing all plugins as new (0.0.0 -> X.Y.Z) because
the base branch wasn't fetched. Now fetches full history and base branch
so git can properly compare versions between branches.
* chore: `just lint`
* docs(research): add Claude Code compact customization findings
Documents the current limitations around customizing the compact
operation in Claude Code, specifically the inability to configure
a specific model for compacting. Includes workarounds and
feature request recommendations.
Co-Authored-By: Claude Code (~/src/nsheaps/ai) <noreply@anthropic.com>
* fix: remove duplicate update-marketplace job from ci.yaml
The update-marketplace job was running on all events including PRs,
causing marketplace.json to be updated inappropriately in PRs.
The cd.yaml workflow already has this job correctly gated to only
run on main branch after version bumps. This removes the duplicate.
* docs: add changelog entry for workflow improvements
* chore: `just lint`
---------
Co-authored-by: Claude Code (~/src/nsheaps/ai) <noreply@anthropic.com>
Is there any way to customize the compacting process in Claude Code to always use a specific model (e.g., Sonnet 1M context) instead of the currently configured model?
9
+
10
+
## Summary
11
+
12
+
**No, there is currently no way to configure a specific model for the compact operation.** Compact always uses whatever model is globally configured.
13
+
14
+
## Findings
15
+
16
+
### What Exists
17
+
18
+
#### Hooks
19
+
20
+
1.**`PreCompact` hook** - Fires before compact operation
21
+
- Matchers: `"manual"` or `"auto"` (based on trigger type)
0 commit comments