Initial commit: add all skills

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-12 17:48:53 +08:00
commit dea5db60d9
31 changed files with 3111 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
from __future__ import annotations
import sys
from pathlib import Path
MAIL_SRC = Path("/shumengya/project/python/mengya-mail-api/src")
if str(MAIL_SRC) not in sys.path:
sys.path.insert(0, str(MAIL_SRC))
from mengya_mail_api.cli import main # noqa: E402
if __name__ == "__main__":
raise SystemExit(main())