mirror of
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git
synced 2026-07-22 22:17:52 +00:00
docs: add Windows Python compatibility note (#280)
Add cross-platform Python command note to skills and docs: - CLAUDE.md: Add Windows note in Prerequisites - ui-ux-pro-max/SKILL.md: Add Windows note in Prerequisites - design/SKILL.md: Add Prerequisites section with Windows note - banner-design/SKILL.md: Add Prerequisites section with Windows note - templates/base/skill-content.md: Add Windows note (source template) Windows uses 'python' instead of 'python3' to run scripts. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
9dea1bc76f
commit
7538cfb360
@ -21,6 +21,10 @@ Design banners across social, ads, web, and print formats. Generates multiple ar
|
||||
- Event/print banner design
|
||||
- Creative asset generation for campaigns
|
||||
|
||||
## Prerequisites
|
||||
|
||||
**Python:** This skill uses Python scripts. On Windows, use `python` instead of `python3` (e.g., `python scripts/search.py` instead of `python3 scripts/search.py`).
|
||||
|
||||
## Workflow
|
||||
|
||||
### Step 1: Gather Requirements (AskUserQuestion)
|
||||
|
||||
@ -289,6 +289,15 @@ Load `references/social-photos-design.md` for sizes, templates, best practices.
|
||||
| `scripts/cip/core.py` | BM25 search engine for CIP data |
|
||||
| `scripts/icon/generate.py` | Generate SVG icons with Gemini 3.1 Pro |
|
||||
|
||||
## Prerequisites
|
||||
|
||||
**Python:** This skill uses Python scripts. On Windows, use `python` instead of `python3` (e.g., `python scripts/logo/search.py` instead of `python3 scripts/logo/search.py`).
|
||||
|
||||
Check if Python is installed:
|
||||
```bash
|
||||
python3 --version || python --version
|
||||
```
|
||||
|
||||
## Setup
|
||||
|
||||
```bash
|
||||
@ -296,6 +305,8 @@ export GEMINI_API_KEY="your-key" # https://aistudio.google.com/apikey
|
||||
pip install google-genai pillow
|
||||
```
|
||||
|
||||
> **Note for Windows:** Use `python` instead of `pip` where needed (e.g., `python -m pip install ...`).
|
||||
|
||||
## Integration
|
||||
|
||||
**External sub-skills:** brand, design-system, ui-styling
|
||||
|
||||
@ -330,6 +330,8 @@ sudo apt update && sudo apt install python3
|
||||
winget install Python.Python.3.12
|
||||
```
|
||||
|
||||
> **Note:** On Windows, use `python` instead of `python3` to run scripts (e.g., `python scripts/search.py` instead of `python3 scripts/search.py`).
|
||||
|
||||
---
|
||||
|
||||
## How to Use This Skill
|
||||
|
||||
@ -88,6 +88,8 @@ When modifying files:
|
||||
|
||||
Python 3.x (no external dependencies required)
|
||||
|
||||
**Note:** On Windows, use `python` instead of `python3` to run the scripts.
|
||||
|
||||
## Git Workflow
|
||||
|
||||
Never push directly to `main`. Always:
|
||||
|
||||
@ -27,6 +27,8 @@ sudo apt update && sudo apt install python3
|
||||
winget install Python.Python.3.12
|
||||
```
|
||||
|
||||
> **Note:** On Windows, use `python` instead of `python3` to run scripts (e.g., `python scripts/search.py` instead of `python3 scripts/search.py`).
|
||||
|
||||
---
|
||||
|
||||
## How to Use This Skill
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user