alias/src/alias/agent/agents/_built_in_skill/data/text/SKILL.md
Guidelines for handling text files
npx skillsauth add agentscope-ai/agentscope-samples text-fileInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.documentation
Guidelines for handling databases
tools
Guildlines for handling json files
documentation
Guidelines for handling image files
documentation
Guidelines for handling CSV/Excel files