- Added 44 external skills from obra/superpowers, ui-ux-pro-max-skill, claude-codex-settings - Added 8 autonomous agents (commit-creator, pr-creator, pr-reviewer, etc.) - Added 23 slash commands for Git/GitHub, setup, and plugin development - Added hooks for code formatting, notifications, and validation - Added MCP configurations for Azure, GCloud, Supabase, MongoDB, etc. - Added awesome-openclaw-skills registry (3,002 skills referenced) - Updated comprehensive README with full documentation Sources: - github.com/obra/superpowers (14 skills) - github.com/nextlevelbuilder/ui-ux-pro-max-skill (1 skill) - github.com/fcakyon/claude-codex-settings (29 skills, 8 agents, 23 commands) - github.com/VoltAgent/awesome-openclaw-skills (registry) - skills.sh (reference) - buildwithclaude.com (reference)
66 lines
2.3 KiB
Python
Executable File
66 lines
2.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
PostToolUse hook: Auto-format JS/TS/CSS/JSON/YAML/HTML/Vue/Svelte files with prettier
|
|
"""
|
|
import json
|
|
import re
|
|
import shutil
|
|
import subprocess
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# File extensions that prettier handles
|
|
PRETTIER_EXTENSIONS = {'.js', '.jsx', '.ts', '.tsx', '.css', '.less', '.scss',
|
|
'.json', '.yml', '.yaml', '.html', '.vue', '.svelte'}
|
|
LOCK_FILE_PATTERN = re.compile(r'.*lock\.(json|yaml|yml)$|.*\.lock$')
|
|
|
|
|
|
def check_prettier_version() -> bool:
|
|
"""Check if prettier is installed and warn if version differs from 3.6.2."""
|
|
if not shutil.which('npx'):
|
|
return False
|
|
try:
|
|
result = subprocess.run(['npx', 'prettier', '--version'],
|
|
capture_output=True, text=True, check=False, timeout=5)
|
|
if result.returncode == 0:
|
|
version = result.stdout.strip()
|
|
if '3.6.2' not in version:
|
|
print(f"⚠️ Prettier version mismatch: expected 3.6.2, found {version}")
|
|
return True
|
|
except Exception:
|
|
pass
|
|
return False
|
|
|
|
|
|
def main():
|
|
try:
|
|
data = json.load(sys.stdin)
|
|
file_path = data.get("tool_input", {}).get("file_path", "")
|
|
|
|
if not file_path:
|
|
sys.exit(0)
|
|
|
|
py_file = Path(file_path)
|
|
if not py_file.exists() or py_file.suffix not in PRETTIER_EXTENSIONS:
|
|
sys.exit(0)
|
|
|
|
# Skip virtual env, cache, .claude directories, lock files, model.json, and minified assets
|
|
if any(p in py_file.parts for p in ['.git', '.venv', 'venv', 'env', '.env', '__pycache__', '.mypy_cache', '.pytest_cache', '.tox', '.nox', '.eggs', 'eggs', '.idea', '.vscode', 'node_modules', 'site-packages', 'build', 'dist', '.claude']) or LOCK_FILE_PATTERN.match(py_file.name) or py_file.name == 'model.json' or py_file.name.endswith(('.min.js', '.min.css')):
|
|
sys.exit(0)
|
|
|
|
# Check if prettier is available
|
|
if not check_prettier_version():
|
|
sys.exit(0)
|
|
|
|
# Run prettier
|
|
subprocess.run([
|
|
'npx', 'prettier', '--write', '--list-different', '--print-width', '120', str(py_file)
|
|
], capture_output=True, check=False, cwd=py_file.parent)
|
|
|
|
except Exception:
|
|
pass
|
|
|
|
sys.exit(0)
|
|
|
|
if __name__ == "__main__":
|
|
main() |