Files
Markus e41e8d0caf feat: add /docs custom slash command for documentation lookup
Adds .claude/commands/docs.md — a project-level Claude Code slash
command that searches official Kopia, Docker, rclone, and backend
documentation on demand.

Usage: /docs <query>
  e.g. /docs kopia retention policies
       /docs docker inspect fields
       /docs rclone s3 backend

Also updates .gitignore: .claude/ → .claude/* to allow tracking
.claude/commands/ alongside the existing .claude/agent.md exception.

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-11 13:09:01 +02:00

68 lines
1.1 KiB
Plaintext

############################
# Virtual environments
############################
.venv/
venv/
############################
# Python cache / bytecode
############################
__pycache__/
*.pyc
*.pyo
*.pyd
############################
# Build / packaging artifacts
############################
build/
dist/
*.egg-info/
.eggs/
############################
# Test / coverage artifacts
############################
.pytest_cache/
.coverage
.coverage.*
htmlcov/
MagicMock/
############################
# IDE / editor files
############################
.vscode/
.idea/
############################
# Local AI tooling (Claude / Codex)
# Session state, caches, local-only artifacts
############################
.claude/*
.codex/
# Allow committed agent rules and project commands
!.claude/agent.md
!.claude/commands/
!.codex/agent.md
############################
# Local planning / agent workbench
############################
plan/
plan_*.md
/plan/**/*.md
############################
# Local binaries / downloads
############################
*.AppImage
opencode.AppImage
############################
# OS-specific junk
############################
.DS_Store
Thumbs.db