Always forward --dangerously-skip-permissions to claude binary without requiring the user to pass the flag manually. Removes the option from help output and CLI signature. - Remove --dangerously-skip-permissions click option - Always append the flag to the claude command - Update tests to assert default behavior and help output - Extend .gitignore with desktop build/release directories
42 lines
590 B
Plaintext
42 lines
590 B
Plaintext
# Python
|
|
.venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
|
|
# Removed: workspace/ is now external (~/workspace by default)
|
|
# Removed: knowledge/ is no longer used
|
|
|
|
# Editor / OS
|
|
.DS_Store
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Project runtime
|
|
.claude/
|
|
.obsidian/
|
|
|
|
# MCP configs and temp artifacts
|
|
.mcp.json
|
|
.playwright-mcp/
|
|
|
|
# Playwright MCP default screenshots — always use workspace/tmp/ instead
|
|
/*.png
|
|
/*.jpg
|
|
/*.jpeg
|
|
|
|
# Desktop pet (Electron)
|
|
desktop/node_modules/
|
|
desktop/dist/
|
|
desktop/dist-electron/
|
|
desktop/build-resources/
|
|
desktop/release/
|