# ============================================
# 运行时产物（kimi-dev-workflow 在用户项目生成）
# ============================================

# 统一元数据目录（ prompts / memory / wiki ）
.kimi-dev/

# grepai 索引数据与锁文件
.grepai/
*.gob.lock

# 项目上下文与排除规则（由 init 自动生成）
AGENTS.md
.grepaiignore

# ============================================
# 源码开发产物（本仓库开发时产生）
# ============================================

# Python 虚拟环境
.venv/
venv/

# 构建与发布产物
/dist/
/build/
*.egg-info/
*.egg
.eggs/

# 缓存
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.mypy_cache/
.ruff_cache/

# ============================================
# 通用忽略
# ============================================

node_modules/
coverage/
*.log
.DS_Store

# IDE
.vscode/
.idea/
*.swp
*.swo

# 环境变量（包含敏感 Token）
.env

# 临时文件
*.tmp
*.temp
