mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-26 05:16:24 +02:00
- Install VibeSafe system files for project management - Add backlog system for task tracking - Add CIP (Code Improvement Plan) framework for architectural decisions - Add tenets directory for project principles - Update .gitignore with VibeSafe protection rules - Set up foundation for collaborative development workflow
107 lines
1.5 KiB
Text
107 lines
1.5 KiB
Text
*.py[cod]
|
|
|
|
# C extensions
|
|
*_cython.c
|
|
*.so
|
|
|
|
# Packages
|
|
*.egg
|
|
*.egg-info
|
|
dist
|
|
build
|
|
eggs
|
|
bin
|
|
var
|
|
sdist
|
|
develop-eggs
|
|
.installed.cfg
|
|
lib
|
|
lib64
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
|
|
# Unit test / coverage reports
|
|
.coverage
|
|
.tox
|
|
nosetests.xml
|
|
|
|
# Translations
|
|
*.mo
|
|
|
|
# Mr Developer
|
|
.mr.developer.cfg
|
|
.project
|
|
.pydevproject
|
|
|
|
#vim
|
|
*.swp
|
|
|
|
#bfgs optimiser leaves this lying around
|
|
iterate.dat
|
|
|
|
# Nosetests #
|
|
#############
|
|
*.noseids
|
|
|
|
# git merge files #
|
|
###################
|
|
*.orig
|
|
|
|
# pycharm IDE stuff
|
|
.idea/
|
|
|
|
# docs
|
|
GPy*.rst
|
|
|
|
# vscode
|
|
settings.json
|
|
|
|
# local dev
|
|
.eggs
|
|
.venv
|
|
.env
|
|
|
|
# VibeSafe System Files (Auto-added during installation)
|
|
# These are VibeSafe infrastructure - not your project content
|
|
|
|
# Backlog system files
|
|
backlog/README.md
|
|
backlog/task_template.md
|
|
backlog/update_index.py
|
|
backlog/index.md
|
|
|
|
# CIP system files
|
|
cip/README.md
|
|
cip/cip_template.md
|
|
|
|
# Cursor AI rules (VibeSafe-managed)
|
|
.cursor/rules/
|
|
# Generated project tenet cursor rules
|
|
.cursor/rules/project_tenet_*.mdc
|
|
|
|
# VibeSafe scripts and tools
|
|
scripts/whats_next.py
|
|
install-whats-next.sh
|
|
whats-next
|
|
|
|
# VibeSafe templates directory
|
|
templates/
|
|
|
|
# AI-Requirements framework (VibeSafe-managed)
|
|
ai-requirements/README.md
|
|
ai-requirements/requirement_template.md
|
|
ai-requirements/prompts/
|
|
ai-requirements/patterns/
|
|
ai-requirements/integrations/
|
|
ai-requirements/examples/
|
|
ai-requirements/guidance/
|
|
|
|
# Tenets system files
|
|
tenets/README.md
|
|
tenets/tenet_template.md
|
|
tenets/combine_tenets.py
|
|
|
|
# VibeSafe documentation (system files)
|
|
docs/whats_next_script.md
|
|
docs/yaml_frontmatter_examples.md
|