Initial commit: skills library
- 70 skills with code and documentation - Add .gitignore (ignore __pycache__, output/, temp/, venv/) - Clean up test intermediates and caches
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"skill_name": "doc-to-tables",
|
||||
"version": "1.0.0",
|
||||
"description": "Convert Word documents to structured Markdown and HTML tables",
|
||||
"author": "小小莫",
|
||||
"category": "document-processing",
|
||||
"tags": ["word", "markdown", "html", "tables", "data-extraction"],
|
||||
|
||||
"default_settings": {
|
||||
"three_column_widths": "20,60,20",
|
||||
"two_column_widths": "70,30",
|
||||
"process_teacher_awards": true,
|
||||
"generate_no_headers_html": true,
|
||||
"output_format": "both"
|
||||
},
|
||||
|
||||
"dependencies": {
|
||||
"required": ["pandoc"],
|
||||
"optional": ["fpdf2"]
|
||||
},
|
||||
|
||||
"file_extensions": {
|
||||
"input": [".docx"],
|
||||
"output": [".md", ".html"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user