원클릭으로
python-package-runtime
Use when a task needs to install a new Python package, run a Python helper script, or a Python package CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when a task needs to install a new Python package, run a Python helper script, or a Python package CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Reverse-engineer an existing software project so the user can understand the code logic, architecture, workflows, design decisions, and potential issues. Use this when the user provides a GitHub repo, local codebase, zip file, or existing project and wants architecture understanding, Mermaid diagrams, remake guidance in another language, or expert design/performance evaluation.
Perform deep research from a research requirement or instruction file and produce research outputs in the same folder, including Markdown plus an index.html visual report with Mermaid diagrams when useful.
Open and operate the local Skill Pilot WebUI through the browser for demos, walkthroughs, settings changes, task execution, and terminal-based education flows. Use when the user wants the agent to drive Skill Pilot as a human would in the browser, open a specific WebUI feature, or jump directly into shell or agent terminal views.
Use this skill when acting as a Black-Box Code Agent Supervisor. The supervisor uses coding agent CLIs such as Claude Code, Codex, OpenCode, Gemini CLI, or other AI coding agents through tmux terminal windows to finish a coding task or project. The supervisor works like a real developer using AI agents: giving instructions, checking the running result, using browser/curl/logs, finding issues, and sending feedback back to the coding agent. The supervisor does not directly inspect source code, write code, or write code-level tests.
Manage the full lifecycle of a Vibe Coding project — create, refine, brainstorm, initialize, plan, implement, review, test, deploy, update, and fix issues. Use when the user wants to start a new project from a prompt, evolve its requirements, plan or write code, validate or deploy it, or apply updates and bug fixes against an existing project.
Create interactive courses and assignments for students in the project's markdown format. Use when asked to create a new course, educational module, or assignment.
| name | python-package-runtime |
| description | Use when a task needs to install a new Python package, run a Python helper script, or a Python package CLI. |
Use this skill to install Python packages and run Python-based helpers in a consistent repo-safe way.
As an expert in your assigned roles, you must announce your actions before performing them using the following format:
As a {Role, and Role-XYZ if have more roles}, I will {action description}
This communication pattern ensures transparency and allows for human-in-the-loop oversight at key decision points.
Follow these steps in order:
Choose one path:
For any new Python package in this repo, always install it from repo root with:
core/bin/uv-install <package> [package...]
This wrapper runs uv add in core/engine/. Do not use pip install directly for new packages.
Run helper scripts with:
core/bin/python path/to/script.py
core/bin/python points to core/engine/.venv/bin/python, so scripts run with the repo-managed environment and installed packages.
When a package provides a CLI entrypoint, run it from:
core/engine/.venv/bin/<cli-name>
If you need to confirm the binary name, inspect core/engine/.venv/bin/ first.
.skillpilot/temp/core/bin/uv-install, if installation was neededcore/bin/pythoncore/engine/.venv/bin/core/bin/uv-installcore/bin/pythoncore/engine/.venv/bin/<cli-name>pip install or a random system Python