mirror of
https://github.com/tradecatlabs/vibe-coding-cn.git
synced 2026-07-27 18:57:50 +00:00
f1f0b9fe75
Move the complete research domain from docs/research to root-level research, update indexes and path-aware tooling, and align raw snapshot governance and CODEOWNERS.\n\nVerified with make test and GitHub CI.
103 lines
1.3 KiB
Plaintext
103 lines
1.3 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
!scripts/lib/
|
|
!scripts/lib/**
|
|
scripts/lib/__pycache__/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Node.js
|
|
node_modules/
|
|
|
|
# Virtual Environment
|
|
.venv/
|
|
env/
|
|
venv/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
.history/
|
|
*:Zone.Identifier
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Local task workspaces
|
|
assets/tasks/
|
|
|
|
# Research raw repository snapshots are local evidence caches.
|
|
research/**/raw/repository/
|
|
|
|
# Skill Seekers (linked tool output)
|
|
output/
|
|
skills/auto-skill/scripts/.venv-skill-seekers/
|
|
|
|
# prompts-library generated exports
|
|
tools/prompts-library/prompt_jsonl/
|
|
tools/external/my-nvim/nvim-config/nvim
|
|
tools/chat-vault/libs/external/btop-main/
|
|
tools/chat-vault/monitoring/grafana/monitor-tui/
|
|
|
|
libs/external/tmux
|
|
libs/external/.tmux
|
|
|
|
# Data files (保留 prompts-library 数据)
|
|
# *.csv
|
|
# *.zip
|
|
# *.jsonl
|
|
# *.db
|
|
# *.png
|
|
# *.jpg
|
|
# *.pdf
|
|
# *.gz
|
|
|
|
# Environments
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
|
|
# Backup
|
|
backups/gz/
|
|
*.bak
|
|
*.tmp
|
|
|
|
# Wiki (separate repo)
|
|
.github/wiki/
|
|
|
|
# Local-only enterprise architecture evidence kit
|
|
assets/templates/modern-enterprise-architecture-private/
|