aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Validate project structure and configurations against best practices with detailed issue reporting
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/validateContext preview
What this command does when you run it.
Validate project structure and configurations against best practices with detailed issue reporting
name: validate description: "Validate project structure and configurations against best practices with detailed issue reporting"
Check project setup against best practices, identify issues, and recommend improvements.
Use this command when you need to:
Avoid this command if:
# Validate current project /attune:validate # Validate specific path /attune:validate --path /path/to/project # Show detailed report /attune:validate --verbose
1. **Detects project language** and type 2. **Checks for required files** and configurations 3. **Validates file contents** (e.g., proper Makefile targets) 4. **Reports issues and recommendations**
Project Validation Report ======================== Project: my-awesome-project Language: Python Path: /home/user/my-awesome-project Git Configuration ✅ Git repository initialized ✅ .gitignore present (50 patterns) Build Configuration ✅ pyproject.toml present ✅ Makefile with 15 targets ⚠️ uv.lock is outdated (run: uv sync) Code Quality ✅ Pre-commit hooks configured (7 hooks) ✅ Ruff configuration present ✅ MyPy strict mode enabled CI/CD ✅ Test workflow (.github/workflows/test.yml) ✅ Lint workflow (.github/workflows/lint.yml) ❌ Missing: Type check workflow Project Structure ✅ Source directory: src/my_awesome_project/ ✅ Test directory: tests/ ✅ README.md present ❌ Missing: LICENSE file Score: 17/20 (85%) Recommendations: 1. Add .github/workflows/typecheck.yml (run: /attune:upgrade-project --component workflows) 2. Add LICENSE file (pick one at https://choosealicense.com) 3. Update uv.lock (run: make install)
/attune:validate
/attune:validate --verbose --suggestions
Includes:
# .github/workflows/validate.yml
name: Project Structure Validation
on: [push, pull_request]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate project structure
run: |
python3 plugins/attune/scripts/validate_project.py --strictA 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.