mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-05-23 09:09:45 +02:00
77e300d52a
* feat: mount user repo as read-only with deliverables bind-mount overlay * feat: add playground and .playwright-cli overlay mounts * feat: add filesystem context to pipeline-testing prompts * fix: use explicit REPO_PATH in filesystem prompt for clarity * fix: update filesystem prompts with playground notes and absolute screenshot paths * feat: namespace writable overlays under .shannon/ to avoid polluting host repo * refactor: rename playground to scratchpad * fix: redirect playwright-cli output to writable .shannon/ overlay * fix: pre-create .shannon/ overlay mount points for Linux compatibility * fix: exclude nested node_modules and dist from Docker build context * fix: enforce LF line endings for shell scripts on Windows
72 lines
855 B
Plaintext
72 lines
855 B
Plaintext
# Node.js
|
|
**/node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime directories
|
|
sessions/
|
|
deliverables/
|
|
xben-benchmark-results/
|
|
.claude/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Development files
|
|
*.md
|
|
!CLAUDE.md
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# CLI package (runs on host, not in container)
|
|
# Keep apps/cli/package.json so pnpm workspaces resolve
|
|
apps/cli/src/
|
|
**/dist/
|
|
apps/cli/infra/
|
|
apps/cli/tsconfig.json
|
|
apps/cli/tsdown.config.ts
|
|
|
|
# Docker files (avoid recursive copying)
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Test files
|
|
test/
|
|
tests/
|
|
spec/
|
|
coverage/
|
|
|
|
# Documentation (except CLAUDE.md which is needed)
|
|
docs/
|
|
README.md
|
|
LICENSE
|
|
CHANGELOG.md |