New files: - automation/clean.sh: Clean up old logs, reports, backups (with --dry-run) - VERSION: Tracks configuration version (1.0.0) - CHANGELOG.md: Documents all changes in this refactor The cleanup script handles: - Old workflow logs (>30 days) - Old health reports (>30 days) - Excess backups (keeps last 10) Respects managed directories (projects/, stats-cache.json). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1.8 KiB
1.8 KiB
Changelog
All notable changes to this Claude Code configuration.
[1.0.0] - 2026-01-01
Added
Plugin Structure
.claude-plugin/plugin.json- Plugin manifest for distribution.claude-plugin/marketplace.json- Local development marketplace
Hooks
SessionStarthook - Loads context, checks pending itemsPreCompacthook - Reminds to preserve context before compactionhooks/scripts/session-start.sh- Session initialization scripthooks/scripts/pre-compact.sh- Pre-compaction handler
Commands
/help- Show available commands and skills/status- Dashboard overview across all domains/summarize- Save session to memory/maintain- Configuration maintenance operations
Skills (Resources Pattern)
All skills refactored to use scripts + references pattern:
gmail/scripts/- check_unread.py, check_urgent.py, search.pygmail/references/- query-patterns.mdgcal/scripts/- agenda.py, next_event.pyk8s-quick-status/scripts/- quick-status.shsysadmin-health/scripts/- health-check.shusage/scripts/- usage_report.py
Automation Scripts
validate-setup.sh- Validate configurationquick-status.sh- Dashboard statusbackup.sh- Create configuration backuprestore.sh- Restore from backupclean.sh- Clean up old files
Documentation
- README.md in every directory
- Top-level README.md with quick start guide
- CHANGELOG.md (this file)
- VERSION file
Changed
- CLAUDE.md streamlined, references directory READMEs
- Skills use
allowed-toolsfor capability restrictions - Component registry includes script paths
- Expanded trigger phrases for better skill matching
Technical Details
- 34 files changed
- +2500 lines added
- Full documentation coverage
- Validation script passes all checks