Add apt to package manager list

Linux 环境的系统级依赖安装默认走 apt,明确写出避免在 Ubuntu 上
误用其他发行版的包管理器(yum/dnf/pacman)。
This commit is contained in:
Zhang Jiahao
2026-04-21 00:34:05 +08:00
parent 0a5d283dfd
commit ef183636fc

View File

@@ -16,7 +16,7 @@ Behavioral guidelines to reduce common LLM coding mistakes. Merge with project-s
- ⚠️ Confirm first: rename repo, change visibility, add/remove collaborators, delete branches, change default branch - ⚠️ Confirm first: rename repo, change visibility, add/remove collaborators, delete branches, change default branch
- ❌ Require explicit command every time: delete repo, force-push to `main`/`master`, rewrite published history, change org permissions - ❌ Require explicit command every time: delete repo, force-push to `main`/`master`, rewrite published history, change org permissions
- Prefer a scoped API token over username/password when one becomes available - Prefer a scoped API token over username/password when one becomes available
- **Package managers**: `pnpm` (Node), `uv` (Python), `cargo` (Rust) - **Package managers**: `pnpm` (Node), `uv` (Python), `cargo` (Rust), `apt` (Linux)
- **Web stack**: prefer TypeScript over JavaScript (frontend frameworks, Node backends, scripts); follow the existing project's language choice - **Web stack**: prefer TypeScript over JavaScript (frontend frameworks, Node backends, scripts); follow the existing project's language choice
- **Indentation**: 4 spaces by default; follow project convention if different - **Indentation**: 4 spaces by default; follow project convention if different