# Rust 构建产物
/target/
**/target/

# 测试样本（业务敏感 PPT，含真实商业内容，禁止公开）
/_test/
**/_test/

# 测试输出
/_test_out/
**/_test_out/

# 调试输出文件（可能含本地路径/敏感信息）
_clippy_full.txt
# pyscripts/ 含 PPT 加密调试脚本（本地路径/客户数据引用，社死风险，不公开）
pyscripts/
*.tmp
*.bak

# 临时 commit message 文件（PowerShell 不支持 heredoc 时用 git commit -F）
_commit_msg.txt

# examples 运行产物（hello.pptx 等）
/hello.pptx
*.pptx.tmp

# 敏感文件（防御性忽略，即使本地存在也不提交）
_ssh_pass.bat
_ssh_run.ps1

# IDE / 编辑器
.idea/
.vscode/
*.iml
*.swp
*~

# AI 协作临时文档（plan/notes，不公开）
.trae/documents/

# 操作系统
.DS_Store
Thumbs.db

# Python 验证脚本缓存（pyscripts/）
__pycache__/
*.pyc
*.pyo
