Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:309
forks:79
updated:2026년 2월 2일 05:57
SKILL.md
Guidelines for handling CSV/Excel files
Guidelines for handling image files
Guildlines for handling json files
Guidelines for handling databases
| name | text-file |
| description | Guidelines for handling text files |
| type | text |
utf-8.utf-8-sig (for files with BOM), gbk/gb18030 (for Chinese context), or latin-1.chardet or similar logic if encoding is unknown and first few bytes look non-standard.\n (Unix), \r\n (Windows), and \r (Legacy Mac) when counting lines or splitting.with open(path) as f: for line in f: to process line-by-line..read() or .readlines() on large files.f.seek()), and the last N lines.#, //).with statement) to ensure file handles are closed.