在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:7
forks:1
updated:2026年4月22日 13:47
SKILL.md
| name | python |
| description | Use this skill when writing code in Python. |
Use this skill when writing Python code.
logger = logging.getLogger(__name__)--verbose mode sets logging level to DEBUG, enables tracebacks for exceptions. otherwise exceptions printed like error: failed to open file: ... to stdout with status code non-zero.--verbose flag to enable verbose logging (log level DEBUG), and --quiet to disable logging (log level ERROR)raises section to document how the function can fail.@classmethod from_foo(cls, foo) style constructors. pydantic dataclasses are ok too.get_ when it returns, validate_ no return - just raise exception on error, render_ returns string representation of some combined data, output_ writes to stdout.