📦 deps(skills): sync thirdparty skills
This commit is contained in:
+5
-18
@@ -10,9 +10,9 @@ Comprehensive design guide for web, mobile, and desktop applications. Contains 6
|
||||
|
||||
当任务涉及 **UI 结构、视觉设计决策、交互模式或用户体验质量控制** 时,应使用此 Skill。
|
||||
|
||||
### Must Use
|
||||
### Primary Use Cases
|
||||
|
||||
在以下情况必须调用此 Skill:
|
||||
在以下情况此 Skill 最为有用:
|
||||
|
||||
- 设计新的页面(Landing Page、Dashboard、Admin、SaaS、Mobile App)
|
||||
- 创建或重构 UI 组件(按钮、弹窗、表单、表格、图表等)
|
||||
@@ -305,28 +305,15 @@ Search specific domains using the CLI tool below.
|
||||
---
|
||||
# Prerequisites
|
||||
|
||||
Check if Python is installed:
|
||||
The bundled scripts require Python 3 (standard library only — no third-party packages, no network access). Check if it is available:
|
||||
|
||||
```bash
|
||||
python3 --version || python --version
|
||||
```
|
||||
|
||||
If Python is not installed, install it based on user's OS:
|
||||
If Python is not installed, **do not install it yourself**. Stop and ask the user to install Python 3 using their preferred method (e.g. from [python.org](https://www.python.org/downloads/) or their OS package manager), then continue once it is available. Never run package-manager or system-modifying commands (`sudo`, `brew`, `apt`, `winget`, etc.) on the user's machine for this skill.
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
brew install python3
|
||||
```
|
||||
|
||||
**Ubuntu/Debian:**
|
||||
```bash
|
||||
sudo apt update && sudo apt install python3
|
||||
```
|
||||
|
||||
**Windows:**
|
||||
```powershell
|
||||
winget install Python.Python.3.12
|
||||
```
|
||||
If the user prefers not to install Python, skip the CLI searches and rely on the Quick Reference sections above.
|
||||
|
||||
> **Note:** On Windows, use `python` instead of `python3` to run scripts (e.g., `python scripts/search.py` instead of `python3 scripts/search.py`).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user