con un clic
python-runner
Execute Python code to perform tasks that are not covered by other tools.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Execute Python code to perform tasks that are not covered by other tools.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Build-focused skill for creating, updating, and installing standard Agent Skills.
Manage SOP templates, scheduled automation tasks, and run history through AI-callable tools.
提供独立的命令执行与 skill 脚本执行能力。
Query chat history by keywords and date ranges.
Provides interaction capabilities with the user.
Meta skill for AI self-evolution. Invoke when recording lessons learned and improving skill guidance from execution feedback.
| name | python-runner |
| description | Execute Python code to perform tasks that are not covered by other tools. |
| description_cn | 执行 Python 代码以完成其他工具未涵盖的任务。 |
| license | Apache-2.0 |
| metadata | {"author":"deepseek-cowork team","version":"1.0"} |
| allowed-tools | run_python_code, install_package |
This skill allows the agent to execute arbitrary Python code within the workspace and manage Python packages. Use this when you need to calculate data, process text, or perform tasks where no specific tool exists.
run_python_code is preloaded in execution mode and appears in the current tool list without a prior tool_search.run_python_code for data processing, calculations, structured text transforms, and lightweight file analysis; use bash only when the real shell or an existing CLI is needed.parallel_tools.When God Mode is enabled:
subprocess, winreg, ctypes are allowed.install_packageInstalls a Python package using pip and hot-reloads the environment so it can be imported immediately.
Parameters:
package_name (string): The name of the package to install (e.g., pandas, requests).import_name (string, optional): The module name if different from package name (e.g., package beautifulsoup4 -> import bs4).Example:
{
"name": "install_package",
"arguments": {
"package_name": "pandas"
}
}