feat: 공통 Claude 지침 및 규칙 문서 추가

This commit is contained in:
“hyeonggkim”
2026-04-13 11:05:56 +09:00
parent 2f4532815e
commit 9e2c7cd183
24 changed files with 2013 additions and 526 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python3
"""
Example helper script for edm-email-html
This is a placeholder script that can be executed directly.
Replace with actual implementation or delete if not needed.
Example real scripts from other skills:
- pdf/scripts/fill_fillable_fields.py - Fills PDF form fields
- pdf/scripts/convert_pdf_to_images.py - Converts PDF pages to images
"""
def main():
print("This is an example script for edm-email-html")
# TODO: Add actual script logic here
# This could be data processing, file conversion, API calls, etc.
if __name__ == "__main__":
main()