- Add 8 new skills (62 total, up from 58) - Official Anthropic skills: docx, pdf, pptx, xlsx, brand-guidelines, internal-comms - Vercel Labs skills: react-best-practices, web-design-guidelines - Implement dual-versioning: -official/-anthropic and -community suffixes - Update README with new skill registry and credits - Regenerate skills_index.json (62 skills validated) - Add comprehensive walkthrough.md BREAKING CHANGE: Document skills (docx/pdf/pptx/xlsx) renamed with version suffixes
16 lines
336 B
Python
16 lines
336 B
Python
"""
|
|
Validation modules for Word document processing.
|
|
"""
|
|
|
|
from .base import BaseSchemaValidator
|
|
from .docx import DOCXSchemaValidator
|
|
from .pptx import PPTXSchemaValidator
|
|
from .redlining import RedliningValidator
|
|
|
|
__all__ = [
|
|
"BaseSchemaValidator",
|
|
"DOCXSchemaValidator",
|
|
"PPTXSchemaValidator",
|
|
"RedliningValidator",
|
|
]
|