Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/auto-6996d801abfae4bd.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"claude-auto": patch
---

- Fixed release workflow to skip marketplace.json during version bumps
5 changes: 5 additions & 0 deletions .changeset/auto-8bd793cd5c28600d.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"claude-auto": patch
---

- Updated internal planning documentation to reflect completed work
5 changes: 5 additions & 0 deletions .changeset/auto-cd0ce7bb235c2fa2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"claude-auto": patch
---

- Fixed CI version-bump loop to skip marketplace.json, preventing unintended modifications during releases
9 changes: 9 additions & 0 deletions .changeset/auto-fdc865e426431265.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"claude-auto": minor
---

- Migrated to plugin-only mode with native Claude Code plugin support via BeOnAuto/auto-plugins marketplace
- Removed legacy npx installation, CLI system, and associated commands (install, doctor, repair, status, reminders, tui)
- Added runtime config management with overrides and first-setup guidance via new /claude-auto:config skill
- Fixed commit validation to respect validateCommit.mode off setting
- Fixed plugin path resolution for skills context when only CLAUDE_PLUGIN_ROOT is set
11 changes: 4 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,10 @@ jobs:
VERSION=$(node -p "require('./package.json').version")
node -e "
const fs = require('fs');
for (const f of ['plugin.json', 'marketplace.json']) {
const path = '.claude-plugin/' + f;
const data = JSON.parse(fs.readFileSync(path, 'utf8'));
if (data.version) data.version = '${VERSION}';
if (data.plugins) data.plugins.forEach(p => { if (p.name === 'claude-auto') p.version = '${VERSION}'; });
fs.writeFileSync(path, JSON.stringify(data, null, 2) + '\n');
}
const path = '.claude-plugin/plugin.json';
const data = JSON.parse(fs.readFileSync(path, 'utf8'));
data.version = '${VERSION}';
fs.writeFileSync(path, JSON.stringify(data, null, 2) + '\n');
"
git add .
git commit -m "chore(release): version packages" || echo "No changes to commit"
Expand Down
Loading