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:
hmo
2026-04-26 19:27:40 +08:00
commit 04db423416
861 changed files with 210414 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
# Bytecode
__pycache__/
*.py[cod]
*$py.class
*.pyo
*.pyd
# Virtual environments
venv/
.venv/
env/
ENV/
# Node
node_modules/
.npm
# OS
.DS_Store
Thumbs.db
# Test outputs and intermediates
output/
output/**/
# Pytest
.pytest_cache/
.coverage
htmlcov/
# IDE
.vscode/
.idea/
*.swp
*.swo
*.log
# Temp files
temp/
*.tmp