aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Update existing project configurations to current best practices with selective component upgrades
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/upgrade-projectContext preview
What this command does when you run it.
Update existing project configurations to current best practices with selective component upgrades
name: upgrade-project description: "Update existing project configurations to current best practices with selective component upgrades"
Add missing configurations or update existing ones to match current best practices.
Use this command when you need to:
Avoid this command if:
# Interactive upgrade - shows what's missing /attune:upgrade-project # Upgrade specific component /attune:upgrade-project --component workflows /attune:upgrade-project --component makefile /attune:upgrade-project --component pre-commit
1. **Detects project language** and existing configurations 2. **Identifies missing configurations** 3. **Offers to add/update** specific components 4. **Preserves custom modifications** (merge mode)
# 1. Detect project and show status python3 plugins/attune/scripts/project_detector.py . # 2. Show missing configurations # Example output: # Project: my-project (Python) # ✅ .gitignore present # ✅ pyproject.toml present # ⚠️ Makefile outdated (from 2023, current: 2026) # ❌ .pre-commit-config.yaml missing # ❌ .github/workflows/typecheck.yml missing # 3. Ask which to add/update # Which configurations to upgrade? # [x] Add .pre-commit-config.yaml # [x] Add .github/workflows/typecheck.yml # [ ] Update Makefile (will preserve custom targets) # 4. Apply selected upgrades
Available components to upgrade:
/attune:upgrade-project --component workflows
Output:
Detecting project type... Python Checking existing workflows... ✅ .github/workflows/test.yml exists ❌ .github/workflows/lint.yml missing ❌ .github/workflows/typecheck.yml missing Add missing workflows? [Y/n]: y ✓ Created: .github/workflows/lint.yml ✓ Created: .github/workflows/typecheck.yml
/attune:upgrade-project --component makefile
Shows diff and asks for confirmation before updating.
/attune:validate
Check that all configurations are up-to-date.
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.