Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:7
forks:1
updated:22 de abril de 2026 às 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.