Release v1.9.0: Add video-comparer skill and enhance transcript-fixer

## New Skill: video-comparer v1.0.0
- Compare original and compressed videos with interactive HTML reports
- Calculate quality metrics (PSNR, SSIM) for compression analysis
- Generate frame-by-frame visual comparisons (slider, side-by-side, grid)
- Extract video metadata (codec, resolution, bitrate, duration)
- Multi-platform FFmpeg support with security features

## transcript-fixer Enhancements
- Add async AI processor for parallel processing
- Add connection pool management for database operations
- Add concurrency manager and rate limiter
- Add audit log retention and database migrations
- Add health check and metrics monitoring
- Add comprehensive test suite (8 new test files)
- Enhance security with domain and path validators

## Marketplace Updates
- Update marketplace version from 1.8.0 to 1.9.0
- Update skills count from 15 to 16
- Update documentation (README.md, CLAUDE.md, CHANGELOG.md)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
daymade
2025-10-30 00:23:12 +08:00
parent bd0aa12004
commit 9b724f33e3
49 changed files with 15357 additions and 270 deletions

View File

@@ -14,14 +14,15 @@ from .correction_repository import CorrectionRepository, Correction, DatabaseErr
from .correction_service import CorrectionService, ValidationRules
# Processing components (imported lazily to avoid dependency issues)
def _lazy_import(name):
def _lazy_import(name: str) -> object:
"""Lazy import to avoid loading heavy dependencies."""
if name == 'DictionaryProcessor':
from .dictionary_processor import DictionaryProcessor
return DictionaryProcessor
elif name == 'AIProcessor':
from .ai_processor import AIProcessor
return AIProcessor
# Use async processor by default for 5-10x speedup on large files
from .ai_processor_async import AIProcessorAsync
return AIProcessorAsync
elif name == 'LearningEngine':
from .learning_engine import LearningEngine
return LearningEngine